@font-face {
	font-family: "DIN Pro";
	src:
		url("../fonts/DIN-Pro-Regular.woff2") format("woff2"),
		url("../fonts/DIN-Pro-Regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "DIN Pro";
	src:
		url("../fonts/DIN-Pro-Bold.woff2") format("woff2"),
		url("../fonts/DIN-Pro-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--color-brand-green: #c6d766;
	--color-brand-brown: #4b361b;
	--color-brand-green-soft: #eef3cf;
	--color-bg: #f8f7f1;
	--color-bg-alt: #f1efe6;
	--color-text: #4b361b;
	--color-white: #ffffff;
	--color-border: rgba(75, 54, 27, 0.10);
	--color-border-soft: rgba(75, 54, 27, 0.08);
	--shadow-soft: 0 4px 20px rgba(75, 54, 27, 0.04);
	--shadow-card: 0 16px 40px rgba(75, 54, 27, 0.08);
	--radius-large: 28px;
	--radius-medium: 22px;
	--radius-small: 16px;
	--container-width: 1200px;
	--section-space: clamp(3.5rem, 6vw, 5.5rem);
	--focus-ring: 0 0 0 3px rgba(198, 215, 102, 0.42);
}

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

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "DIN Pro", Arial, Helvetica, sans-serif;
	color: var(--color-text);
	background: var(--color-bg);
	line-height: 1.58;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

::selection {
	background: rgba(198, 215, 102, 0.42);
	color: var(--color-brand-brown);
}

a:focus-visible,
button:focus-visible {
	outline: none;
	box-shadow: var(--focus-ring);
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

.container {
	width: min(var(--container-width), calc(100% - 2rem));
	margin: 0 auto;
}

.skip-link {
	position: fixed;
	left: 50%;
	top: 0.85rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.85rem 1.15rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: var(--color-brand-brown);
	color: var(--color-brand-green);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	box-shadow: 0 16px 36px rgba(75, 54, 27, 0.18);
	transform: translate(-50%, -180%);
	z-index: 2000;
}

.skip-link:focus,
.skip-link:focus-visible {
	transform: translate(-50%, 0);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(198, 215, 102, 0.94);
	border-bottom: 1px solid rgba(75, 54, 27, 0.10);
	backdrop-filter: blur(14px);
	box-shadow: 0 12px 34px rgba(75, 54, 27, 0.08);
	transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
	background: rgba(198, 215, 102, 0.98);
	border-bottom-color: rgba(75, 54, 27, 0.14);
	box-shadow: 0 16px 40px rgba(75, 54, 27, 0.12);
}

.header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	align-items: center;
	gap: 1.4rem;
	min-height: 104px;
	padding: 0.35rem 0 0.75rem;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	padding: 0.2rem 0;
}

.site-logo-image {
	display: block;
	width: clamp(170px, 16vw, 230px);
	height: auto;
	object-fit: contain;
	flex: 0 0 auto;
	filter: drop-shadow(0 8px 18px rgba(75, 54, 27, 0.08));
}

.site-logo-label {
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--color-brand-brown);
	white-space: nowrap;
}

.main-nav {
	justify-self: end;
}

.main-nav > ul {
	display: flex;
	align-items: center;
	gap: 0.18rem;
	list-style: none;
	margin: 0;
	padding: 0.5rem 0.55rem;
	border: 1px solid rgba(75, 54, 27, 0.10);
	border-radius: 999px;
	background: rgba(255, 252, 244, 0.88);
	box-shadow:
		0 14px 32px rgba(75, 54, 27, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.main-nav li {
	position: relative;
	margin: 0;
	padding: 0;
}

.main-nav > ul > li + li::before {
	content: "";
	position: absolute;
	left: -0.05rem;
	top: 50%;
	width: 1px;
	height: 22px;
	background: rgba(75, 54, 27, 0.08);
	transform: translateY(-50%);
	pointer-events: none;
}

.main-nav li.has-children::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 16px;
}

.nav-item-head {
	display: block;
}

.main-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 46px;
	padding: 0.72rem 1.15rem;
	font-size: 0.94rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.012em;
	color: rgba(75, 54, 27, 0.86);
	border-radius: 999px;
	transition:
		background 0.22s ease,
		color 0.22s ease,
		opacity 0.22s ease,
		transform 0.22s ease,
		box-shadow 0.22s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
	opacity: 1;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: inset 0 0 0 1px rgba(75, 54, 27, 0.08);
	outline: none;
}

.main-nav > ul > li > .nav-item-head > a.is-active {
	background: var(--color-brand-green);
	color: var(--color-brand-brown);
	box-shadow: 0 8px 18px rgba(198, 215, 102, 0.32);
}

.main-nav li.has-children > .nav-item-head > a {
	padding-right: 2.35rem;
}

.main-nav li.has-children > .nav-item-head > a::before {
	content: "";
	position: absolute;
	right: 1rem;
	top: 50%;
	width: 0.48rem;
	height: 0.48rem;
	border-right: 1.6px solid rgba(75, 54, 27, 0.56);
	border-bottom: 1.6px solid rgba(75, 54, 27, 0.56);
	transform: translateY(-62%) rotate(45deg);
	transition: transform 0.22s ease, border-color 0.22s ease;
}

.main-nav li.has-children:hover > .nav-item-head > a::before,
.main-nav li.has-children:focus-within > .nav-item-head > a::before,
.main-nav li.has-children.is-subnav-open > .nav-item-head > a::before {
	border-color: rgba(75, 54, 27, 0.82);
	transform: translateY(-40%) rotate(225deg);
}

.subnav-toggle {
	display: none;
}

.sub-nav {
	position: absolute;
	top: calc(100% + 0.95rem);
	left: 0;
	min-width: 310px;
	padding: 0.8rem;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.985);
	border: 1px solid rgba(75, 54, 27, 0.08);
	box-shadow: 0 26px 58px rgba(75, 54, 27, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
	z-index: 1001;
}

.sub-nav::before {
	content: "";
	position: absolute;
	top: -7px;
	left: 30px;
	width: 14px;
	height: 14px;
	background: rgba(255, 255, 255, 0.985);
	border-top: 1px solid rgba(75, 54, 27, 0.08);
	border-left: 1px solid rgba(75, 54, 27, 0.08);
	transform: rotate(45deg);
}

.sub-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.3rem;
}

.sub-nav a {
	display: block;
	min-height: 0;
	padding: 0.9rem 1.05rem;
	border-radius: 16px;
	font-size: 0.94rem;
	font-weight: 700;
	color: rgba(75, 54, 27, 0.86);
	transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.sub-nav a:hover,
.sub-nav a:focus-visible,
.sub-nav a.is-active {
	background: var(--color-brand-green-soft);
	color: var(--color-brand-brown);
	opacity: 1;
	outline: none;
}

.main-nav li:hover > .sub-nav,
.main-nav li:focus-within > .sub-nav,
.main-nav li.is-subnav-open > .sub-nav {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.85rem 1.2rem;
	border-radius: 999px;
	background: var(--color-brand-brown);
	color: var(--color-brand-green);
	font-weight: 700;
	letter-spacing: 0.01em;
	white-space: nowrap;
	transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	box-shadow: 0 12px 30px rgba(75, 54, 27, 0.14);
}

.header-cta:hover,
.header-cta:focus-visible {
	transform: translateY(-1px);
	opacity: 0.98;
	box-shadow: 0 16px 34px rgba(75, 54, 27, 0.18);
}

.nav-toggle {
	display: none;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(75, 54, 27, 0.10);
	border-radius: 999px;
	background: rgba(255, 252, 244, 0.9);
	padding: 0;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(75, 54, 27, 0.05);
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 12px 24px rgba(75, 54, 27, 0.08);
	outline: none;
}

.nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--color-brand-brown);
	margin: 4px auto;
	border-radius: 999px;
}

#content {
	width: min(var(--container-width), calc(100% - 2rem));
	margin: 0 auto;
	padding: 3rem 0;
}

/* Startseite */
.home-content {
	width: 100% !important;
	max-width: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.home-hero {
	position: relative;
	padding: clamp(2.25rem, 4.2vw, 3.25rem) 0 clamp(2.2rem, 3.7vw, 2.9rem);
}

.home-hero::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: min(82%, 780px);
	background:
		radial-gradient(circle at 18% 18%, rgba(198, 215, 102, 0.22) 0, rgba(198, 215, 102, 0) 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(248, 247, 241, 0) 100%);
	pointer-events: none;
}

.hero-shell {
	position: relative;
	overflow: hidden;
	padding: clamp(1.2rem, 1.8vw, 1.5rem);
	border: 1px solid rgba(75, 54, 27, 0.08);
	border-radius: 34px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 247, 241, 0.98) 46%, rgba(238, 243, 207, 0.78) 100%);
	box-shadow: 0 26px 60px rgba(75, 54, 27, 0.08);
}

.hero-shell::before {
	content: "";
	position: absolute;
	right: -6%;
	top: -14%;
	width: 42%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(198, 215, 102, 0.26) 0%, rgba(198, 215, 102, 0) 72%);
	pointer-events: none;
}

.hero-shell::after {
	content: "";
	position: absolute;
	left: 60.5%;
	top: 10%;
	bottom: 10%;
	width: 1px;
	background: linear-gradient(180deg, rgba(75, 54, 27, 0) 0%, rgba(75, 54, 27, 0.10) 18%, rgba(75, 54, 27, 0.10) 82%, rgba(75, 54, 27, 0) 100%);
	pointer-events: none;
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.78fr);
	gap: clamp(1.35rem, 2.2vw, 2.25rem);
	align-items: center;
}

.hero-copy {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(0.45rem, 1vw, 0.8rem) clamp(0.15rem, 0.8vw, 0.4rem) clamp(0.45rem, 1vw, 0.8rem) 0.2rem;
	--hero-copy-width: min(100%, 46rem);
}

.hero-kicker,
.section-kicker,
.page-kicker {
	margin-bottom: 0.55rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(75, 54, 27, 0.62);
}

.hero-kicker,
.hero-title,
.hero-text,
.hero-actions,
.hero-meta {
	width: var(--hero-copy-width);
	max-width: 100%;
}

.hero-title,
.page-title {
	font-size: clamp(2.05rem, 3.2vw, 3.05rem);
	line-height: 1.04;
	letter-spacing: -0.025em;
	margin-bottom: 0.95rem;
	color: var(--color-brand-brown);
}

.hero-title {
	max-width: 100%;
}

.hero-text {
	font-size: 1.02rem;
	max-width: 100%;
	color: rgba(75, 54, 27, 0.84);
}

.hero-text p:last-child,
.page-body p:last-child {
	margin-bottom: 0;
}

.hero-actions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem;
	margin-top: 1.35rem;
}

.btn,
.footer-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0.85rem 1.25rem;
	border: 0;
	border-radius: 999px;
	font: inherit;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-actions .btn {
	width: 100%;
}

.btn:hover,
.footer-button:hover {
	transform: translateY(-1px);
	opacity: 0.97;
}

.btn-primary {
	background: var(--color-brand-brown);
	color: var(--color-brand-green);
	box-shadow: 0 16px 34px rgba(75, 54, 27, 0.14);
}

.btn-secondary {
	background: var(--color-brand-green);
	color: var(--color-brand-brown);
	box-shadow: 0 14px 30px rgba(198, 215, 102, 0.18);
}

.hero-meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem;
	margin-top: 1.15rem;
}

.hero-meta-item {
	position: relative;
	padding: 0.95rem 0.9rem 0.9rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(75, 54, 27, 0.08);
	box-shadow: 0 10px 28px rgba(75, 54, 27, 0.05);
}

.hero-meta-words .hero-meta-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 0.22rem;
	min-height: 88px;
}

.hero-meta-words .hero-meta-item::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	width: 42px;
	height: 4px;
	border-radius: 999px;
	background: var(--color-brand-green);
	transform: translateX(-50%);
}

.hero-meta-word {
	display: block;
	font-size: 0.98rem;
	font-weight: 700;
	color: var(--color-brand-brown);
}

.hero-meta-sub {
	display: block;
	font-size: 0.79rem;
	line-height: 1.3;
	color: rgba(75, 54, 27, 0.62);
}

.hero-brand-panel {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: stretch;
}

.hero-brand-card {
	position: relative;
	width: min(100%, 345px);
	margin-left: auto;
	aspect-ratio: 4 / 5;
	min-height: 294px;
	border-radius: 30px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(75, 54, 27, 0.08) 0%, rgba(255, 255, 255, 0.42) 22%, rgba(255, 255, 255, 0.68) 100%);
	border: 1px solid rgba(255, 255, 255, 0.52);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 20px 48px rgba(75, 54, 27, 0.08);
}

.hero-brand-card-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(75, 54, 27, 0.04) 0%, rgba(75, 54, 27, 0.12) 100%);
	pointer-events: none;
}

.hero-brand-image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 294px;
	object-fit: cover;
	object-position: center 24%;
	filter: saturate(0.97) contrast(1.02);
}

.home-section {
	padding: 0 0 var(--section-space);
}

.home-section-alt {
	background: var(--color-bg-alt);
	padding-top: calc(var(--section-space) - 1rem);
	padding-bottom: var(--section-space);
}

.section-head,
.page-intro {
	margin-bottom: 2rem;
}

.section-head {
	max-width: 46rem;
}

.section-head-wide {
	max-width: none;
}

.section-head-wide .section-title {
	font-size: clamp(1.45rem, 2.15vw, 2.15rem);
	line-height: 1.1;
	max-width: none;
}

.section-head-wide .section-intro {
	max-width: none;
}

.section-intro {
	max-width: 42rem;
	margin: 0.8rem 0 0;
	font-size: 1rem;
	line-height: 1.66;
	color: rgba(75, 54, 27, 0.74);
}

.section-head-with-action {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 1rem;
}

.news-section {
	padding-top: 1rem;
}

.news-section .section-head-with-action {
	margin-bottom: 2.4rem;
}

.section-title {
	font-size: clamp(1.7rem, 2.55vw, 2.45rem);
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	color: var(--color-brand-brown);
}

.section-title-medium {
	font-size: clamp(1.55rem, 2.35vw, 2.25rem);
	line-height: 1.08;
}

.teaser-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: auto;
	font-size: 0.96rem;
	font-weight: 700;
	color: var(--color-brand-brown);
}

.teaser-link::after {
	content: "→";
	font-size: 0.95em;
	transform: translateX(0);
	transition: transform 0.2s ease;
}

.teaser-card:hover .teaser-link::after,
.teaser-card:focus-visible .teaser-link::after,
.news-card:hover .teaser-link::after,
.news-card:focus-within .teaser-link::after {
	transform: translateX(3px);
}

.section-link,
.back-link {
	display: inline-block;
	font-weight: 700;
	color: var(--color-brand-brown);
	border-bottom: 2px solid var(--color-brand-green);
	padding-bottom: 0.1rem;
}

.teaser-grid,
.news-grid {
	display: grid;
	gap: 1.5rem;
}

.teaser-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-grid {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.teaser-card,
.news-card {
	display: block;
	height: 100%;
}

.teaser-card-inner,
.news-card-inner,
.empty-state,
.info-band {
	height: 100%;
	padding: 1.6rem;
	border-radius: var(--radius-medium);
	background: var(--color-white);
	border: 1px solid var(--color-border-soft);
	box-shadow: var(--shadow-soft);
}

.teaser-card-inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 1.8rem 1.65rem;
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 247, 241, 0.92) 100%);
	box-shadow: 0 14px 34px rgba(75, 54, 27, 0.07);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.teaser-card-inner::before {
	content: "";
	width: 46px;
	height: 3px;
	border-radius: 999px;
	background: rgba(198, 215, 102, 0.95);
}

.news-card-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.9rem;
	padding: 1.25rem;
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 247, 241, 0.96) 100%);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.teaser-card:hover .teaser-card-inner,
.teaser-card:focus-visible .teaser-card-inner {
	transform: translateY(-4px);
	border-color: rgba(198, 215, 102, 0.46);
	box-shadow: 0 18px 42px rgba(75, 54, 27, 0.10);
}

.news-card:hover .news-card-inner,
.news-card:focus-within .news-card-inner {
	transform: translateY(-3px);
	border-color: rgba(198, 215, 102, 0.38);
	box-shadow: 0 18px 45px rgba(75, 54, 27, 0.10);
}

.news-card:hover .news-media-frame img,
.news-card:focus-within .news-media-frame img {
	transform: scale(1.03);
	filter: saturate(1) contrast(1.03);
}

.teaser-title,
.news-title {
	font-size: 1.35rem;
	line-height: 1.05;
	margin-bottom: 0.8rem;
	color: var(--color-brand-brown);
}

.teaser-title {
	margin: 0;
	font-size: 1.45rem;
	line-height: 1.08;
}

.news-title {
	margin: 0;
	font-size: 1.28rem;
	line-height: 1.12;
}

.teaser-text,
.news-text,
.empty-state-text,
.page-body {
	color: rgba(75, 54, 27, 0.84);
}

.teaser-text,
.news-text {
	margin-bottom: 1.25rem;
}

.teaser-text {
	margin: 0;
	max-width: 30ch;
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(75, 54, 27, 0.78);
}

.news-text {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.62;
	color: rgba(75, 54, 27, 0.78);
}

.news-card-portrait .news-card-inner {
	min-height: 100%;
}

.news-media,
.news-entry-media {
	position: relative;
	width: 100%;
	margin: 0;
}

.news-media-frame {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	background: rgba(75, 54, 27, 0.08);
	border: 1px solid rgba(75, 54, 27, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.news-media .news-media-frame {
	aspect-ratio: 4 / 5;
}

.news-entry-media .news-media-frame {
	aspect-ratio: 16 / 10;
}

.news-media-frame img,
.news-media-frame iframe,
.news-media-frame video {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: cover;
}

.news-media-frame img,
.news-entry-media .news-media-frame img {
	filter: saturate(0.98) contrast(1.02);
	transition: transform 0.28s ease, filter 0.28s ease;
}

.news-entry-media .news-media-frame img,
.news-entry-media .news-media-frame iframe,
.news-entry-media .news-media-frame video {
	object-fit: cover;
}

.news-media-badge {
	position: absolute;
	left: 0.9rem;
	top: 0.9rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(75, 54, 27, 0.08);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-brand-brown);
	box-shadow: 0 8px 18px rgba(75, 54, 27, 0.08);
}

.news-grid-home .news-card {
	height: 100%;
}

.news-grid-page .news-card {
	height: 100%;
}

.news-entry-media {
	margin: 0 0 1.6rem;
}

.news-date {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(75, 54, 27, 0.60);
	margin: 0;
}

.news-date-large {
	margin-bottom: 1.5rem;
}

.empty-state-title {
	font-size: 1.25rem;
	margin-bottom: 0.6rem;
	color: var(--color-brand-brown);
}

.info-band {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.72fr);
	align-items: stretch;
	gap: 2rem;
	padding: 2.2rem;
	border-radius: var(--radius-large);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 247, 241, 0.96) 100%);
	box-shadow: 0 18px 42px rgba(75, 54, 27, 0.06);
}

.info-band-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.info-band-intro {
	margin: 1rem 0 0;
	max-width: 60ch;
	font-size: 1.04rem;
	line-height: 1.65;
	color: rgba(75, 54, 27, 0.82);
}

.info-band-points {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
	margin-top: 1.45rem;
}

.info-band-point {
	display: flex;
	flex-direction: column;
	gap: 0.28rem;
	padding: 1rem 1rem 0.95rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(75, 54, 27, 0.08);
	box-shadow: 0 10px 26px rgba(75, 54, 27, 0.04);
}

.info-band-point strong {
	font-size: 0.98rem;
	line-height: 1.2;
	color: var(--color-brand-brown);
}

.info-step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.55rem;
	height: 1.55rem;
	margin-right: 0.55rem;
	border-radius: 999px;
	background: rgba(198, 215, 102, 0.28);
	color: var(--color-brand-brown);
	font-size: 0.82rem;
	font-weight: 700;
	vertical-align: middle;
}

.info-band-point span {
	font-size: 0.9rem;
	line-height: 1.45;
	color: rgba(75, 54, 27, 0.72);
}

.info-band-actions {
	display: flex;
	align-items: stretch;
	justify-content: flex-end;
}

.info-band-action-card {
	width: min(100%, 340px);
	padding: 1.35rem;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(75, 54, 27, 0.08);
	box-shadow: 0 14px 32px rgba(75, 54, 27, 0.06);
}

.info-band-label {
	margin-bottom: 0.95rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(75, 54, 27, 0.58);
}

.info-band-card-text {
	margin: 0 0 1rem;
	font-size: 0.94rem;
	line-height: 1.55;
	color: rgba(75, 54, 27, 0.74);
}

.info-band-button-stack {
	display: grid;
	gap: 0.8rem;
}

.info-band-button-stack .btn {
	width: 100%;
}

/* Seiten / News */
.page-shell {
	padding: clamp(2.8rem, 4.4vw, 3.6rem) 0 var(--section-space);
}

.page-intro,
.news-article {
	max-width: 860px;
}

.page-body,
.news-article-body {
	font-size: 1.08rem;
}

.back-link-wrap {
	margin-top: 2rem;
	margin-bottom: 0;
}

/* Footer */
.site-footer {
	margin-top: 0;
	background: var(--color-brand-brown);
	color: rgba(255, 255, 255, 0.92);
}

.footer-main {
	padding-top: 4rem;
	padding-bottom: 1.5rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
	gap: 2rem;
	align-items: start;
}

.footer-brand {
	padding-right: 1rem;
}

.footer-brand-link {
	display: inline-block;
	margin-bottom: 1.25rem;
}

.footer-brand-logo {
	width: min(100%, 240px);
	height: auto;
	object-fit: contain;
}

.footer-brand-text,
.footer-text,
.footer-copy,
.footer-credit-label,
.footer-contact-label,
.footer-contact-note {
	color: rgba(255, 255, 255, 0.78);
}

.footer-title {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 1rem;
	color: var(--color-brand-green);
}

.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links li {
	margin-bottom: 0.6rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.92);
	transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
	opacity: 1;
	color: var(--color-brand-green);
}

.footer-contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.95rem;
}

.footer-contact-item {
	display: grid;
	gap: 0.18rem;
}

.footer-contact-label {
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.footer-contact-value,
.footer-contact-link,
.footer-contact-socials {
	color: rgba(255, 255, 255, 0.94);
}

.footer-contact-value {
	line-height: 1.55;
}

.footer-contact-link {
	transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-contact-link:hover,
.footer-contact-link:focus-visible {
	opacity: 1;
	color: var(--color-brand-green);
}

.footer-contact-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem 1rem;
}

.footer-contact-note {
	max-width: 28ch;
	margin-bottom: 0;
}

.footer-button {
	min-height: 48px;
	background: var(--color-brand-green);
	color: var(--color-brand-brown);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin-top: 2.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-copy {
	margin-bottom: 0;
	font-size: 0.95rem;
}

.footer-credit-brand {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.75rem;
	margin-bottom: 0;
	font-size: 0.95rem;
}

.footer-credit-logo {
	height: 24px;
	width: auto;
	display: block;
}

/* Responsive */
@media (max-width: 1100px) {
	.hero-shell::after {
		display: none;
	}

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

	.hero-copy {
		padding-right: 0;
	}

	.hero-brand-card {
		width: min(100%, 360px);
		min-height: 294px;
		margin-left: 0;
	}

	.hero-brand-image {
		min-height: 294px;
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.teaser-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	body.nav-open {
		overflow: hidden;
	}

	.skip-link {
		left: 1rem;
		right: 1rem;
		top: 0.75rem;
		max-width: calc(100% - 2rem);
		white-space: normal;
		text-align: center;
		transform: translateY(-180%);
	}

	.skip-link:focus,
	.skip-link:focus-visible {
		transform: translateY(0);
	}

	.site-header {
		position: relative;
	}

	.header-inner {
		grid-template-columns: auto auto;
		justify-content: space-between;
		min-height: 88px;
		padding: 0.3rem 0 0.55rem;
	}

	.site-logo-image {
		width: clamp(150px, 42vw, 210px);
		height: auto;
	}


	.nav-toggle {
		display: inline-block;
	}

	.header-cta {
		display: none;
	}

	.main-nav {
		display: none;
		grid-column: 1 / -1;
		width: 100%;
		padding-bottom: 1.1rem;
	}

	.main-nav.is-open {
		display: block;
	}

	.main-nav > ul {
		display: grid;
		gap: 0.45rem;
		margin-top: 0.85rem;
		padding: 1rem;
		max-height: calc(100vh - 8rem);
		overflow-y: auto;
		border: 1px solid rgba(75, 54, 27, 0.07);
		border-radius: 28px;
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 239, 0.98) 100%);
		box-shadow: 0 22px 48px rgba(75, 54, 27, 0.10);
	}

	.main-nav li.has-children::after,
	.main-nav li.has-children > .nav-item-head > a::before,
	.main-nav > ul > li + li::before {
		display: none;
	}

	.nav-item-head {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		gap: 0.5rem;
	}

	.main-nav a {
		display: flex;
		align-items: center;
		min-height: 54px;
		padding: 0.85rem 1rem;
		border-radius: 18px;
		background: rgba(255, 255, 255, 0.82);
		box-shadow: inset 0 0 0 1px rgba(75, 54, 27, 0.05);
	}

	.main-nav > ul > li > .nav-item-head > a.is-active {
		background: var(--color-brand-green);
	}

	.subnav-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 54px;
		height: 54px;
		padding: 0;
		border: 1px solid rgba(75, 54, 27, 0.08);
		border-radius: 18px;
		background: rgba(255, 255, 255, 0.82);
		color: var(--color-brand-brown);
		cursor: pointer;
		box-shadow: inset 0 0 0 1px rgba(75, 54, 27, 0.04);
		transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	}

	.subnav-toggle::before {
		content: "+";
		font-size: 1.3rem;
		line-height: 1;
	}

	.main-nav li.is-subnav-open > .nav-item-head .subnav-toggle {
		background: var(--color-brand-green-soft);
		box-shadow: inset 0 0 0 1px rgba(198, 215, 102, 0.28);
	}

	.main-nav li.is-subnav-open > .nav-item-head .subnav-toggle::before {
		content: "−";
	}

	.sub-nav {
		display: none;
		position: static;
		min-width: 0;
		margin-top: 0.2rem;
		padding: 0.15rem 0 0.15rem 0.65rem;
		border: 0;
		box-shadow: none;
		background: transparent;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.main-nav li.is-subnav-open > .sub-nav {
		display: block;
	}

	.sub-nav::before {
		display: none;
	}

	.sub-nav a {
		padding: 0.72rem 0.95rem;
		border-radius: 14px;
		font-size: 0.94rem;
		color: rgba(75, 54, 27, 0.82);
		background: transparent;
		box-shadow: inset 3px 0 0 transparent;
	}

	.sub-nav a:hover,
	.sub-nav a:focus-visible,
	.sub-nav a.is-active {
		background: rgba(198, 215, 102, 0.18);
		box-shadow: inset 3px 0 0 rgba(198, 215, 102, 0.92);
	}

	.home-hero {
		padding: 1.15rem 0 1.4rem;
	}

	.hero-shell {
		padding: 0.9rem;
		border-radius: 24px;
	}

	.hero-copy {
		padding: 0.2rem 0.05rem 0.1rem;
	}

	.hero-title {
		max-width: 16ch;
		font-size: clamp(1.9rem, 7.4vw, 2.55rem);
		margin-bottom: 0.8rem;
	}

	.hero-text {
		font-size: 0.98rem;
	}

	.hero-actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.7rem;
	}

	.hero-actions .btn:last-child {
		grid-column: 1 / -1;
	}

	.hero-meta {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.55rem;
		margin-top: 0.95rem;
	}

	.hero-meta-item {
		padding: 0.75rem 0.45rem 0.7rem;
		border-radius: 16px;
	}

	.hero-meta-words .hero-meta-item {
		align-items: center;
		justify-content: flex-start;
		text-align: center;
		gap: 0.16rem;
		min-height: 94px;
	}

	.hero-meta-word,
	.hero-meta-sub {
		width: 100%;
	}

	.hero-meta-word {
		font-size: 0.86rem;
	}

	.hero-meta-sub {
		font-size: 0.72rem;
	}

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

	.teaser-card-inner {
		padding: 1.35rem 1.2rem;
		gap: 0.7rem;
	}

	.teaser-title {
		font-size: 1.28rem;
	}

	.teaser-text {
		max-width: none;
		font-size: 0.96rem;
	}

	.section-intro {
		font-size: 0.98rem;
	}

	.info-band,
	.section-head-with-action,
	.footer-bottom {
		grid-template-columns: 1fr;
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-credit-brand {
		justify-content: flex-start;
		flex-wrap: wrap;
	}

	.info-band {
		align-items: start;
	}

	.info-band-points {
		grid-template-columns: 1fr;
		width: 100%;
	}

	.info-band-action-card {
		width: 100%;
	}
}

@media (max-width: 780px) {
	.news-grid {
		grid-template-columns: 1fr;
	}

	.news-card-inner {
		padding: 1.1rem;
		gap: 0.8rem;
	}

	.news-title {
		font-size: 1.16rem;
	}

	.news-media .news-media-frame {
		aspect-ratio: 5 / 6;
	}

	.news-entry-media .news-media-frame {
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 700px) {
	#content {
		padding-top: 2rem;
	}

	.hero-title {
		font-size: clamp(1.7rem, 8.6vw, 2.15rem);
		max-width: none;
	}

	.hero-actions {
		grid-template-columns: 1fr;
	}

	.hero-actions .btn:last-child {
		grid-column: auto;
	}

	.hero-brand-panel {
		justify-content: center;
	}

	.hero-brand-card {
		width: min(100%, 280px);
		min-height: 0;
		border-radius: 0;
		aspect-ratio: auto;
		background: transparent;
		border: 0;
		box-shadow: none;
		overflow: visible;
	}

	.hero-brand-card-image::after {
		display: none;
	}

	.hero-brand-image {
		height: auto;
		min-height: 0;
		object-fit: contain;
		object-position: center center;
		border-radius: 20px;
	}

	.home-section {
		padding-bottom: 3.5rem;
	}

	.home-section-alt {
		padding-top: 2.75rem;
		padding-bottom: 3.5rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-main {
		padding-top: 3.25rem;
	}
}

/* Kontakt */
.contact-inline-note {
	margin-top: 1rem;
	font-size: 0.98rem;
	line-height: 1.6;
	color: rgba(75, 54, 27, 0.72);
}

.contact-inline-note a,
.registration-help a {
	color: var(--color-brand-brown);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.16em;
}

.contact-inline-note a:hover,
.contact-inline-note a:focus-visible,
.registration-help a:hover,
.registration-help a:focus-visible {
	color: rgba(75, 54, 27, 0.86);
}

.contact-shell {
	padding-top: clamp(2.4rem, 4vw, 3.3rem);
}

.contact-grid,
.registration-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	gap: 1.75rem;
	align-items: start;
}

.contact-sidebar,
.registration-sidebar {
	display: grid;
	gap: 1.25rem;
}

.contact-intro {
	margin-bottom: 0;
}

.contact-sidebar-stack,
.registration-sidebar {
	display: grid;
	gap: 1rem;
}

.contact-panel {
	padding: 1.65rem;
	border-radius: 26px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 247, 241, 0.95) 100%);
	border: 1px solid rgba(75, 54, 27, 0.08);
	box-shadow: 0 16px 40px rgba(75, 54, 27, 0.07);
}

.contact-panel-soft {
	background: linear-gradient(180deg, rgba(238, 243, 207, 0.62) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.contact-panel-kicker {
	margin: 0 0 0.55rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(75, 54, 27, 0.58);
}

.contact-panel-title {
	margin: 0;
	font-size: clamp(1.3rem, 2vw, 1.75rem);
	line-height: 1.12;
	color: var(--color-brand-brown);
}

.contact-panel-text,
.contact-form-intro {
	margin: 0.85rem 0 0;
	font-size: 0.99rem;
	line-height: 1.62;
	color: rgba(75, 54, 27, 0.76);
}

.contact-checklist {
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.7rem;
}

.contact-checklist li {
	position: relative;
	padding-left: 1.35rem;
	font-size: 0.96rem;
	line-height: 1.55;
	color: rgba(75, 54, 27, 0.78);
}

.contact-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62rem;
	width: 0.52rem;
	height: 0.52rem;
	border-radius: 999px;
	background: var(--color-brand-green);
}

.contact-side-button {
	width: 100%;
	margin-top: 1.2rem;
}

.contact-form-card {
	padding: 1.85rem;
}

.contact-form {
	margin-top: 1.4rem;
}

.contact-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.contact-field {
	display: grid;
	gap: 0.45rem;
}

.contact-field-full {
	grid-column: 1 / -1;
}

.contact-field label {
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--color-brand-brown);
}

.contact-field label span {
	font-weight: 400;
	color: rgba(75, 54, 27, 0.62);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
	width: 100%;
	border: 1px solid rgba(75, 54, 27, 0.12);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.96);
	padding: 0.92rem 1rem;
	font: inherit;
	line-height: 1.4;
	color: var(--color-brand-brown);
	appearance: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-field textarea {
	resize: vertical;
	min-height: 180px;
}

.contact-field select {
	background-image: linear-gradient(45deg, transparent 50%, rgba(75, 54, 27, 0.58) 50%), linear-gradient(135deg, rgba(75, 54, 27, 0.58) 50%, transparent 50%);
	background-position: calc(100% - 22px) calc(50% - 2px), calc(100% - 16px) calc(50% - 2px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 2.6rem;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
	color: rgba(75, 54, 27, 0.42);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
	outline: none;
	border-color: rgba(198, 215, 102, 0.92);
	box-shadow: var(--focus-ring);
	background: var(--color-white);
}

.contact-consent {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 0.75rem;
	margin-top: 1.15rem;
	font-size: 0.92rem;
	line-height: 1.5;
	color: rgba(75, 54, 27, 0.74);
}

.contact-consent input {
	width: 1.05rem;
	height: 1.05rem;
	margin-top: 0.15rem;
	accent-color: var(--color-brand-green);
}

.contact-form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.35rem;
}

.contact-form-actions .btn {
	min-width: 220px;
}


.registration-shell {
	padding-top: clamp(2.4rem, 4vw, 3.3rem);
}

.registration-form-card {
	padding-top: 1.5rem;
}

.form-mode-switch {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
	margin-bottom: 1.35rem;
}

.form-mode-button {
	min-height: 54px;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(75, 54, 27, 0.10);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.94);
	font: inherit;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
	color: rgba(75, 54, 27, 0.72);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-mode-button:hover,
.form-mode-button:focus-visible {
	border-color: rgba(198, 215, 102, 0.85);
	box-shadow: var(--focus-ring);
	outline: none;
}

.form-mode-button.is-active {
	background: var(--color-brand-green-soft);
	border-color: rgba(198, 215, 102, 0.9);
	color: var(--color-brand-brown);
	box-shadow: 0 14px 28px rgba(198, 215, 102, 0.18);
}

.registration-panel[hidden] {
	display: none;
}

.registration-panel + .registration-panel {
	margin-top: 0;
}

.registration-note .contact-panel-text {
	max-width: 34rem;
}

.registration-help .contact-checklist li strong {
	color: var(--color-brand-brown);
}

.registration-form .contact-form-actions {
	margin-top: 1.25rem;
}

@media (max-width: 1050px) {
	.contact-grid,
	.registration-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.contact-panel,
	.contact-form-card {
		padding: 1.2rem;
		border-radius: 22px;
	}

	.contact-form-grid {
		grid-template-columns: 1fr;
		gap: 0.85rem;
	}

	.form-mode-switch {
		grid-template-columns: 1fr;
	}

	.contact-form-actions {
		flex-direction: column;
	}

	.contact-form-actions .btn,
	.contact-side-button {
		width: 100%;
		min-width: 0;
	}
}


.form-toast {
	position: fixed;
	left: 50%;
	bottom: 1.4rem;
	z-index: 2500;
	max-width: min(92vw, 34rem);
	padding: 1rem 1.2rem;
	border: 1px solid rgba(198, 215, 102, 0.82);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 18px 42px rgba(40, 28, 12, 0.16);
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.4;
	color: var(--color-brand-brown);
	transform: translate(-50%, 1rem);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
	text-align: center;
}

.form-toast.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

@media (max-width: 700px) {
	.form-toast {
		left: 1rem;
		right: 1rem;
		bottom: 1rem;
		max-width: none;
		transform: translateY(1rem);
	}

	.form-toast.is-visible {
		transform: translateY(0);
	}
}

/* Events */
.events-shell {
	padding-top: clamp(2.3rem, 4vw, 3.2rem);
}

.events-intro,
.event-detail-shell {
	max-width: 1200px;
}

.events-title {
	font-size: clamp(1.9rem, 2.85vw, 2.65rem);
}

.events-intro-text {
	max-width: 52rem;
}

.event-overview-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.4rem;
}

.event-overview-card,
.event-panel,
.events-note-band {
	border-radius: 28px;
	border: 1px solid rgba(75, 54, 27, 0.08);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 38px rgba(75, 54, 27, 0.06);
}

.event-overview-card {
	overflow: hidden;
	display: grid;
	grid-template-rows: 220px 1fr;
}

.event-overview-media {
	position: relative;
	display: flex;
	align-items: flex-end;
	padding: 1.25rem;
	background:
		linear-gradient(180deg, rgba(75, 54, 27, 0.06) 0%, rgba(75, 54, 27, 0.28) 100%),
		url('../images/neue-generation.jpg') center/cover no-repeat;
}

.event-overview-card-alpaka .event-overview-media {
	background:
		linear-gradient(180deg, rgba(75, 54, 27, 0.06) 0%, rgba(75, 54, 27, 0.22) 100%),
		url('../images/hero-rotache-placeholder.jpg') center/cover no-repeat;
}

.event-overview-badge,
.event-detail-visual-label {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-brand-brown);
}

.event-overview-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.45rem;
}

.event-overview-content h2 {
	margin: 0;
	font-size: clamp(1.3rem, 2vw, 1.6rem);
	line-height: 1.1;
	color: var(--color-brand-brown);
}

.event-overview-content p,
.event-panel-text {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.62;
	color: rgba(75, 54, 27, 0.75);
}

.event-overview-points,
.event-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.event-overview-points li,
.event-checklist li {
	position: relative;
	padding-left: 1rem;
	font-size: 0.95rem;
	line-height: 1.55;
	color: rgba(75, 54, 27, 0.76);
}

.event-overview-points li::before,
.event-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.68rem;
	width: 0.38rem;
	height: 0.38rem;
	border-radius: 999px;
	background: var(--color-brand-green);
}

.event-overview-actions {
	margin-top: auto;
}

.event-overview-actions .btn {
	width: 100%;
}

.events-note-band {
	margin-top: 1.5rem;
	padding: 1.45rem;
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) auto;
	gap: 1rem 1.4rem;
	align-items: center;
}

.events-note-band-copy .section-title {
	margin-bottom: 0.3rem;
}

.events-note-band-copy .section-intro {
	margin-top: 0.45rem;
	max-width: none;
}

.event-detail-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.75fr);
	gap: clamp(1.35rem, 2.4vw, 2.3rem);
	align-items: center;
	margin-bottom: 1.55rem;
}

.event-detail-copy {
	max-width: 48rem;
}

.event-detail-title {
	font-size: clamp(1.95rem, 2.95vw, 2.75rem);
}

.event-detail-intro {
	max-width: 44rem;
}

.event-detail-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.35rem;
}

.event-detail-visual {
	display: flex;
	justify-content: flex-end;
}

.event-detail-visual-card {
	position: relative;
	width: min(100%, 370px);
	aspect-ratio: 4 / 5;
	border-radius: 30px;
	overflow: hidden;
	border: 1px solid rgba(75, 54, 27, 0.10);
	box-shadow: 0 20px 46px rgba(75, 54, 27, 0.08);
	background-size: cover;
	background-position: center;
}

.event-detail-visual-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(75, 54, 27, 0.04) 0%, rgba(75, 54, 27, 0.22) 100%);
}

.event-detail-visual-label {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	z-index: 1;
}

.event-detail-visual-pony .event-detail-visual-card {
	background:
		linear-gradient(180deg, rgba(75, 54, 27, 0.03) 0%, rgba(75, 54, 27, 0.12) 100%),
		url('../images/neue-generation.jpg') center 38%/cover no-repeat;
}

.event-detail-visual-alpaka .event-detail-visual-card {
	background:
		linear-gradient(180deg, rgba(75, 54, 27, 0.03) 0%, rgba(75, 54, 27, 0.12) 100%),
		url('../images/hero-rotache-placeholder.jpg') center/cover no-repeat;
}

.event-info-grid,
.event-guidance-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.event-guidance-grid {
	margin-top: 1.25rem;
}

.event-panel {
	padding: 1.45rem;
}

.event-panel-soft {
	background: rgba(248, 246, 238, 0.82);
}

.event-inline-actions {
	margin-top: 1rem;
}

@media (max-width: 980px) {
	.event-overview-grid,
	.event-info-grid,
	.event-guidance-grid,
	.events-note-band,
	.event-detail-hero {
		grid-template-columns: 1fr;
	}

	.event-detail-visual {
		justify-content: flex-start;
	}

	.events-note-band-actions .btn {
		width: 100%;
	}
}

@media (max-width: 700px) {
	.event-overview-card {
		grid-template-rows: 190px 1fr;
	}

	.event-overview-content,
	.event-panel,
	.events-note-band {
		padding: 1.2rem;
	}

	.event-detail-actions {
		flex-direction: column;
	}

	.event-detail-actions .btn {
		width: 100%;
	}
}

/* Heart Project */
.heart-project-shell {
	padding-top: clamp(2.3rem, 4vw, 3.2rem);
	max-width: 1200px;
}

.heart-project-hero,
.heart-project-content-grid,
.heart-project-closing {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.82fr);
	gap: clamp(1.3rem, 2.5vw, 2.4rem);
	align-items: center;
}

.heart-project-title {
	font-size: clamp(1.95rem, 2.95vw, 2.75rem);
}

.heart-project-intro {
	max-width: 44rem;
}

.heart-project-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.35rem;
}

.heart-project-actions .btn {
	min-width: 210px;
}

.heart-project-visual {
	display: flex;
	justify-content: flex-end;
}

.heart-project-visual-card,
.heart-project-inline-image,
.heart-project-closing-image {
	border-radius: 30px;
	overflow: hidden;
	border: 1px solid rgba(75, 54, 27, 0.10);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 20px 46px rgba(75, 54, 27, 0.08);
}

.heart-project-visual-card {
	width: min(100%, 440px);
}

.heart-project-visual-card img,
.heart-project-inline-image img,
.heart-project-closing-image img {
	width: 100%;
	height: auto;
	display: block;
}

.heart-project-visual-card figcaption {
	padding: 0.9rem 1.1rem 1rem;
	font-size: 0.9rem;
	line-height: 1.45;
	color: rgba(75, 54, 27, 0.7);
	background: rgba(255, 255, 255, 0.96);
}

.heart-project-stat-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.45rem;
}

.heart-project-stat-card,
.heart-project-panel {
	border-radius: 28px;
	border: 1px solid rgba(75, 54, 27, 0.08);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 38px rgba(75, 54, 27, 0.06);
}

.heart-project-stat-card {
	padding: 1.3rem 1.2rem;
}

.heart-project-stat-value {
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	font-weight: 700;
	line-height: 1.05;
	color: var(--color-brand-brown);
	margin-bottom: 0.35rem;
}

.heart-project-stat-label {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
	color: rgba(75, 54, 27, 0.72);
}

.heart-project-content-grid {
	margin-top: 1.25rem;
}

.heart-project-content-grid-bottom {
	align-items: stretch;
}

.heart-project-panel {
	padding: 1.45rem;
	height: 100%;
}

.heart-project-panel p + p {
	margin-top: 0.9rem;
}

.heart-project-panel-soft {
	background: rgba(248, 246, 238, 0.82);
}

.heart-project-panel-image {
	padding: 1rem;
	background: transparent;
	box-shadow: none;
	border: none;
}

.heart-project-inline-image {
	height: 100%;
}

.heart-project-small-note {
	margin-top: 1rem;
	margin-bottom: 0;
	font-size: 0.94rem;
	line-height: 1.5;
	color: rgba(75, 54, 27, 0.66);
}

.heart-project-tier-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
	margin-top: 1.1rem;
}

.heart-project-tier-card {
	padding: 1rem;
	border-radius: 20px;
	background: rgba(248, 246, 238, 0.86);
	border: 1px solid rgba(75, 54, 27, 0.08);
}

.heart-project-tier-title,
.heart-project-tier-amount,
.heart-project-tier-benefit {
	margin: 0;
}

.heart-project-tier-title {
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-brand-brown);
}

.heart-project-tier-amount {
	margin-top: 0.3rem;
	font-size: 1.12rem;
	font-weight: 700;
	line-height: 1.15;
	color: var(--color-brand-brown);
}

.heart-project-tier-benefit {
	margin-top: 0.45rem;
	font-size: 0.9rem;
	line-height: 1.45;
	color: rgba(75, 54, 27, 0.68);
}

.heart-project-support-note {
	margin-top: 1.15rem;
	display: grid;
	gap: 0.8rem;
}

.heart-project-support-note p {
	margin-bottom: 0;
}

.heart-project-closing {
	margin-top: 1.35rem;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
}

.heart-project-closing-copy {
	max-width: 42rem;
}

@media (max-width: 980px) {
	.heart-project-hero,
	.heart-project-content-grid,
	.heart-project-closing,
	.heart-project-stat-grid {
		grid-template-columns: 1fr;
	}

	.heart-project-visual {
		justify-content: flex-start;
	}

	.heart-project-tier-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 700px) {
	.heart-project-panel,
	.heart-project-stat-card {
		padding: 1.2rem;
	}

	.heart-project-tier-grid {
		grid-template-columns: 1fr;
	}

	.heart-project-actions {
		flex-direction: column;
	}

	.heart-project-actions .btn {
		width: 100%;
		min-width: 0;
	}
}


/* Prices */
.prices-shell {
	max-width: 1200px;
}

.prices-title {
	font-size: clamp(1.95rem, 2.95vw, 2.7rem);
}

.prices-intro-text {
	max-width: 56rem;
}

.prices-meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.4rem;
}

.prices-meta-chip {
	display: inline-grid;
	gap: 0.2rem;
	padding: 0.9rem 1.1rem;
	border-radius: 20px;
	border: 1px solid rgba(75, 54, 27, 0.08);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 14px 30px rgba(75, 54, 27, 0.05);
}

.prices-meta-label {
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(75, 54, 27, 0.6);
}

.prices-section {
	margin-top: 1.55rem;
}

.prices-section-head {
	margin-bottom: 1rem;
}

.prices-card-grid {
	display: grid;
	gap: 1rem;
}

.prices-card-grid-dogs {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.prices-card,
.prices-panel {
	border-radius: 28px;
	border: 1px solid rgba(75, 54, 27, 0.08);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 38px rgba(75, 54, 27, 0.06);
}

.prices-card {
	padding: 1.3rem 1.2rem;
	min-height: 100%;
}

.prices-card-title,
.prices-line-title {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.24;
	color: var(--color-brand-brown);
}

.prices-card-detail,
.prices-line-note {
	margin: 0.42rem 0 0;
	font-size: 0.93rem;
	line-height: 1.5;
	color: rgba(75, 54, 27, 0.7);
}

.prices-card-price,
.prices-line-price {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.1;
	color: var(--color-brand-brown);
	white-space: nowrap;
}

.prices-card-price {
	margin-top: 1rem;
}

.prices-two-col,
.prices-cta-band {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.prices-panel {
	padding: 1.45rem;
	height: 100%;
}

.prices-panel-soft {
	background: rgba(248, 246, 238, 0.82);
}

.prices-stack {
	display: grid;
	gap: 0.9rem;
	margin-top: 1.05rem;
}

.prices-stack-compact {
	gap: 0.8rem;
}

.prices-line-item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 1rem;
	align-items: start;
	padding: 0.95rem 0;
	border-top: 1px solid rgba(75, 54, 27, 0.08);
}

.prices-stack > .prices-line-item:first-child {
	padding-top: 0;
	border-top: none;
}

.prices-note-list {
	margin: 1.05rem 0 0;
	padding-left: 1.15rem;
	display: grid;
	gap: 0.7rem;
}

.prices-note-list li {
	padding-left: 0.15rem;
	color: rgba(75, 54, 27, 0.78);
}

.prices-cta-band {
	margin-top: 1.55rem;
	padding: 1.55rem;
	border-radius: 30px;
	border: 1px solid rgba(75, 54, 27, 0.08);
	background: linear-gradient(180deg, rgba(248, 246, 238, 0.86) 0%, rgba(255, 255, 255, 0.92) 100%);
	box-shadow: 0 18px 38px rgba(75, 54, 27, 0.06);
	align-items: center;
}

.prices-cta-copy .section-title,
.prices-cta-copy .section-intro {
	max-width: 42rem;
}

.prices-cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.85rem;
}

.prices-cta-actions .btn {
	min-width: 210px;
}

@media (max-width: 1120px) {
	.prices-card-grid-dogs {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.prices-two-col,
	.prices-cta-band,
	.prices-card-grid-dogs {
		grid-template-columns: 1fr;
	}

	.prices-cta-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 700px) {
	.prices-panel,
	.prices-card,
	.prices-cta-band {
		padding: 1.2rem;
	}

	.prices-meta-row {
		gap: 0.7rem;
	}

	.prices-meta-chip {
		width: 100%;
	}

	.prices-line-item {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}

	.prices-cta-actions {
		flex-direction: column;
	}

	.prices-cta-actions .btn {
		width: 100%;
		min-width: 0;
	}
}


/* Offers */
.offers-shell {
	max-width: 1200px;
}

.offers-title {
	font-size: clamp(1.95rem, 2.95vw, 2.7rem);
}

.offers-intro-text {
	max-width: 56rem;
}

.offers-service-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.offers-service-card,
.offers-guidance-card,
.offers-fit-card,
.offers-fit-band,
.offers-cta-band {
	border-radius: 28px;
	border: 1px solid rgba(75, 54, 27, 0.08);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 38px rgba(75, 54, 27, 0.06);
}

.offers-service-card {
	overflow: hidden;
	display: grid;
	grid-template-rows: 210px 1fr;
}

.offers-service-media {
	position: relative;
	display: flex;
	align-items: flex-end;
	padding: 1.2rem;
}

.offers-service-media-pension {
	background:
		linear-gradient(180deg, rgba(75, 54, 27, 0.05) 0%, rgba(75, 54, 27, 0.26) 100%),
		url('../images/neue-generation.jpg') center 30%/cover no-repeat;
}

.offers-service-media-daycare {
	background:
		linear-gradient(180deg, rgba(75, 54, 27, 0.05) 0%, rgba(75, 54, 27, 0.24) 100%),
		url('../images/hero-rotache-placeholder.jpg') center/cover no-repeat;
}

.offers-service-media-transport {
	background:
		linear-gradient(180deg, rgba(198, 215, 102, 0.18) 0%, rgba(75, 54, 27, 0.26) 100%),
		url('../images/neue-generation.jpg') center 12%/cover no-repeat;
}

.offers-service-media-addons {
	background:
		linear-gradient(180deg, rgba(75, 54, 27, 0.06) 0%, rgba(75, 54, 27, 0.24) 100%),
		linear-gradient(135deg, rgba(248, 246, 238, 1) 0%, rgba(198, 215, 102, 0.62) 100%);
}

.offers-service-badge {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-brand-brown);
}

.offers-service-content {
	display: flex;
	flex-direction: column;
	gap: 0.95rem;
	padding: 1.45rem;
}

.offers-service-content h2,
.offers-guidance-card h3,
.offers-fit-card h3 {
	margin: 0;
	font-size: clamp(1.25rem, 2vw, 1.58rem);
	line-height: 1.1;
	color: var(--color-brand-brown);
}

.offers-service-content p,
.offers-guidance-card p,
.offers-fit-card p {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.62;
	color: rgba(75, 54, 27, 0.75);
}

.offers-service-points,
.offers-guidance-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.offers-service-points li,
.offers-guidance-list li {
	position: relative;
	padding-left: 1rem;
	font-size: 0.95rem;
	line-height: 1.55;
	color: rgba(75, 54, 27, 0.76);
}

.offers-service-points li::before,
.offers-guidance-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.68rem;
	width: 0.38rem;
	height: 0.38rem;
	border-radius: 999px;
	background: var(--color-brand-green);
}

.offers-service-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: auto;
}

.offers-service-actions .btn {
	flex: 1 1 210px;
}

.offers-fit-band,
.offers-cta-band {
	margin-top: 1.5rem;
	padding: 1.55rem;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 1.25rem;
	align-items: center;
	background: linear-gradient(180deg, rgba(248, 246, 238, 0.86) 0%, rgba(255, 255, 255, 0.94) 100%);
}

.offers-fit-copy .section-title,
.offers-fit-copy .section-intro,
.offers-cta-copy .section-title,
.offers-cta-copy .section-intro {
	max-width: none;
}

.offers-fit-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
}

.offers-fit-card {
	padding: 1.1rem 1rem;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 12px 28px rgba(75, 54, 27, 0.04);
}

.offers-fit-card h3 {
	font-size: 1rem;
}

.offers-fit-card p {
	margin-top: 0.45rem;
	font-size: 0.92rem;
	line-height: 1.52;
}

.offers-guidance-section {
	margin-top: 1.55rem;
}

.offers-guidance-head {
	max-width: 48rem;
}

.offers-guidance-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.offers-guidance-card {
	padding: 1.35rem;
	height: 100%;
}

.offers-guidance-card p {
	margin-top: 0.65rem;
	margin-bottom: 0.9rem;
}

.offers-cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.85rem;
}

.offers-cta-actions .btn {
	min-width: 210px;
}

@media (max-width: 1080px) {
	.offers-fit-grid,
	.offers-guidance-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 980px) {
	.offers-service-grid,
	.offers-fit-band,
	.offers-cta-band {
		grid-template-columns: 1fr;
	}

	.offers-cta-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 700px) {
	.offers-service-card {
		grid-template-rows: 185px 1fr;
	}

	.offers-service-content,
	.offers-guidance-card,
	.offers-fit-card,
	.offers-fit-band,
	.offers-cta-band {
		padding: 1.2rem;
	}

	.offers-service-actions,
	.offers-cta-actions {
		flex-direction: column;
	}

	.offers-service-actions .btn,
	.offers-cta-actions .btn {
		width: 100%;
		min-width: 0;
	}
}


/* Recommendations */
.recommendations-shell {
	max-width: 1200px;
}

.recommendations-title {
	font-size: clamp(1.95rem, 2.95vw, 2.7rem);
}

.recommendations-intro-text {
	max-width: 56rem;
}

.recommendations-band,
.recommendations-closing-band,
.recommendations-category-card,
.recommendations-entry-card {
	border-radius: 28px;
	border: 1px solid rgba(75, 54, 27, 0.08);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 38px rgba(75, 54, 27, 0.06);
}

.recommendations-band,
.recommendations-closing-band {
	padding: 1.55rem;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
	gap: 1.25rem;
	align-items: center;
	background: linear-gradient(180deg, rgba(248, 246, 238, 0.86) 0%, rgba(255, 255, 255, 0.94) 100%);
}

.recommendations-band-note {
	padding: 1.05rem 1.1rem;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 12px 28px rgba(75, 54, 27, 0.04);
}

.recommendations-note-label,
.recommendations-entry-label,
.recommendations-card-kicker {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(75, 54, 27, 0.6);
}

.recommendations-note-text {
	margin: 0.45rem 0 0;
	font-size: 0.96rem;
	line-height: 1.55;
	color: rgba(75, 54, 27, 0.74);
}

.recommendations-category-grid,
.recommendations-entry-grid {
	display: grid;
	gap: 1rem;
}

.recommendations-category-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 1.55rem;
}

.recommendations-category-card,
.recommendations-entry-card {
	padding: 1.35rem;
	height: 100%;
}

.recommendations-category-card h2 {
	margin: 0.4rem 0 0;
	font-size: clamp(1.25rem, 2vw, 1.55rem);
	line-height: 1.1;
	color: var(--color-brand-brown);
}

.recommendations-category-card > p:not(.recommendations-card-kicker),
.recommendations-entry-text {
	margin: 0.7rem 0 0;
	font-size: 0.97rem;
	line-height: 1.62;
	color: rgba(75, 54, 27, 0.75);
}

.recommendations-points {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.68rem;
}

.recommendations-points li {
	position: relative;
	padding-left: 1rem;
	font-size: 0.95rem;
	line-height: 1.55;
	color: rgba(75, 54, 27, 0.76);
}

.recommendations-points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.68rem;
	width: 0.38rem;
	height: 0.38rem;
	border-radius: 999px;
	background: var(--color-brand-green);
}

.recommendations-entry-section {
	margin-top: 1.55rem;
}

.recommendations-entry-head {
	max-width: 48rem;
}

.recommendations-entry-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 1rem;
}

.recommendations-entry-card {
	background: rgba(248, 246, 238, 0.82);
}

.recommendations-closing-band {
	margin-top: 1.55rem;
}

.recommendations-closing-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.85rem;
}

.recommendations-closing-actions .btn {
	min-width: 210px;
}

@media (max-width: 1080px) {
	.recommendations-category-grid {
		grid-template-columns: 1fr;
	}

	.recommendations-entry-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.recommendations-band,
	.recommendations-closing-band {
		grid-template-columns: 1fr;
	}

	.recommendations-closing-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 700px) {
	.recommendations-band,
	.recommendations-closing-band,
	.recommendations-category-card,
	.recommendations-entry-card {
		padding: 1.2rem;
	}

	.recommendations-entry-grid {
		grid-template-columns: 1fr;
	}

	.recommendations-closing-actions {
		flex-direction: column;
	}

	.recommendations-closing-actions .btn {
		width: 100%;
		min-width: 0;
	}
}


.has-draft-overlay {
	position: relative;
}

.draft-watermark-layer {
	position: fixed;
	inset: 0;
	z-index: 1400;
	pointer-events: none;
	overflow: hidden;
}

.draft-watermark {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 1.25rem;
	border: 2px solid rgba(75, 54, 27, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.38);
	color: rgba(75, 54, 27, 0.20);
	font-size: clamp(1rem, 1.15vw, 1.35rem);
	font-weight: 700;
	letter-spacing: 0.22em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	transform: rotate(-24deg);
	backdrop-filter: blur(2px);
	box-shadow: 0 8px 24px rgba(75, 54, 27, 0.04);
	user-select: none;
}

.draft-watermark-2,
.draft-watermark-5 {
	transform: rotate(-18deg);
}

.draft-watermark-3,
.draft-watermark-6 {
	transform: rotate(-28deg);
}

.draft-status-badge {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 1450;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0.7rem 1rem;
	border: 1px solid rgba(75, 54, 27, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: rgba(75, 54, 27, 0.82);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 14px 32px rgba(75, 54, 27, 0.10);
	pointer-events: none;
}

@media (max-width: 900px) {
	.draft-watermark {
		font-size: 0.9rem;
		letter-spacing: 0.16em;
		padding: 0.5rem 0.95rem;
	}

	.draft-watermark-2,
	.draft-watermark-4,
	.draft-watermark-6 {
		display: none;
	}

	.draft-status-badge {
		right: 0.75rem;
		bottom: 0.75rem;
		padding: 0.62rem 0.9rem;
		font-size: 0.76rem;
	}
}

/* ========================================================================== 
   Datenschutz / Privacy page
   ========================================================================== */

.policy-shell {
	padding-bottom: clamp(4rem, 8vw, 6rem);
}

.policy-intro {
	margin-bottom: 2.4rem;
}

.policy-title {
	max-width: 42rem;
}

.policy-intro-text {
	max-width: 48rem;
}

.policy-overview-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-bottom: 1.8rem;
}

.policy-overview-card,
.policy-note-card,
.policy-contact-card,
.policy-section {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(75, 54, 27, 0.1);
	border-radius: 24px;
	box-shadow: 0 16px 36px rgba(75, 54, 27, 0.06);
}

.policy-overview-card,
.policy-note-card {
	padding: 1.35rem 1.35rem 1.25rem;
}

.policy-card-kicker {
	margin: 0 0 0.4rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(75, 54, 27, 0.56);
}

.policy-overview-card h2,
.policy-note-card h2,
.policy-section h2 {
	margin: 0;
	font-size: clamp(1.18rem, 1.8vw, 1.5rem);
	line-height: 1.12;
	color: var(--color-brand-brown);
}

.policy-overview-card p,
.policy-note-card p,
.policy-section p,
.policy-list li {
	font-size: 0.98rem;
	line-height: 1.68;
	color: rgba(75, 54, 27, 0.78);
}

.policy-overview-card p:last-child,
.policy-note-card p:last-child,
.policy-section p:last-child {
	margin-bottom: 0;
}

.policy-content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.72fr);
	gap: clamp(1.2rem, 2vw, 2rem);
	align-items: start;
}

.policy-main {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.policy-section {
	padding: 1.55rem 1.45rem;
}

.policy-section h2 {
	margin-bottom: 0.8rem;
}

.policy-list {
	margin: 0.8rem 0 0;
	padding-left: 1.1rem;
}

.policy-list li + li {
	margin-top: 0.4rem;
}

.policy-contact-card {
	margin-top: 0.95rem;
	padding: 1rem 1.1rem;
	background: rgba(198, 215, 102, 0.12);
}

.policy-contact-card a,
.policy-section a {
	color: var(--color-brand-brown);
	font-weight: 700;
}

.policy-aside {
	position: sticky;
	top: 7.8rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.policy-aside-button {
	width: 100%;
	margin-top: 0.9rem;
}

@media (max-width: 1024px) {
	.policy-overview-grid {
		grid-template-columns: 1fr;
	}

	.policy-content-grid {
		grid-template-columns: 1fr;
	}

	.policy-aside {
		position: static;
	}
}

@media (max-width: 640px) {
	.policy-overview-card,
	.policy-note-card,
	.policy-section {
		padding: 1.2rem 1rem;
		border-radius: 20px;
	}

	.policy-contact-card {
		padding: 0.95rem 0.95rem;
		border-radius: 18px;
	}
}

/* =========================================================
   Zu Hause gesucht / Vermittlungstiere
   ========================================================= */

.adoption-page {
	padding: 0 0 var(--section-space);
}

.adoption-shell {
	display: grid;
	gap: clamp(2.25rem, 3.8vw, 3.4rem);
}

.adoption-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.85fr);
	gap: clamp(1.5rem, 3vw, 2.4rem);
	align-items: start;
}

.adoption-copy,
.adoption-contact-card,
.adoption-note-band,
.adoption-animal-card,
.adoption-closing-band {
	border: 1px solid var(--color-border);
	border-radius: calc(var(--radius-large) + 2px);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--shadow-soft);
}

.adoption-copy {
	padding: clamp(2rem, 4vw, 3rem);
}

.adoption-title {
	max-width: 12ch;
}

.adoption-intro {
	max-width: 62ch;
}

.adoption-contact-card {
	position: sticky;
	top: 7.4rem;
	padding: 1.7rem 1.55rem;
	background: linear-gradient(180deg, rgba(198, 215, 102, 0.15), rgba(255, 255, 255, 0.96));
}

.adoption-contact-kicker,
.adoption-animal-kicker,
.adoption-note-label {
	margin: 0 0 0.55rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(75, 54, 27, 0.58);
}

.adoption-contact-card h2 {
	margin-bottom: 0.7rem;
	font-size: clamp(1.4rem, 2vw, 1.8rem);
	line-height: 1.15;
}

.adoption-contact-list {
	list-style: none;
	padding: 0;
	margin: 1.2rem 0 0;
	display: grid;
	gap: 0.85rem;
}

.adoption-contact-list li {
	display: grid;
	gap: 0.2rem;
	padding: 0.8rem 0.95rem;
	border-radius: var(--radius-small);
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(75, 54, 27, 0.08);
}

.adoption-contact-list strong {
	font-size: 0.88rem;
	color: rgba(75, 54, 27, 0.66);
}

.adoption-contact-list span {
	font-size: 1rem;
	font-weight: 700;
}

.adoption-contact-actions {
	display: grid;
	gap: 0.75rem;
	margin-top: 1.15rem;
}

.adoption-photo-credit {
	margin: 1rem 0 0;
	font-size: 0.9rem;
	color: rgba(75, 54, 27, 0.7);
}

.adoption-note-band,
.adoption-closing-band {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.72fr);
	gap: clamp(1.25rem, 3vw, 2rem);
	padding: clamp(1.4rem, 2.8vw, 2rem);
	align-items: center;
	background: linear-gradient(180deg, rgba(239, 243, 207, 0.7), rgba(255, 255, 255, 0.94));
}

.adoption-note-card {
	padding: 1.2rem 1.15rem;
	border-radius: var(--radius-medium);
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(75, 54, 27, 0.08);
}

.adoption-note-text {
	margin: 0;
	font-size: 1rem;
}

.adoption-animal-list {
	display: grid;
	gap: clamp(1.6rem, 3vw, 2.4rem);
}

.adoption-animal-card {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	gap: clamp(1.4rem, 3vw, 2rem);
	padding: clamp(1.4rem, 3vw, 2rem);
	align-items: start;
}

.adoption-animal-title {
	margin-bottom: 1rem;
	font-size: clamp(1.8rem, 2.6vw, 2.4rem);
	line-height: 1.08;
}

.adoption-fact-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem;
	margin-bottom: 1.15rem;
}

.adoption-fact-card {
	padding: 0.95rem 1rem;
	border-radius: var(--radius-small);
	background: var(--color-bg-alt);
	border: 1px solid rgba(75, 54, 27, 0.08);
}

.adoption-fact-label {
	margin: 0 0 0.35rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(75, 54, 27, 0.58);
}

.adoption-fact-value {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
}

.adoption-animal-body p:last-child {
	margin-bottom: 0;
}

.adoption-animal-media {
	display: grid;
	gap: 0.9rem;
}

.adoption-gallery {
	overflow: hidden;
	border-radius: calc(var(--radius-medium) + 2px);
	background: var(--color-bg-alt);
	border: 1px solid rgba(75, 54, 27, 0.08);
}

.adoption-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.adoption-gallery-main {
	min-height: 420px;
}

.adoption-gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
}

.adoption-gallery-small {
	min-height: 205px;
}

.adoption-closing-actions {
	display: flex;
	justify-content: flex-end;
}

@media (max-width: 980px) {
	.adoption-hero,
	.adoption-note-band,
	.adoption-closing-band,
	.adoption-animal-card {
		grid-template-columns: 1fr;
	}

	.adoption-contact-card {
		position: static;
	}

	.adoption-fact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.adoption-copy,
	.adoption-contact-card,
	.adoption-note-band,
	.adoption-animal-card,
	.adoption-closing-band {
		border-radius: var(--radius-medium);
	}

	.adoption-gallery-main {
		min-height: 300px;
	}

	.adoption-gallery-grid {
		grid-template-columns: 1fr 1fr;
		gap: 0.7rem;
	}

	.adoption-gallery-small {
		min-height: 150px;
	}

	.adoption-contact-actions,
	.adoption-closing-actions {
		display: grid;
	}
}
