@charset "UTF-8";

/* =========================================================
   Design Tokens
   ========================================================= */
:root {
	--color-primary: #468966;
	/* dark green */
	--color-primary-dark: #356b50;
	--color-accent: #8ab79a;
	/* soft sage */
	--color-text: #222;
	--color-text-inverse: #ffffff;
	--color-muted: #9e9e9e;
	--color-light-grey: #f1f1f1;
	--color-border: #ebebeb;
	--color-error: #d32f2f;
	--color-link: #356b50;
	--color-link-visited: #264b39;

	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
	--transition: 150ms ease;
	--font-body: 'Open Sans', 'Open Sans Fallback', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'),
		url('../fonts/open-sans-v34-latin-regular.woff') format('woff');
}

/* Metric-matched fallback — minimises CLS while the webfont loads */
@font-face {
	font-family: 'Open Sans Fallback';
	src: local('Arial');
	size-adjust: 105.44%;
	ascent-override: 101.31%;
	descent-override: 27.77%;
	line-gap-override: 0%;
}

/* Skip rendering work for the large legal-text blocks until they scroll into view */
#impressum-container,
#datenschutz-container {
	content-visibility: auto;
	contain-intrinsic-size: auto 1200px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block
}

audio,
canvas,
video {
	display: inline-block
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
	font-family: var(--font-body);
	color: var(--color-text);
}

body {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

::-moz-selection {
	background: var(--color-accent);
	color: var(--color-text-inverse);
	text-shadow: none
}

::selection {
	background: var(--color-accent);
	color: var(--color-text-inverse);
	text-shadow: none
}

a {
	color: var(--color-link);
}

a:visited {
	color: var(--color-link-visited);
}

a:hover {
	color: var(--color-primary-dark)
}

a:focus {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
}

a:focus:not(:focus-visible) {
	outline: none;
}

a:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
}

a:hover,
a:active {
	outline: 0
}

b,
strong {
	font-weight: bold
}

blockquote {
	margin: 1em 40px
}

dfn {
	font-style: italic
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ebebeb;
	margin: 1em 0;
	padding: 0
}

ins {
	background: #ff9;
	color: #000;
	text-decoration: none
}

mark {
	background: #ff0;
	color: #000;
	font-style: italic;
	font-weight: bold
}

pre,
code,
kbd,
samp {
	font-family: monospace, serif;
	font-size: 1em
}

pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word
}

q {
	quotes: none
}

q:before,
q:after {
	content: "";
	content: none
}

small {
	font-size: 85%
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline
}

sup {
	top: -0.5em
}

sub {
	bottom: -0.25em
}

ul,
ol {
	margin: 1em 0;
	padding: 0 0 0 40px
}

dd {
	margin: 0 0 0 40px
}

img {
	border: 0;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}

figure {
	margin: 0
}

form {
	width: 30em;
	max-width: 90%;
	margin: 0;
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0
}

label {
	cursor: pointer;
	margin-bottom: 0.4rem;
	display: block;
}

legend {
	border: 0;
	padding: 0;
	white-space: normal
}

button,
input,
select,
textarea {
	font-size: 100%;
	margin: 0;
	vertical-align: baseline;
	padding: 0.4rem;
	width: 100%;
}

button,
input {
	line-height: normal
}

button {
	cursor: pointer;
	appearance: button;
	-webkit-appearance: button;
	border-radius: var(--radius-md);
	transition: background-color var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}

button:hover {
	box-shadow: var(--shadow-sm);
}

button:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
}

input[type=checkbox] {
	width: auto
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none
}

input,
textarea,
select {
	border: 1px solid #b8c9c0;
	border-radius: var(--radius-md);
	background: #f8fcfa;
	color: var(--color-text);
	padding: 0.7rem 0.9rem;
	font-size: 1rem;
	line-height: 1.4;
	width: 100%;
	max-width: 480px;
	box-sizing: border-box;
	transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

input[type="checkbox"],
input[type="radio"] {
	width: auto;
	max-width: none;
	padding: 0;
	margin-right: 0.5rem;
	accent-color: var(--color-primary);
}

textarea {
	min-height: 110px;
	resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: #78aa8e;
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(70, 137, 102, 0.22);
}

input::placeholder,
textarea::placeholder {
	color: var(--color-muted);
	opacity: 1;
}

textarea {
	overflow: auto;
	vertical-align: top;
	resize: vertical
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

td {
	vertical-align: top
}

/* Typography */
h1 {
	font-size: clamp(2rem, 4vw + 1rem, 3.25rem);
	line-height: 1.15;
	margin: 0 0 1rem 0;
	font-weight: 700;
	letter-spacing: -0.015em;
	max-width: 720px;
}

h2 {
	font-size: clamp(1.5rem, 1.5vw + 1rem, 2rem);
	line-height: 1.25;
	margin: 2.5rem 0 0.75rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}

h2.text {
	font-size: 1rem;
}

h3 {
	font-size: 1.25rem;
	line-height: 1.3;
	margin: 1.75rem 0 0.5rem;
	font-weight: 600;
}

h4 {
	font-size: 1.05rem;
	line-height: 1.35;
	margin: 1.25rem 0 0.4rem;
	font-weight: 600;
}

p {
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
}

.container {
	position: relative;
	z-index: 2 !important
}

.container-green {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.container-white {
	background: #fff;
}

.content {
	max-width: 720px;
	margin-right: 82px;
}

.main {
	margin-left: 82px;
	position: relative;
	padding-bottom: 4rem;
	padding-top: 0.5rem;
	z-index: 2;
}

header.main {
	padding-top: 2rem;
	padding-bottom: 0.75rem;
}

p {
	margin-top: 17px;
	margin-bottom: 17px;
}

ul {
	padding-left: 1.3rem;
}

.text-white {
	color: #fff;
}

.text-white a,
.text-white a:visited {
	color: #fff;
}

.text-black {
	color: #000;
}

.text-black a,
.text-black a:visited {
	color: #000;
}

a.maps-link,
a.maps-link:visited {
	color: #fff;
	text-decoration: none;
}

.entry-list p {
	line-height: 1.6;
	text-decoration: none;
}

.entry-list .contacts {
	font-weight: 700;
	font-size: 1.5rem;
	margin-top: 0;
	margin-bottom: 0.75rem;
	letter-spacing: -0.01em;
}

.entry-list .subtitle {
	opacity: 0.75;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 600;
	margin-bottom: 0.25rem;
	margin-top: 1rem;
}

.entry-list .text {
	margin-top: 0px;
	text-decoration: none;
}

#recipeorderform {
	max-width: 760px;
	width: 100%;
	margin-top: 1rem;
}

#recipeorderform .form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.95rem 1rem;
}

#recipeorderform .form-field {
	margin: 0;
}

#recipeorderform .form-label {
	display: block;
	opacity: 1;
	font-size: 1rem;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 0.4rem;
}

#recipeorderform input:not([type="checkbox"]),
#recipeorderform textarea {
	max-width: 100%;
	width: 100%;
	min-height: 3.1rem;
	font-size: 1.02rem;
}

#recipeorderform textarea {
	min-height: 9rem;
	padding-top: 0.75rem;
}

#recipeorderform .checkbox {
	width: 1.2rem;
	height: 1.2rem;
	margin-top: 0.1rem;
}

#recipeorderform .form-consent {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
}

#recipeorderform .form-label--inline {
	margin: 0;
	font-weight: 600;
	line-height: 1.45;
}

#recipeorderform .form-field--submit {
	margin-top: 0.25rem;
}

#recipeorderform .form-field--submit button[type="submit"] {
	width: auto;
	min-width: 14rem;
}

@media (min-width: 920px) {
	#recipeorderform .form-grid {
		grid-template-columns: 1fr 1fr;
	}

	#recipeorderform .form-field:not(.form-field--full) .form-label {
		min-height: 3.3em;
	}

	#recipeorderform .form-field--full {
		grid-column: 1 / -1;
	}
}

#recipeorderform.is-submitted :is(input, textarea):invalid,
#recipeorderform :is(input, textarea)[aria-invalid="true"] {
	border-color: #c5434f;
	background: #fff7f8;
	box-shadow: 0 0 0 3px rgba(197, 67, 79, 0.16);
}

.entry-item {
	width: 400px;
	max-width: 100%;
	padding-right: 1.5rem;
}

.entry-item-small {
	padding-top: 1.5rem;
	padding-bottom: 2rem;
	width: 400px;
	max-width: 100%;
	padding-right: 1.5rem;
}

.entry-item-small p {
	margin: 0.25rem 0;
}

.logo {
	float: right;
	position: absolute;
	right: 1.5rem;
	top: 1.5rem;
	text-align: right;
	z-index: 3;
}

.logo img {
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.18));
	transition: transform var(--transition);
}

.logo img:hover {
	transform: scale(1.04);
}

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

/* Form */
form {
	position: relative;
}

.float-left {
	float: left;
}

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}

.clearfix:after {
	clear: both;
}

.margin-124 {
	margin-left: 124px;
}

.margin-right-10 {
	margin-right: 10px;
}

.margin-right-13 {
	margin-right: 13px;
}

#map {
	height: 50vh;
}

/* Media Queries */
@media screen and (max-width: 730px) {
	.content {
		margin-right: 20px;
	}

	.main {
		margin-left: 20px;
	}
}

@media screen and (max-width: 500px) {
	.twitter-feed {
		margin-left: 20px;
	}
}

@media screen and (max-width: 480px) {
	.rights-reserved {
		padding-bottom: 50px;
	}

	.container {
		padding-right: 20px;
	}

	.content {
		margin-right: 20px;
	}

	.main {
		margin-left: 20px;
	}
}

@media screen and (max-width: 345px) {
	.margin-124 {
		margin-left: 20px;
	}

	.main {
		margin-left: 20px;
		padding-bottom: 40px;
	}

	header.main {
		padding-top: 20px;
		padding-bottom: 10px;
	}

	.main p {
		margin-bottom: 10px;
	}

	.entry-item-small {
		padding-top: 0;
	}

	.content {
		margin-bottom: 30px;
		margin-right: 0px;
	}
}

/* IE fixes */
.rights-reserved {
	clear: both;
}

/* Tabs */
:disabled * {
	pointer-events: none
}

/* Panel visibility is class-driven (no inline styles — keeps CSP style-src 'self') */
.tab {
	display: none;
}

.tab.is-active {
	display: block;
}

.tabs-display-container {
	position: relative
}

.tabs-block {
	display: block;
	width: 100%
}

.tabs-container:after,
.tabs-container:before,
.tabs-row-padding:after,
.tabs-row-padding:before,
.tabs-row:after,
.tabs-row:before {
	content: "";
	display: table;
	clear: both
}

.tabs-third {
	float: left;
	width: 100%
}

@media (min-width:601px) {
	.tabs-third {
		width: 20%
	}
}

.tabs-content {
	margin-left: auto;
	margin-right: auto
}

.tabs-content {
	max-width: 980px
}

.tabs-display-container:hover .tabs-display-hover {
	display: block
}

.tabs-display-hover {
	display: none
}

.tabs-row-padding,
.tabs-row-padding>.tabs-third {
	padding: 0 8px
}

.tabs-container {
	padding: .01em 16px
}

.tabs-container>section {
	margin-top: 2rem;
}

@keyframes tabs-spin {
	0% {
		transform: rotate(0)
	}

	100% {
		transform: rotate(359deg)
	}
}

@keyframes fading {
	0% {
		opacity: 0
	}

	50% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

@keyframes opac {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes animatetop {
	from {
		top: -300px;
		opacity: 0
	}

	to {
		top: 0;
		opacity: 1
	}
}

@keyframes animateleft {
	from {
		left: -300px;
		opacity: 0
	}

	to {
		left: 0;
		opacity: 1
	}
}

@keyframes animateright {
	from {
		right: -300px;
		opacity: 0
	}

	to {
		right: 0;
		opacity: 1
	}
}

@keyframes animatebottom {
	from {
		bottom: -300px;
		opacity: 0
	}

	to {
		bottom: 0;
		opacity: 1
	}
}

@keyframes animatezoom {
	from {
		transform: scale(0)
	}

	to {
		transform: scale(1)
	}
}

.tabs-border-0 {
	border: 0 !important
}

.tabs-border {
	border: 1px solid #ccc !important
}

.tabs-bottombar {
	border-bottom: 6px solid #ccc !important
}

.tabs-padding {
	padding: 8px 16px !important
}

.tabs-padding-16 {
	padding-top: 16px !important;
	padding-bottom: 16px !important
}

.tabs-padding-24 {
	padding-top: 24px !important;
	padding-bottom: 24px !important
}

.tabs-padding-32 {
	padding-top: 32px !important;
	padding-bottom: 32px !important
}

.tabs-padding-48 {
	padding-top: 48px !important;
	padding-bottom: 48px !important
}

.tabs-padding-64 {
	padding-top: 64px !important;
	padding-bottom: 64px !important
}

.tabs-hover-none:hover {
	background-color: transparent !important
}

.tabs-hover-none:hover {
	box-shadow: none !important
}

.tabs-hover-green:hover,
.tabs-green {
	color: #fff !important;
	background-color: #468966 !important
}

.tabs-grey,
.tabs-hover-grey:hover {
	color: #000 !important;
	background-color: #9e9e9e !important
}

.tabs-hover-light-grey:hover,
.tabs-light-grey {
	color: #000 !important;
	background-color: #f1f1f1 !important
}

.tabs-border-green,
.tabs-hover-border-green:hover {
	border-color: #468966 !important
}

.tabs-border-grey,
.tabs-hover-border-grey:hover {
	border-color: #9e9e9e !important
}

.tabs-border-light-grey,
.tabs-hover-border-light-grey:hover {
	border-color: #f1f1f1 !important
}

/* Youtube */
.wrap {
	position: relative;
	width: 100%;
	max-width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.wrap .thumb {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6) no-repeat center center;
	background-size: cover;
	cursor: pointer;
	overflow: hidden;
	display: block;
	background-image: url('/assets/images/corpos-homini.png');
	background-image: image-set(url('/assets/images/corpos-homini.avif') type('image/avif'), url('/assets/images/corpos-homini.webp') type('image/webp'), url('/assets/images/corpos-homini.png') type('image/png'));
}

#Trailer .float-left {
	float: none;
	width: 100%;
	max-width: 100%;
}

.wrap .thumb:hover .ytp-large-play-button-bg {
	transition: fill 0.1s cubic-bezier(0, 0, 0.2, 1), fill-opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
	fill: #f00;
	fill-opacity: 1;
}

.wrap .thumb button {
	position: absolute;
	width: 68px;
	height: 48px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
	z-index: 63;
	border: none;
	background-color: transparent;
	padding: 0;
	font-size: 100%;
	cursor: inherit;
	outline: 0;
}

/* =========================================================
   Utility classes (replacements for previous inline styles)
   ========================================================= */
.required-marker {
	color: var(--color-error);
}

.text-white-link {
	color: var(--color-text-inverse);
}

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

.breadcrumb-list {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 0.9rem;
}

.breadcrumb-item {
	display: inline;
}

/* =========================================================
   Smooth scrolling + accessibility
   ========================================================= */
html {
	scroll-behavior: smooth;
}

/* Skip-to-content link */
.skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	z-index: 9999;
}

.skip-link:focus,
.skip-link:focus-visible {
	left: 1rem;
	top: 1rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	background: var(--color-primary);
	color: var(--color-text-inverse);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-md);
	text-decoration: none;
	font-weight: 600;
}

/* Visually hidden but available to screen readers */
.visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Off-screen form block (replacement for a former inline style) */
.offscreen {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* =========================================================
   Modern button polish (form buttons + tab links)
   ========================================================= */
button[type="submit"] {
	background: var(--color-primary);
	color: var(--color-text-inverse);
	border: 0;
	padding: 0.7rem 1.5rem;
	font-weight: 600;
	font-size: 1rem;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	cursor: pointer;
	transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

button[type="submit"]:hover {
	background: var(--color-primary-dark);
	box-shadow: var(--shadow-md);
	transform: translateY(-1px);
}

button[type="submit"]:active {
	transform: translateY(0);
	box-shadow: var(--shadow-sm);
}

/* Tab links (now <button> with .tablink) */
.tablink {
	background: transparent;
	border: 0;
	cursor: pointer;
	width: 100%;
	font: inherit;
	color: inherit;
	text-align: center;
	padding: 0;
}

.tabs-third {
	transition: background-color var(--transition), border-color var(--transition);
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* =========================================================
	Modern Layout Shell - applied when <body class="modern-shell">
	Goals: warm, inclusive, modern, fancy. Same colors, same logo.
	========================================================= */

body.modern-shell {
	--gradient-hero: radial-gradient(120% 120% at 0% 0%, #56a07c 0%, #3f8460 45%, #265c44 100%);
	--gradient-accent: linear-gradient(135deg, #8ab79a 0%, #356b50 100%);
	--shadow-hero: 0 30px 80px -30px rgba(15, 60, 40, .55);
	background:
		radial-gradient(60% 50% at 100% 0%, rgba(138, 183, 154, .12), transparent 70%),
		radial-gradient(50% 40% at 0% 30%, rgba(70, 137, 102, .07), transparent 70%),
		#f7faf8;
	scroll-behavior: smooth;
}

body.modern-shell :is(h1, h2, h3, h4, p, ul, ol, section) {
	scroll-margin-top: 6rem;
}

/* ---------- Sticky top navigation ---------- */
body.modern-shell .site-nav {
	position: sticky;
	top: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 0.65rem clamp(1rem, 4vw, 2.5rem);
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: saturate(160%) blur(14px);
	-webkit-backdrop-filter: saturate(160%) blur(14px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	font-family: var(--font-body);
}

body.modern-shell .site-nav__brand {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	text-decoration: none;
	color: var(--color-primary);
	font-size: 1rem;
	letter-spacing: -0.01em;
}

body.modern-shell .site-nav__brand img {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(70, 137, 102, 0.08);
	padding: 4px;
}

body.modern-shell .site-nav__brand strong {
	color: var(--color-primary);
	font-weight: 700;
}

body.modern-shell .site-nav__links {
	list-style: none;
	margin: 0 0 0 auto;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.15rem;
	align-items: center;
}

body.modern-shell .site-nav__links a {
	display: inline-block;
	padding: 0.5rem 0.9rem;
	color: var(--color-text);
	text-decoration: none;
	border-radius: 999px;
	font-weight: 500;
	font-size: 0.95rem;
	transition: background-color var(--transition), color var(--transition);
}

body.modern-shell .site-nav__links a:hover,
body.modern-shell .site-nav__links a:focus-visible {
	background: rgba(70, 137, 102, 0.10);
	color: var(--color-primary);
	outline: none;
}

body.modern-shell .site-nav__cta {
	background: linear-gradient(135deg, #4d936e 0%, #356b50 100%) !important;
	color: #fff !important;
	box-shadow: 0 12px 24px -12px rgba(53, 107, 80, .6);
}

body.modern-shell .site-nav__cta:hover {
	background: var(--color-primary-dark) !important;
}

body.modern-shell .site-nav__toggle {
	display: none;
	margin-left: auto;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: #fff;
	border-radius: 12px;
	cursor: pointer;
	flex-direction: column;
	gap: 4px;
	align-items: center;
	justify-content: center;
}

body.modern-shell .site-nav__toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--color-primary);
	border-radius: 2px;
}

@media (max-width: 820px) {
	body.modern-shell .site-nav__toggle {
		display: flex;
	}

	body.modern-shell .site-nav__links {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0.25rem;
		padding: 0.75rem 1rem 1rem;
		background: rgba(255, 255, 255, 0.97);
		backdrop-filter: saturate(160%) blur(14px);
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
		box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.18);
		display: none;
	}

	body.modern-shell .site-nav.is-open .site-nav__links {
		display: flex;
	}

	body.modern-shell .site-nav__links a {
		padding: 0.85rem 1rem;
		text-align: left;
	}

	body.modern-shell .site-nav__cta {
		text-align: center;
		margin-top: 0.25rem;
	}
}

/* ---------- Hero (green) — full overhaul ---------- */
body.modern-shell .container.container-green {
	background: var(--gradient-hero);
	padding: clamp(3rem, 7vw, 5.5rem) 1.5rem clamp(5rem, 9vw, 7rem);
	position: relative;
	overflow: hidden;
	isolation: isolate;
	color: #fff;
}

/* Decorative blobs */
body.modern-shell .container.container-green::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(45% 35% at 88% 12%, rgba(138, 183, 154, 0.24), transparent 65%),
		radial-gradient(40% 35% at 8% 78%, rgba(255, 255, 255, 0.16), transparent 70%),
		radial-gradient(28% 22% at 55% 0%, rgba(255, 255, 255, 0.10), transparent 75%);
	z-index: 0;
}

/* Wave divider at the bottom of the hero */
body.modern-shell .container.container-green::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 70px;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'><path d='M0 35 C 240 70 480 0 720 35 C 960 70 1200 0 1440 35 L1440 70 L0 70 Z' fill='%23f7faf8'/></svg>");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	z-index: 1;
	pointer-events: none;
}

body.modern-shell .container.container-green>* {
	position: relative;
	z-index: 2;
}

/* Logo as a centered glass medallion in hero */
body.modern-shell .container.container-green>.logo {
	position: static;
	float: none;
	right: auto;
	top: auto;
	text-align: center;
	margin: 0 auto 1.5rem;
	display: flex;
	justify-content: center;
}

body.modern-shell .container.container-green>.logo img {
	width: 132px;
	height: 132px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	padding: 0.85rem;
	box-shadow:
		0 0 0 8px rgba(255, 255, 255, 0.06),
		0 0 0 18px rgba(255, 255, 255, 0.03),
		var(--shadow-hero);
	backdrop-filter: blur(8px);
	transition: transform 250ms ease;
}

body.modern-shell .container.container-green>.logo img:hover {
	transform: rotate(-2deg) scale(1.04);
}

body.modern-shell .container.container-green>header.main {
	display: none;
}

body.modern-shell .container.container-green>.main {
	margin: 0 auto;
	max-width: 1080px;
	padding: 0;
}

/* Hero intro block */
body.modern-shell .hero-intro {
	text-align: center;
	max-width: 820px;
	margin: 0 auto 2.5rem;
	padding: 0;
}

body.modern-shell .hero-eyebrow {
	display: inline-block;
	margin: 0 0 0.75rem;
	padding: 0.35rem 0.9rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	backdrop-filter: blur(6px);
}

body.modern-shell .hero-intro h1 {
	font-size: clamp(2.25rem, 4.5vw + 1rem, 4rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin: 0.5rem auto 0.25rem;
	font-weight: 800;
	max-width: none;
	text-align: center;
}

body.modern-shell .hero-name {
	background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.78) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

body.modern-shell .hero-tagline {
	font-size: clamp(1.05rem, 1vw + 0.85rem, 1.25rem);
	max-width: 640px;
	margin: 1rem auto 1.75rem;
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.55;
}

/* Rezeptbestellung hero (long title variant) */
body.modern-shell .order-hero {
	max-width: 900px;
	margin: 0;
}

body.modern-shell .order-hero__title {
	font-size: clamp(1.9rem, 2.2vw + 1.1rem, 3.2rem);
	line-height: 1.12;
	letter-spacing: -0.015em;
	margin: 0;
	max-width: 22ch;
	text-wrap: balance;
}

body.modern-shell .order-hero__lead {
	font-size: clamp(1rem, 0.35vw + 0.95rem, 1.25rem);
	line-height: 1.55;
	margin: 1.15rem 0 0;
	max-width: 66ch;
	color: rgba(255, 255, 255, 0.95);
}

body.modern-shell .hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	justify-content: center;
	margin: 0 0 1.5rem;
}

body.modern-shell .btn {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.85rem 1.5rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	border: 1px solid transparent;
	transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition);
	white-space: nowrap;
}

body.modern-shell .btn-primary {
	background: linear-gradient(180deg, #ffffff 0%, #eef6f0 100%);
	color: var(--color-primary) !important;
	border-color: rgba(255, 255, 255, 0.55);
	box-shadow: 0 14px 28px -12px rgba(0, 0, 0, 0.45);
}

body.modern-shell .btn-primary:hover,
body.modern-shell .btn-primary:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 20px 38px -14px rgba(0, 0, 0, 0.5);
	color: var(--color-primary-dark) !important;
	outline: none;
}

body.modern-shell .btn-ghost {
	background: rgba(255, 255, 255, 0.10);
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.32);
	backdrop-filter: blur(6px);
}

body.modern-shell .btn-ghost:hover,
body.modern-shell .btn-ghost:focus-visible {
	background: rgba(255, 255, 255, 0.22);
	transform: translateY(-2px);
	outline: none;
}

body.modern-shell .btn-icon {
	display: inline-block;
	width: 1.05em;
	height: 1.05em;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") no-repeat center / contain;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") no-repeat center / contain;
}

/* Hero badges row */
body.modern-shell .hero-badges {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
}

body.modern-shell .hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.85rem;
	font-size: 0.85rem;
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 999px;
	backdrop-filter: blur(6px);
}

body.modern-shell .hero-badge::before {
	content: "";
	width: 0.95rem;
	height: 0.95rem;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
}

/* ---------- Hero content cards (Termine, Bestellung, Kontakt, Times, Alle Kassen) ---------- */
body.modern-shell .container.container-green .entry-list {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 22px;
	padding: 1.75rem 1.75rem 1.5rem;
	margin: 1.25rem 0;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: transform var(--transition), background-color var(--transition), border-color var(--transition);
}

body.modern-shell .container.container-green .entry-list:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.10);
	border-color: rgba(255, 255, 255, 0.24);
}

body.modern-shell .container.container-green .entry-list .contacts {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0 0 1rem;
	padding: 0;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
}

body.modern-shell .container.container-green .entry-list .contacts::before {
	content: "";
	flex: none;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 50%;
	background-color: rgba(138, 183, 154, 0.24);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 55%;
	border: 1px solid rgba(255, 255, 255, 0.22);
}

body.modern-shell #appointment .contacts::before {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>");
}

body.modern-shell #order .contacts::before {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M10.5 13.5l-4.5 4.5a2.83 2.83 0 1 0 4 4l4.5-4.5'/><path d='M13 11l7-7a2 2 0 1 1 2.83 2.83l-7 7'/><line x1='8' y1='6' x2='14' y2='12'/></svg>");
}

body.modern-shell #contact .contacts::before {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 0 1 18 0z'/><circle cx='12' cy='10' r='3'/></svg>");
}

body.modern-shell #times .contacts::before {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><polyline points='12 6 12 12 16 14'/></svg>");
}

/* Contact: side-by-side address + phone/email */
body.modern-shell #contact {
	padding-bottom: 1.75rem !important;
}

body.modern-shell #contact .float-left {
	float: none;
}

body.modern-shell #contact .entry-item,
body.modern-shell #contact .entry-item-small {
	display: inline-block;
	vertical-align: top;
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
	box-shadow: none !important;
	width: 100%;
	max-width: 420px;
	margin: 0 1rem 1rem 0;
}

body.modern-shell #contact .subtitle {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	margin: 0 0 0.2rem;
}

body.modern-shell #contact a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.45);
	transition: border-color var(--transition);
}

body.modern-shell #contact a:hover {
	border-bottom-color: #fff;
	border-bottom-style: solid;
}

body.modern-shell #contact .phone {
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: 0.01em;
}

/* Times: weekly grid */
body.modern-shell #times.entry-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.6rem;
}

body.modern-shell #times.entry-list>.contacts {
	grid-column: 1 / -1;
	width: auto;
}

body.modern-shell #times.entry-list>.float-left.entry-item {
	display: flex;
	float: none !important;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: auto !important;
	max-width: none !important;
	min-height: 92px;
	padding: 0.85rem 0.9rem !important;
	margin: 0 !important;
	background: rgba(255, 255, 255, 0.10) !important;
	border: 1px solid rgba(255, 255, 255, 0.18) !important;
	border-radius: 14px;
	box-shadow: none !important;
	text-align: center;
	transition: background-color var(--transition), transform var(--transition);
}

body.modern-shell #times.entry-list>.float-left.entry-item:hover {
	background: rgba(255, 255, 255, 0.16) !important;
	transform: translateY(-2px);
}

body.modern-shell #times.entry-list>.float-left.entry-item .subtitle {
	margin: 0 0 0.55rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.82);
}

body.modern-shell #times.entry-list>.float-left.entry-item .text {
	margin: 0;
	font-weight: 600;
	font-size: 0.95rem;
	color: #fff;
	line-height: 1.35;
	width: 100%;
}

body.modern-shell #times.entry-list>.float-left.entry-item .text span {
	display: block;
}

@media (min-width: 600px) {
	body.modern-shell #times.entry-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 900px) {
	body.modern-shell #times.entry-list {
		grid-template-columns: repeat(5, 1fr);
	}
}

/* "Alle Kassen" pill row */
body.modern-shell #supported.entry-list {
	display: flex;
	justify-content: center;
	background: transparent !important;
	border: none !important;
	backdrop-filter: none;
	padding: 0.5rem 0 !important;
}

body.modern-shell #supported h2.text {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0.55rem 1.25rem;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	background: var(--gradient-accent);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	box-shadow: 0 14px 28px -12px rgba(53, 107, 80, 0.45);
}

body.modern-shell #supported h2.text::before {
	content: "";
	width: 1.05rem;
	height: 1.05rem;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/><polyline points='9 12 11 14 15 10'/></svg>") no-repeat center / contain;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/><polyline points='9 12 11 14 15 10'/></svg>") no-repeat center / contain;
}

/* Absence announcement banner inside hero */
body.modern-shell .absence-banner {
	max-width: 1080px;
	margin: 0 auto 2.35rem;
	padding: 1.2rem 1.35rem 1.3rem;
	background: rgba(72, 143, 107, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 24px;
	box-shadow: 0 16px 34px -22px rgba(0, 0, 0, 0.35);
}

body.modern-shell .absence-banner__title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0 0 0.75rem;
	font-size: 1rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.96);
}

body.modern-shell .absence-banner__title::before {
	content: "";
	flex: none;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 50%;
	background-color: rgba(138, 183, 154, 0.24);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 55%;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>");
}

body.modern-shell .absence-banner__content {
	display: grid;
	gap: 0.9rem;
}

body.modern-shell .absence-banner__item {
	margin: 0;
	padding: 0.8rem 0.95rem;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-left: 4px solid rgba(255, 255, 255, 0.55);
}

body.modern-shell .absence-banner__range {
	display: block;
	margin: 0 0 0.35rem;
	font-size: 0.95rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.9);
}

body.modern-shell .absence-banner__text {
	margin: 0;
	font-size: 1.06rem;
	line-height: 1.55;
	font-weight: 600;
	color: #fff;
}

@media (max-width: 700px) {
	body.modern-shell .absence-banner {
		margin: 0 auto 1.85rem;
		padding: 1.1rem 1rem 1.15rem;
		border-radius: 18px;
	}

	body.modern-shell .absence-banner__title {
		font-size: 0.98rem;
		margin-bottom: 0.75rem;
	}

	body.modern-shell .absence-banner__range {
		font-size: 0.92rem;
	}

	body.modern-shell .absence-banner__text {
		font-size: 1rem;
		line-height: 1.5;
	}
}

/* ---------- White content container — editorial card ---------- */
body.modern-shell .container.container-white:not(#impressum-container):not(#datenschutz-container) {
	position: relative;
	max-width: 1080px;
	margin: -3.5rem auto 3rem;
	padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem) clamp(2.5rem, 4vw, 3.5rem);
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 28px;
	box-shadow: 0 30px 80px -30px rgba(15, 60, 40, 0.18), 0 4px 12px rgba(0, 0, 0, 0.04);
	z-index: 3;
}

body.modern-shell .container.container-white>.logo {
	position: absolute;
	float: none;
	top: -48px;
	left: 50%;
	right: auto;
	transform: translateX(-50%);
	margin: 0;
	text-align: center;
}

body.modern-shell .container.container-white>.logo img {
	width: 92px;
	height: 92px;
	border-radius: 50%;
	background: #fff;
	padding: 0.5rem;
	border: 1px solid var(--color-border);
	box-shadow: 0 14px 30px -14px rgba(15, 60, 40, 0.28);
}

body.modern-shell .container.container-white>header.main {
	display: none;
}

body.modern-shell .container.container-white>.main {
	margin: 0;
	padding: 0;
	max-width: none;
}

/* Tabs as segmented control */
body.modern-shell .container.container-white .tabs-row {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	padding: 0.35rem;
	margin: 0 0 2rem;
	background: var(--color-light-grey);
	border: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	border-radius: 999px;
	width: 100%;
	max-width: 100%;
}

body.modern-shell .container.container-white .tabs-row>.tablink {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 0 !important;
	min-width: 120px;
	min-height: 74px;
	padding: 0 !important;
	border-radius: 999px !important;
	border-bottom: none !important;
	background: transparent;
	color: var(--color-text);
}

body.modern-shell .container.container-white .tabs-row>.tablink>span {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	height: 100%;
	padding: 0.65rem 1rem !important;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0;
}

body.modern-shell .container.container-white .tabs-row>.tablink:hover {
	background: rgba(70, 137, 102, 0.08) !important;
	color: var(--color-primary);
	box-shadow: none;
}

body.modern-shell .container.container-white .tabs-row>.tablink.tabs-border-green {
	background: var(--color-primary) !important;
	color: #fff !important;
	box-shadow: 0 8px 18px -8px rgba(70, 137, 102, 0.55);
	border-bottom: none !important;
}

@media (max-width: 600px) {
	body.modern-shell .container.container-white .tabs-row {
		border-radius: 18px;
	}

	body.modern-shell .container.container-white .tabs-row>.tablink {
		flex: 1 1 45% !important;
		border-radius: 14px !important;
	}
}

/* White container body content */
body.modern-shell .container.container-white .entry-list {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 0 1.75rem;
}

body.modern-shell .container.container-white .contacts {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--color-primary);
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: 0;
	text-transform: none;
	margin: 0 0 1rem;
}

body.modern-shell .container.container-white h3.contacts.subtitle,
body.modern-shell .container.container-white h3.subtitle {
	color: var(--color-text);
	font-weight: 600;
	font-size: 1.08rem;
	letter-spacing: 0.01em;
	text-transform: none;
	margin: 1.1rem 0 0.45rem;
	padding-left: 0.55rem;
	border-left: 2px solid rgba(70, 137, 102, 0.65);
}

body.modern-shell .container.container-white .entry-item {
	background: var(--color-bg-soft, #f7faf8) !important;
	border: 1px solid var(--color-border) !important;
	border-radius: 16px !important;
	padding: 1rem 1.25rem !important;
	transition: transform var(--transition), box-shadow var(--transition);
}

body.modern-shell .container.container-white .entry-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px -16px rgba(0, 0, 0, 0.16);
}

body.modern-shell .container.container-white .entry-item ul {
	margin: 0;
	padding-left: 1.1rem;
}

body.modern-shell .container.container-white .entry-item li {
	margin: 0.25rem 0;
	line-height: 1.5;
}

/* Trailer (YouTube) container */
body.modern-shell #Trailer .wrap {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.3);
}

/* ---------- Mobile sticky CTA ---------- */
body.modern-shell .mobile-cta {
	display: none;
	position: fixed;
	left: 50%;
	bottom: 1rem;
	transform: translateX(-50%);
	z-index: 60;
	gap: 0.4rem;
	padding: 0.4rem;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: saturate(160%) blur(14px);
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 999px;
	box-shadow: 0 18px 44px -14px rgba(0, 0, 0, 0.28);
}

body.modern-shell .mobile-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.7rem 1.1rem;
	border-radius: 999px;
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.92rem;
	text-align: center;
}

body.modern-shell .mobile-cta__btn--primary {
	background: var(--color-primary);
	color: #fff !important;
	box-shadow: 0 10px 22px -10px rgba(70, 137, 102, 0.6);
}

body.modern-shell .mobile-cta__icon--phone {
	display: inline-block;
	width: 1.05rem;
	height: 1.05rem;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") no-repeat center / contain;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") no-repeat center / contain;
}

@media (max-width: 720px) {
	body.modern-shell .mobile-cta {
		display: inline-flex;
	}

	body.modern-shell {
		padding-bottom: 5.5rem;
	}
}

/* ---------- Footer modern ---------- */
body.modern-shell footer {
	margin-top: 2rem;
}

body.modern-shell footer .container.container-white:not(#impressum-container):not(#datenschutz-container) {
	max-width: 1080px;
	margin: 0 auto 1.5rem;
	padding: 0.85rem clamp(1rem, 2.4vw, 1.5rem);
	background: transparent;
	border: none;
	border-top: 1px solid var(--color-border);
	border-radius: 0;
	box-shadow: none;
	font-size: 0.9rem;
	color: var(--color-muted);
}

body.modern-shell footer .main {
	text-align: center;
	margin: 0 !important;
	padding: 0.2rem 0;
}

body.modern-shell footer a {
	color: var(--color-primary);
}

/* ---------- Responsive niceties for hero ---------- */
@media (max-width: 820px) {
	body.modern-shell .hero-actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0.6rem;
		max-width: 420px;
		margin: 0 auto 1.4rem;
		width: 100%;
	}

	body.modern-shell .hero-actions .btn {
		justify-content: center;
		text-align: center;
		min-height: 3.2rem;
		white-space: normal;
	}
}

@media (max-width: 600px) {
	body.modern-shell .container.container-green {
		padding-bottom: 5rem;
	}

	body.modern-shell .container.container-green>.logo img {
		width: 110px;
		height: 110px;
	}

	body.modern-shell .hero-actions .btn {
		flex: 1 1 100%;
	}

	body.modern-shell .container.container-white:not(#impressum-container):not(#datenschutz-container) {
		margin-top: -2.5rem;
		border-radius: 22px;
	}

	body.modern-shell .container.container-white>.logo {
		position: relative;
		text-align: center;
		margin: -1.75rem auto 1rem;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	body.modern-shell .container.container-white>.logo img {
		width: 100%;
		max-width: 120px;
		height: auto;
	}
}

/* ---------- Reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {

	body.modern-shell *,
	body.modern-shell *::before,
	body.modern-shell *::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
	}
}

/* =========================================================
   Print stylesheet
   ========================================================= */
@media print {

	*,
	*::before,
	*::after {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}

	body {
		font-size: 12pt;
		line-height: 1.4;
	}

	a,
	a:visited {
		color: #000 !important;
		text-decoration: underline;
	}

	a[href^="http"]::after {
		content: " (" attr(href) ")";
		font-size: 0.85em;
	}

	a[href^="#"]::after,
	a[href^="javascript:"]::after,
	a[href^="mailto:"]::after,
	a[href^="tel:"]::after {
		content: "";
	}

	.logo,
	#map,
	.wrap,
	.tabs-row,
	form,
	footer {
		display: none !important;
	}

	.main {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}

	.tab {
		display: block !important;
		page-break-inside: avoid;
	}

	h1,
	h2,
	h3 {
		page-break-after: avoid;
	}

	img {
		max-width: 100% !important;
		page-break-inside: avoid;
	}
}