/* === RESET === */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', Arial, sans-serif;
	color: #333;
	line-height: 1.65;
	overflow-x: hidden;
}

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

a {
	text-decoration: none;
	color: inherit;
}

:root {
	--green:      #5a9e1f;
	--green-dark: #3d7012;
	--orange:     #e8921a;
	--navy:       #1a3a6c;
	--red:        #c0292b;
	--blue:       #1a5f8a;
	--olive:      #637b35;
}

/* === HEADER === */
header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #fff;
	padding: 0 3rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4.75rem;
	box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.08);
}

.logo img {
	height: 2.875rem;
	width: auto;
}

nav {
	display: flex;
	align-items: center;
	gap: 2.375rem;
}

nav a {
	font-size: 1.125rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: color 0.2s;
	color: var(--Corporate-Green-dunkel, #78AA28);
	font-family: "Nunito Sans";
	font-style: normal;
	font-weight: 800;
	line-height: 100%; /* 18px */
	text-transform: uppercase;
}

nav a:hover {
	color: var(--orange);
}

/* .nav-flag is now a <button> — full reset + layout */
.nav-flag {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.82rem;
	font-weight: 700;
	color: #333;
	cursor: pointer;
	border: none;
	background: transparent;
	padding: 0.375rem 0.5rem;
	border-radius: 0.25rem;
	min-height: 2.75rem;
	font-family: "Nunito Sans", Arial, sans-serif;
	transition: background 0.15s;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

.nav-flag:hover {
	background: rgba(120, 170, 40, 0.1);
}

.nav-flag:focus-visible {
	outline: 2px solid #78AA28;
	outline-offset: 2px;
	background: rgba(120, 170, 40, 0.08);
}

.flag-de {
	width: 1.625rem;
	height: 1.125rem;
	border-radius: 0.1875rem;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.flag-de span {
	flex: 1;
	display: block;
}

.flag-de .s1 { background: #1a1a1a; }
.flag-de .s2 { background: #cc0000; }
.flag-de .s3 { background: #ffcc00; }

/* === LANGUAGE SWITCH === */
.lang-switch {
	position: relative;
	display: flex;
	align-items: center;
}

.lang-label {
	font-weight: 700;
	letter-spacing: 0.03em;
}

.lang-arrow {
	font-size: 0.55rem;
	line-height: 1;
	display: inline-block;
	transition: transform 0.2s ease;
}

.nav-flag[aria-expanded="true"] .lang-arrow {
	transform: rotate(180deg);
}

/* Dropdown panel */
.lang-dropdown {
	position: absolute;
	top: calc(100% + 0.5rem);
	right: 0;
	min-width: 9.5rem;
	list-style: none;
	background: #fff;
	border-radius: 0.375rem;
	box-shadow:
		0 0.25rem 1rem rgba(0, 0, 0, 0.12),
		0 0 0 1px rgba(0, 0, 0, 0.06);
	padding: 0.375rem 0;
	z-index: 1001;
	/* hidden state */
	opacity: 0;
	transform: translateY(-0.375rem);
	pointer-events: none;
	visibility: hidden;
	transition:
		opacity 0.15s ease,
		transform 0.15s ease,
		visibility 0s linear 0.15s;
}

.lang-switch.open .lang-dropdown {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	visibility: visible;
	transition:
		opacity 0.15s ease,
		transform 0.15s ease,
		visibility 0s linear 0s;
}

/* Dropdown items */
.lang-dropdown a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #333;
	font-family: "Nunito Sans", Arial, sans-serif;
	white-space: nowrap;
	min-height: 2.75rem;
	transition: background 0.1s, color 0.1s;
}

.lang-dropdown a:hover {
	background: rgba(120, 170, 40, 0.08);
	color: #78AA28;
}

.lang-dropdown a:focus-visible {
	outline: 2px solid #78AA28;
	outline-offset: -2px;
	background: rgba(120, 170, 40, 0.08);
}

/* Active / current language */
.lang-dropdown a[aria-current="true"] {
	color: #78AA28;
	font-weight: 800;
	pointer-events: none;
	cursor: default;
}

.lang-dropdown a[aria-current="true"]::after {
	content: '✓';
	margin-left: auto;
	padding-left: 0.75rem;
	font-size: 0.75rem;
	color: #78AA28;
}

/* English flag (emoji-based) */
.flag-en {
	font-size: 1.125rem;
	line-height: 1;
	display: flex;
	align-items: center;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.lang-dropdown,
	.lang-switch.open .lang-dropdown {
		transition: opacity 0.01ms, visibility 0s;
	}
	.lang-arrow { transition: none; }
}

/* === MOBILE LANGUAGE TOGGLE ===
   Inline pill switcher — shown only in mobile nav overlay.
   On desktop the classic .nav-flag + .lang-dropdown is used instead. */
.lang-toggle { display: none; }

.lang-opt {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	padding: 0.75rem 1rem;
	min-height: 3rem;          /* 48 px — above 44 px WCAG touch target */
	border-radius: 0.5rem;
	border: 2px solid rgba(0, 0, 0, 0.12);
	font-size: 0.9375rem;
	font-weight: 700;
	font-family: "Nunito Sans", Arial, sans-serif;
	color: #555;
	text-decoration: none;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
	-webkit-tap-highlight-color: transparent;
}

@media (max-width: 767px) {
	/* Hide desktop compact trigger + floating dropdown */
	.lang-switch .nav-flag,
	.lang-switch .lang-dropdown { display: none; }

	/* Show inline pills */
	.lang-toggle {
		display: flex;
		gap: 0.625rem;
		padding: 0.875rem 0;
		width: 100%;
		border-bottom: 1px solid rgba(120, 170, 40, 0.18);
	}

	.lang-opt { flex: 1; }

	.lang-opt:hover,
	.lang-opt:focus-visible {
		background: rgba(120, 170, 40, 0.08);
		border-color: #78AA28;
		color: #78AA28;
		outline: none;
	}

	.lang-opt[aria-current="true"] {
		background: rgba(120, 170, 40, 0.12);
		border-color: #78AA28;
		color: #78AA28;
		font-weight: 800;
		pointer-events: none;
		cursor: default;
	}
}

/* === HERO SLIDER === */
.slider-wrap {
	position: relative;
	overflow: hidden;
}

.slider-track {
	display: flex;
	transition: transform 0.55s cubic-bezier(.4, 0, .2, 1);
}

.slide {
	min-width: 100%;
}

.slide img {
	width: 100%;
	display: block;
}

.sl-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.75);
	border: none;
	cursor: pointer;
	width: 2.875rem;
	height: 2.875rem;
	border-radius: 50%;
	font-size: 1.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: background 0.2s;
	color: #333;
}

.sl-btn:hover { background: #fff; }
.sl-prev { left: 1.125rem; }
.sl-next { right: 1.125rem; }

.sl-dots {
	position: absolute;
	bottom: 1.125rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5625rem;
	z-index: 10;
}

.sl-dot {
	width: 0.6875rem;
	height: 0.6875rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	border: 0.125rem solid rgba(255, 255, 255, 0.9);
	cursor: pointer;
	transition: background 0.3s, border-color 0.3s;
}

.sl-dot.on {
	background: var(--green);
	border-color: var(--green);
}

/* === SHARED === */
.container {
	max-width: 1512px;
	margin: 0 auto;
	padding: 0 2.75rem;
}

.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

/* === BUTTONS === */
.btn-green {
	display: inline-block;
	color: #fff;
	padding: 0.8125rem 1.75rem;
	font-size: 1.5rem;
	transition: background 0.2s;
	border-radius: 0.3125rem;
	border: 0.125rem solid var(--white, #FFF);
	background: var(--Corporate-Green, #8CBE3C);
	text-align: center;
	/* button text */
	font-family: "Nunito Sans";
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
}
.btn-green:hover { background: var(--green-dark); }

.btn-orange {
	display: inline-block;
	background: #F8AC23;;
	color: #fff;
	font-weight: 700;
	font-family: "Nunito Sans";
	padding: 0.8125rem 1.75rem;
	border-radius: 0.25rem;
	font-size: 1.5rem;
	transition: background 0.2s;
}

.btn-orange:hover { background: hsl(39, 91%, 42%); }

.btn-outline-green {
	display: inline-block;
	border: 0.125rem solid #fff;
	color: #fff;
	font-family: "Nunito Sans";
	background: #8CBE3C;
	font-weight: 700;
	padding: 0.6875rem 1.625rem;
	border-radius: 0.25rem;
	font-size: 1.5rem;
	transition: background 0.2s;
}
.btn-outline-green:hover { background: hsl(83, 79%, 35%); }

.btn-outline-white-2 {
	display: inline-block;
	border: 0.125rem solid #fff;
	background: #64B9E1;
	color: #fff;
	font-family: "Nunito Sans";
	font-weight: 700;
	padding: 0.6875rem 1.625rem;
	border-radius: 0.25rem;
	font-size: 1.5rem;
	transition: background 0.2s;
}
.btn-outline-white-2:hover {
	background: hwb(199 7% 37%);
}

.btn-outline-orange {
	display: inline-block;
	border: 0.125rem solid #fff;
	background: #F8AC23;
	color: #fff;
	font-family: "Nunito Sans";
	font-weight: 700;
	padding: 0.6875rem 1.625rem;
	border-radius: 0.25rem;
	font-size: 1.5rem;
	transition: background 0.2s;
}
.btn-outline-orange:hover {
	background: hsl(39, 91%, 42%);
}

.btn-outline-light {
	display: inline-block;
	border: 0.125rem solid rgba(255, 255, 255, 0.6);
	background: #F8AC23;
	color: #fff;
	font-family: "Nunito Sans";
	font-weight: 700;
	padding: 0.6875rem 1.625rem;
	border-radius: 0.25rem;
	font-size: 1.5rem;
	transition: background 0.2s;
}
.btn-outline-light:hover { border-color: #fff; background: hsl(39, 91%, 42%); }

/* === INTRO === */
#intro {
	background: #fff;
	text-align: center;
	padding: 4.125rem 2.75rem 3.75rem;
}

#intro h1 {
	margin-bottom: 0.625rem;
	color: var(--Corporate-Green-dunkel, #78AA28);
	text-align: center;
	/* H1 */
	font-family: "Nunito Sans";
	font-size: 3.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: 90%;		/* 50.4px */
}

#intro h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.875rem;
	color: var(--Corporate-orange, #E79038);
	text-align: center;
	/* H4 */
	font-family: "Nunito Sans";
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
}

#intro p {
	max-width: 45rem;
	margin: 0 auto 0.9375rem;
	color: var(--black, #000);
	text-align: center;
	/* Einleitung */
	font-family: "Nunito Sans";
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: 130%;
}

/* === ÜBER UNS HQ === */
#ueber-uns {
	padding: 4rem 2.75rem;
}

.hq-text {
	font-size: 1.25rem;
	color: var(--black, #000);
	/* Einleitung */
	font-family: "Nunito Sans";
	font-style: normal;
	font-weight: 500;
	line-height: 130%;
}

.hq-tagline {
	font-weight: 700;
	margin-top: 1.375rem;
	font-size: 1.25rem;
	color: var(--Corporate-Green-dunkel, #78AA28);
	/* Einleitung bold */
	font-family: "Nunito Sans";
	font-style: normal;
	font-weight: 800;
	line-height: 130%;
}
.hq-img-wrap {
	position: relative;
}

.hq-img-wrap img {
	width: 100%;
	height: auto;
	border-radius: 0.25rem;
	display: block;
}

.hq-caption {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 1.875rem 3.125rem;
	font-size: 1.375rem;
	border-radius: 0 0 0.5rem 0;
	color: var(--white, #FFF);
	/* H6 */
	font-family: "Nunito Sans";
	font-style: normal;
	font-weight: 700;
	line-height: 130%;
}

/* === PHILOSOPHIE === */
#philosophie {
	background: #fff;
	padding: 4.375rem 2.75rem;
}

.phil-photo {
	width: 100%;
	height: auto;
	border-radius: 0.25rem;
	display: block;
}

.phil-content h2 {
	font-size: 2.375rem;
	font-weight: 800;
	margin-bottom: 1.75rem;
	color: var(--Corporate-Green-dunkel, #78AA28);
	/* H3 */
	font-family: "Nunito Sans";
	font-style: normal;
	font-weight: 700;
	line-height: 110%;
}

.phil-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.375rem;
}

/* Icons are self-contained SVGs (already have orange circle) */
.phil-icon {
	width: 3.375rem;
	height: 3.375rem;
	flex-shrink: 0;
}

.phil-icon img {
	width: 3.375rem;
	height: 3.375rem;
}

.phil-text {
	font-size: 1.313rem;
	padding-top: 0.625rem;
	color: var(--gray, #555F64);
	/* Liste */
	font-family: "Nunito Sans";
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
}

/* === QUOTE — zitatbox.svg as full-width image with text overlay === */
#quote {
	position: relative;
	overflow: hidden;
}

.quote-bg {
	position: relative;
	width: 100%;
}

.quote-bg-img {
	width: 100%;
	display: block;
}

/* Absolutely overlays the full quote-bg; aligns content with .container grid */
#quote .container {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
}

.quote-overlay {
	/* width tied to .two-col: 50% of viewport, capped at half of container max-width (1512px / 2) */
	width: 50%;
	max-width: 47.25rem;
	padding: 2.813rem 7.438rem 2.813rem 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #fff;
}

.q-mark {
	font-size: 6rem;
	line-height: 0.5;
	color: rgba(255, 255, 255, 0.35);
	font-family: Georgia, serif;
	margin-bottom: 1.125rem;
}

.q-text {
	font-size: 1.5rem;
	margin-bottom: 0.875rem;
	color: var(--white, #FFF);
	font-family: Rokkitt;
	font-style: normal;
	font-weight: 500;
	line-height: 110%;
}

.q-author {
	font-weight: 700;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.85);
}

/* === HÄNDLER / MAPS === */
#haendler {
	background: #fff;
	padding: 4.375rem 2.75rem;
}

.haendler-h {
	font-size: 2.375rem;
	font-weight: 800;
	margin-bottom: 1.125rem;
	color: var(--Corporate-Green-dunkel, #78AA28);
	/* H3 */
	font-family: "Nunito Sans";
	font-style: normal;
	font-weight: 700;
	line-height: 110%;
}

.haendler-p {
	font-size: 1.25rem;
	margin-bottom: 1.25rem;
	color: var(--black, #000);
	/* Einleitung */
	font-family: "Nunito Sans";
	font-style: normal;
	font-weight: 500;
	line-height: 130%;
}

.interested {
	margin-bottom: 1rem;
	color: var(--Corporate-orange, #E79038);
	/* H6 */
	font-family: "Nunito Sans";
	font-size: 1.375rem;
	font-style: normal;
	font-weight: 700;
	line-height: 130%;
}

.maps-wrap {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.maps-wrap img {
	width: 100%;
	height: auto;
	max-width: 32.5rem;
}

/* === WAS MARSAPET === */
#was-marsapet {
	padding: 4.375rem 2.75rem;
}

#was-marsapet > .container > h2 {
	text-align: center;
	font-size: 2.813rem;
	margin-bottom: 3.125rem;
	color: var(--Corporate-Green-dunkel, #78AA28);
	text-align: center;
	/* H2 */
	font-family: "Nunito Sans";
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
}

.three-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.813rem;
}

.val-card {
	background: #e5e5e5;
	padding: 1.875rem 1.625rem;
	border-radius: 0.25rem;
}

.val-card-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 1.125rem;
}

.val-card-title {
	font-size: 1.5rem;
	text-transform: uppercase;
	color: var(--Corporate-Green-dunkel, #78AA28);
	/* H5 */
	font-family: "Nunito Sans";
	font-style: normal;
	font-weight: 700;
	line-height: 130%;
}



.val-card-icon {
	flex-shrink: 0;
	margin-left: 0.5rem;
}

.val-card-icon img {
	width: 3.125rem;
	height: 3.125rem;
}

.val-card ul {
	list-style: none;
}

.val-card ul li {
	position: relative;
	padding-left: 1rem;
	margin-bottom: 0.5rem;
	font-size: 1.125rem;
	color: var(--black, #000);
	/* Bullets */
	font-family: "Nunito Sans";
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
}

.val-card ul li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #999;
}

/* === MARKEN INTRO === */
#marken-intro {
	background: #fff;
	padding: 3.75rem 2.75rem 3.125rem;
	text-align: center;
}

.tierbild-wrap {
	margin: 0 auto 2.625rem;
	overflow: hidden;
}

.tierbild-wrap img {
	width: 100%;
	height: auto;
	display: block;
}

#marken-intro h2 {
	font-size: 3.5rem;
	margin-bottom: 1.125rem;
	color: var(--Corporate-Green-dunkel, #78AA28);
	text-align: center;
	/* H1 */
	font-family: "Nunito Sans";
	font-style: normal;
	font-weight: 700;
	line-height: 90%;
}

#marken-intro p {
	max-width: 52.5rem;
	margin: 0 auto 0.8125rem;
	font-size: 1.25rem;
	color: var(--black, #000);
	text-align: center;

	/* Einleitung */
	font-family: "Nunito Sans";
	font-style: normal;
	font-weight: 500;
	line-height: 130%;
}

/* === BRAND BLOCKS === */
.brand-block {
	display: grid;
	grid-template-columns: 25rem 1fr;
	min-height: 18.75rem;
	margin-bottom: 3rem;
}

.brand-block.rev {
	grid-template-columns: 1fr 25rem;
}

/* Logo column */
.brand-logo-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	padding: 2.25rem 1.5rem;
}

.brand-logo-col img {
	max-width: 18.4375rem;
	max-height: 19.3125rem;
	width: auto;
	height: auto;
}

/* Content column — flex row: text | product image */
.brand-content-col {
	display: flex;
	align-items: stretch;
	gap: 0;
	overflow: visible;
	position: relative;
	isolation: isolate; /* contains z-index stacking for brand-prod */
}

.brand-text {
	flex: 1;
	padding: 2.75rem 2.5rem 2.5rem 3rem;
}

.brand-text h2 {
	font-size: 2.375rem;
	margin-bottom: 0.625rem;
	color: var(--white, #FFF);
	/* H3 */
	font-family: "Nunito Sans";
	font-style: normal;
	font-weight: 700;
	line-height: 110%;
}

.brand-text .brand-lead {
	margin-bottom: 1rem;
	font-size: 1rem;
	color: var(--white, #FFF);
	/* Body semi bold */
	font-family: "Nunito Sans";
	font-style: normal;
	font-weight: 700;
	line-height: 130%;
}

.brand-text h3 {
	margin: 1.125rem 0 0.5rem;
	color: var(--white, #FFF);
	/* H2 white small */
	font-family: "Nunito Sans";
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: 110%;
}

.brand-text p {
	font-size: 1.125rem;
	margin-bottom: 0.625rem;
	color: var(--white, #FFF);
	/* Body semi */
	font-family: "Nunito Sans";
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
}

.brand-text ul {
	list-style: none;
	margin-bottom: 0.875rem;
}

.brand-text ul li {
	position: relative;
	padding-left: 1rem;
	margin-bottom: 0.3125rem;
	font-size: 1.125rem;
	color: var(--white, #FFF);
	/* Liste klein */
	font-family: "Nunito Sans";
	font-style: normal;
	font-weight: 600;
	line-height: 110%;
}

.brand-text ul li::before {
	content: '•';
	position: absolute;
	left: 0;
}

.brand-text .tagline-b {
	font-weight: 700;
	margin-bottom: 1.125rem;
	font-size: 0.95rem;
}

.brand-text-internal{max-width: 70%;}

/* Product image — fixed in brand-content-col regardless of viewport width */
.brand-prod-1, .brand-prod-2, .brand-prod-3, .brand-prod-4, .brand-prod-5{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: auto;
	z-index: -1; /* behind text content */
	display: block;
	object-fit: contain;
	object-position: right center;
}

.brand-prod-1 { margin-top: 12rem; }
.brand-prod-2 { margin-top: 2rem; }
.brand-prod-3 { margin-top: 4rem; }
.brand-prod-4 { margin-top: 2rem; }
.brand-prod-5 { margin-top: 2rem; }

/* Brand colors */
.bellfor-logo-col  { background: #fff; }
.bellfor-col       { background: #78AA28; color: #fff; }

.ilmc-col          { background: #E79038; color: #fff; }
.ilmc-logo-col     { background: #f7f7f7; }

.marsavet-logo-col { background: #fff; }
.marsavet-col      { background: #00506E; color: #fff; }

.aquaris-col       { background: #0089CF; color: #fff; }
.aquaris-logo-col  { background: #f0f8ff; }

.kijako-logo-col   { background: #f5f0ec; }
.kijako-col        { background: #CE1531; color: #fff; }

/* === DER ZOO EXPERTE === */
#zooexperte {
	background: #fff;
	padding: 3.75rem 2.75rem;
}

.zoo-img-wrap {
	overflow: hidden;
	border-radius: 0.25rem;
}

.zoo-img-wrap img {
	width: 100%;
	height: auto;
	display: block;
}

.zoo-content {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
}

.zoo-content img {
	height: auto;
}

.zoo-content p {
	font-size: 1.875rem;
	color: var(--gray, #555F64);
	text-align: center;
	font-family: "Nunito Sans";
	font-style: normal;
	font-weight: 700;
	line-height: 130%; /* 39px */
}

/* === KONTAKT FORM === */
#kontakt {
	background: linear-gradient(to bottom, #F8AC23, #E79038);
	padding: 4.375rem 2.75rem;
	margin-bottom: 0.5rem;
}

.kontakt {
	display: flex;
	flex-direction: column;
}

.kontakt-left {
	overflow: hidden;
	margin-bottom: 1.375rem;
	flex: 0 0 50%;
	max-width: 50%;
}

.kontakt-right {
	color: #fff;
	padding: 0rem 0rem 0rem 1.5rem;
	flex: 0 0 50%;
	max-width: 50%;
}
.kontakt-right-ceo {
	margin-top: 2rem;
	font-weight: 800;
}

.kontakt-left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kontakt h2 {
	font-size: 2.5rem;
	color: #fff;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.kontakt h3 {
	font-size: 1.5rem;
	color: var(#fff);
	font-weight: 700;
	margin-bottom: 0.5rem;
}
.kontakt p {
	font-size: 0.97rem;
}

.kontakt-internal {
	display: flex;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.875rem;
	margin-bottom: 0.875rem;
}

.form-g {
	margin-bottom: 0.875rem;
}

.form-g input,
.form-g textarea {
	width: 100%;
	padding: 0.8125rem 0.9375rem;
	border: 0.0625rem solid #d0d0d0;
	border-radius: 0.25rem;
	font-size: 0.95rem;
	font-family: inherit;
	color: #333;
	transition: border 0.2s;
}

.form-g input:focus,
.form-g textarea:focus {
	outline: none;
	border-color: var(--green);
}

.form-g textarea {
	height: 6.875rem;
	resize: vertical;
}

/* === PHONE COUNTRY PICKER ======================================= */
.phone-row {
	display: flex;
	position: relative;
}

/* Wrapper: holds trigger button + dropdown */
.phone-picker {
	position: relative;
	flex-shrink: 0;
}

/* Trigger button */
.phone-pre {
	display: flex;
	align-items: center;
	gap: 0.3125rem;
	height: 100%;
	min-height: 2.75rem;   /* 44 px touch target */
	padding: 0 0.625rem;
	border: 0.0625rem solid #d0d0d0;
	border-right: none;
	border-radius: 0.25rem 0 0 0.25rem;
	background: #f0f0f0;
	font-size: 0.875rem;
	font-family: inherit;
	white-space: nowrap;
	color: #555;
	cursor: pointer;
	user-select: none;
}

.phone-pre:hover { background: #e8e8e8; }

.phone-pre:focus-visible {
	outline: 2px solid var(--green);
	outline-offset: -1px;
	z-index: 1;
}

.phone-pre-flag { font-size: 1.1em; line-height: 1; }

.phone-pre-arrow {
	flex-shrink: 0;
	transition: transform 0.18s ease;
}

.phone-picker.open .phone-pre-arrow {
	transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
	.phone-pre-arrow { transition: none; }
}

/* Dropdown panel */
.phone-dropdown {
	position: absolute;
	top: calc(100% + 3px);
	left: 0;
	z-index: 900;
	width: min(17rem, 92vw);
	background: #fff;
	border: 0.0625rem solid #c8c8c8;
	border-radius: 0.375rem;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.13);
	overflow: hidden;
}

/* Sticky search bar */
.phone-search-wrap {
	position: sticky;
	top: 0;
	z-index: 1;
	background: #fff;
	padding: 0.5rem 0.5rem;
	border-bottom: 0.0625rem solid #e8e8e8;
}

.phone-search {
	display: block;
	width: 100%;
	padding: 0.4375rem 0.625rem;
	border: 0.0625rem solid #d0d0d0;
	border-radius: 0.25rem;
	font-size: 0.875rem;
	font-family: inherit;
	background: #fafafa;
	box-sizing: border-box;
}

.phone-search:focus {
	outline: 2px solid var(--green);
	outline-offset: 0;
	border-color: var(--green);
}

/* Scrollable options list */
.phone-list {
	list-style: none;
	margin: 0;
	padding: 0.25rem 0;
	max-height: 300px;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.phone-opt {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 0.75rem;
	cursor: pointer;
	font-size: 0.875rem;
	color: #333;
	min-height: 2.25rem;
}

.phone-opt:hover,
.phone-opt:focus { background: #f0f7e6; outline: none; }

.phone-opt:focus-visible {
	background: #f0f7e6;
	outline: 2px solid var(--green);
	outline-offset: -2px;
}

.phone-opt--active {
	background: #e8f3d4;
	font-weight: 600;
}

.phone-opt-flag {
	font-size: 1.1em;
	line-height: 1;
	flex-shrink: 0;
}

.phone-opt-name {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.phone-opt-code {
	color: #777;
	font-size: 0.8125rem;
	flex-shrink: 0;
}

/* Tel input (right part of the row) */
.phone-row .phone-input {
	border-radius: 0 0.25rem 0.25rem 0;
	flex: 1;
	min-width: 0;
}
/* ================================================================ */

.btn-submit {
	width: 100%;
	background: #8CBE3C;
	color: #fff;
	border: none;
	padding: 0.9375rem;
	border-radius: 0.25rem;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: background 0.2s;
	margin-top: 0.25rem;
}

.btn-submit:hover {
	background: var(--green-dark);
}

/* === LEGAL PAGES (Impressum / Datenschutz) ====================== */
.legal-page {
	padding: var(--section-py) 0;
	background: #fff;
	min-height: 60vh;
}

.legal-page h1 {
	font-family: "Rokkitt", serif;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	color: var(--green);
	margin-bottom: 2rem;
}

.legal-page h2 {
	font-family: "Rokkitt", serif;
	font-size: clamp(1.1rem, 2.5vw, 1.375rem);
	font-weight: 700;
	color: #333;
	margin: 2rem 0 0.75rem;
}

.legal-page h3 {
	font-size: 1rem;
	font-weight: 700;
	color: #444;
	margin: 1.25rem 0 0.5rem;
}

.legal-page h4 {
	font-size: 0.95rem;
	font-weight: 700;
	color: #555;
	margin: 1rem 0 0.4rem;
}

.legal-page p {
	margin-bottom: 0.75rem;
	line-height: 1.7;
	color: #333;
	font-size: 0.95rem;
}

.legal-page a { color: var(--green); text-decoration: underline; }
.legal-page a:hover { color: var(--green-dark); }

.legal-page ul {
	margin: 0.5rem 0 1rem 1.5rem;
}

.legal-page ul li {
	margin-bottom: 0.4rem;
	line-height: 1.6;
	font-size: 0.95rem;
	color: #333;
}

.legal-back {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--green);
	text-decoration: none;
	margin-bottom: 2rem;
}

.legal-back:hover { color: var(--green-dark); }
/* ================================================================ */

/* === FORM NOTIFICATIONS (CSS :target — no JS) === */
.form-notify {
	display: none;
	padding: 1rem 1.5rem;
	border-radius: 0.375rem;
	margin-bottom: 1.25rem;
	font-size: 1rem;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
	line-height: 1.5;
}

/* Visible when URL fragment matches (#form-success / #form-error) */
.form-notify:target {
	display: block;
}

.form-notify--ok {
	background: #e8f7cf;
	color: #2d5a0f;
	border: 1.5px solid #8cbe3c;
}

.form-notify--err {
	background: #fde8e8;
	color: #721c24;
	border: 1.5px solid #c0292b;
}

.form-notify a {
	color: inherit;
	text-decoration: underline;
}

/* === FORM AJAX BANNER (appears in-place, no scroll) ============ */
/*   Injected by JS directly after .btn-submit.                    */
/*   Uses HTML [hidden] attribute for show/hide — no layout shift. */
.form-ajax-banner {
	margin-top: 1rem;
	padding: 0.9rem 1.25rem;
	border-radius: 0.375rem;
	font-size: 0.95rem;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
	line-height: 1.5;
}

.form-ajax-banner--ok {
	background: #e8f7cf;
	color: #2d5a0f;
	border: 1.5px solid #8cbe3c;
}

.form-ajax-banner--err {
	background: #fde8e8;
	color: #721c24;
	border: 1.5px solid #c0292b;
}

/* Honeypot — visually hidden but NOT display:none (bots skip those) */
.hp-field {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
	opacity: 0;
	pointer-events: none;
}

/* === FOOTER === */
footer {
	background: #78AA28;
	color: #fff;
	padding: 2.625rem 2.75rem 0;
}

.footer-grid {
	max-width: 1512px;
	margin: 0 auto 1.75rem;
	display: grid;
	grid-template-columns: 1fr 1.2fr 1fr;
	gap: 2.5rem;
}

.foot-logo {
	margin-bottom: 0.875rem;
}

.foot-logo img {
	width: auto;
}

.foot-addr {
	color: var(--white, #FFF);
	font-family: "Nunito Sans";
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
}

.foot-addr strong {
	display: block;
	color: var(--Corporate-Green-hell, #D7ECB5);
	font-family: "Nunito Sans";
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 800;
	line-height: 130%;
}

.foot-contact {
	color: var(--Corporate-Green-hell, #D7ECB5);
	font-family: "Nunito Sans";
	font-size: 1.4375rem;
	font-style: normal;
	font-weight: 700;
	line-height: 130%;
}

.foot-phone {
	color: var(--white, #FFF);
	font-family: "Nunito Sans";
	font-size: 2rem;
	font-style: normal;
	font-weight: 800;
	line-height: 105%;
	margin-top: 0.375rem;
}

.foot-brands h4 {
	color: var(--Corporate-Green-hell, #D7ECB5);
	font-family: "Nunito Sans";
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 800;
	line-height: 130%;
	margin-bottom: 0.625rem;
}

.foot-brands a {
	display: block;
	color: var(--white, #FFF);
	font-family: "Nunito Sans";
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
	margin-bottom: 0.25rem;
}

.foot-brands a:hover {
	color: #fff;
}

.foot-bottom {
	background: #387106;
	margin: 0 -2.75rem; /* full screen width, breaking out of footer padding */
	border-top: 0.0625rem solid rgba(255, 255, 255, 0.28);
	padding: 1.25rem 0 1.25rem;
}

.foot-bottom-inner {
	max-width: 1512px; /* matches .container */
	margin: 0 auto;
	padding: 0 2.75rem; /* matches .container padding */
	display: flex;
	justify-content: space-between;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.78);
}

.foot-bottom a {
	color: rgba(255, 255, 255, 0.78);
	margin-right: 1.125rem;
}

.foot-bottom a:hover {
	color: #fff;
}

/* ============================================================
   RESPONSIVE — MOBILE FIRST
   Breakpoints: 480 · 640 · 768 · 1024 · 1440
   ============================================================ */

/* ── 0. Root fluid tokens ───────────────────────────────────── */
:root {
	--pad-x:      clamp(1rem, 4vw, 2.75rem);
	--section-py: clamp(2rem, 5vw, 4.375rem);
}

/* ── 1. Fluid spacing — applied globally ────────────────────── */
header {
	padding-left:  var(--pad-x);
	padding-right: var(--pad-x);
}

.container {
	padding-left:  var(--pad-x);
	padding-right: var(--pad-x);
}

#intro        { padding: var(--section-py) var(--pad-x); }
#ueber-uns    { padding: var(--section-py) var(--pad-x); }
#philosophie  { padding: var(--section-py) var(--pad-x); }
#haendler     { padding: var(--section-py) var(--pad-x); }
#was-marsapet { padding: var(--section-py) var(--pad-x); }
#marken-intro { padding: var(--section-py) var(--pad-x); }
#zooexperte   { padding: var(--section-py) var(--pad-x); }
#kontakt      { padding: var(--section-py) var(--pad-x); }

footer {
	padding-top:   var(--section-py);
	padding-left:  var(--pad-x);
	padding-right: var(--pad-x);
}

/* foot-bottom full-width trick: negative margin = footer padding */
.foot-bottom {
	margin-left:  calc(-1 * var(--pad-x));
	margin-right: calc(-1 * var(--pad-x));
}

.foot-bottom-inner {
	padding-left:  var(--pad-x);
	padding-right: var(--pad-x);
}

/* ── 2. Fluid typography ─────────────────────────────────────── */
#intro h1,
#marken-intro h2 {
	font-size: clamp(1.75rem, 4vw + 0.5rem, 3.5rem);
}

#intro h2 {
	font-size: clamp(1.125rem, 2.5vw + 0.25rem, 2rem);
}

.brand-text h2 {
	font-size: clamp(1.25rem, 2.5vw + 0.25rem, 2.375rem);
}

.haendler-h,
.phil-content h2 {
	font-size: clamp(1.375rem, 2vw + 0.5rem, 2.375rem);
}

#was-marsapet > .container > h2 {
	font-size: clamp(1.5rem, 3vw + 0.25rem, 2.813rem);
}

.kontakt h2 {
	font-size: clamp(1.25rem, 3vw + 0.25rem, 2.5rem);
}

/* ── 3. Hamburger button (hidden on desktop) ─────────────────── */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0.5rem;
	border: none;
	background: transparent;
	cursor: pointer;
	border-radius: 0.25rem;
	flex-shrink: 0;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

.nav-toggle span {
	display: block;
	width: 100%;
	height: 0.1875rem;
	background: #78AA28;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.2s ease;
	transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* ── 4. MOBILE  (max 767px) ──────────────────────────────────── */
@media (max-width: 767px) {

	/* Safe-area padding on header */
	header {
		padding-left:  max(1rem, env(safe-area-inset-left, 1rem));
		padding-right: max(1rem, env(safe-area-inset-right, 1rem));
	}

	/* Show hamburger */
	.nav-toggle { display: flex; }

	/* Collapse nav off-screen by default */
	nav {
		display: none;
		position: fixed;
		inset: 4.75rem 0 auto 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0.5rem 1.5rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
		background: #fff;
		box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.13);
		z-index: 999;
		overflow-y: auto;
		max-height: calc(100dvh - 4.75rem);
	}

	nav.nav-open { display: flex; }

	nav a {
		display: block;
		width: 100%;
		padding: 0.875rem 0;
		font-size: 1rem;
		border-bottom: 1px solid rgba(120, 170, 40, 0.18);
		min-height: 2.75rem; /* 44px touch target */
	}

	.nav-flag {
		padding: 0.875rem 0;
	}

	/* Two-col → single column */
	.two-col {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	/* Brand blocks: single column, stacked */
	.brand-block,
	.brand-block.rev {
		grid-template-columns: 1fr;
		min-height: unset;
		margin-bottom: 1rem;
	}

	/* On .rev blocks: content first, logo second */
	.brand-block.rev .brand-content-col { order: 1; }
	.brand-block.rev .brand-logo-col    { order: 2; }

	.brand-logo-col {
		padding: 1.5rem 1.5rem;
		min-height: 9rem;
	}

	.brand-text {
		padding: 1.5rem 1rem 1.25rem;
	}

	/* Hide absolutely-positioned product images on mobile */
	/*.brand-prod-1,
	.brand-prod-2,
	.brand-prod-3,
	.brand-prod-4,
	.brand-prod-5 {
		display: none;
	}*/
	/* If keeping product images: adjust position + size for mobile */
.brand-prod-1,
.brand-prod-2,
.brand-prod-3,
.brand-prod-4,
.brand-prod-5 {
	position: relative;
	top: 0;
	right: 0;
	bottom: 0;
	width: 60%;
	z-index: -1;
	display: block;
	object-fit: contain;
	object-position: right center;
	margin-left: 11rem;
	margin-top: -10rem;
}
	/* Let text fill full width without image cutout */
	.brand-text-internal { max-width: 100%; }

	/* Three cards → 1 column */
	.three-cards { grid-template-columns: 1fr; }

	/* Quote: static layout, solid green background */
	.quote-bg-img  { display: none; }
	#quote         { background: #3d6f15; }
	#quote .container { position: static; display: block; }
	.quote-overlay {
		width: 100%;
		max-width: 100%;
		padding: 2.5rem 0;
	}

	/* Kontakt internal: stack portrait + text */
	.kontakt-internal { flex-direction: column; }
	.kontakt-left {
		flex: none;
		max-width: 100%;
		width: 100%;
		margin-bottom: 1rem;
	}
	.kontakt-right {
		flex: none;
		max-width: 100%;
		width: 100%;
		padding-left: 0;
	}

	/* Contact form: single column */
	.form-row { grid-template-columns: 1fr; }

	/* Footer grid: single column */
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		margin-bottom: 1.25rem;
	}

	/* Foot-bottom: stack Impressum / copyright */
	.foot-bottom-inner {
		flex-direction: column;
		align-items: center;
		gap: 0.375rem;
		text-align: center;
		padding-bottom: env(safe-area-inset-bottom, 0.5rem);
	}

	/* Touch targets for interactive elements */
	.sl-btn    { width: 2.5rem; height: 2.5rem; min-height: 2.75rem; }
	.btn-submit { min-height: 2.75rem; }
}

/* ── 5. SMALL TABLET  (480px+) ───────────────────────────────── */
@media (min-width: 480px) {
	.three-cards  { grid-template-columns: repeat(2, 1fr); }
	.footer-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
	.val-card-title {
		font-size: 1.0rem;
		text-transform: uppercase;
		color: var(--Corporate-Green-dunkel, #78AA28);
		/* H5 */
		font-family: "Nunito Sans";
		font-style: normal;
		font-weight: 700;
		line-height: 130%;
	}

		.footer-grid {
			max-width: 1512px;
			margin: 0 auto 1.75rem;
			display: flex;
			grid-template-columns: 1fr 1.2fr 1fr;
			/* gap: 2.5rem; */
			flex-direction: column;
		}
}

/* ── 6. TABLET  (768px+) ─────────────────────────────────────── */
@media (min-width: 768px) {

	/* Restore desktop nav */
	.nav-toggle { display: none; }

	nav {
		display: flex;
		position: static;
		flex-direction: row;
		align-items: center;
		padding: 0;
		box-shadow: none;
		background: transparent;
		gap: 2.375rem;
		max-height: unset;
		overflow: visible;
	}

	nav a {
		display: inline;
		width: auto;
		padding: 0;
		border: none;
		font-size: 1.125rem;
		min-height: unset;
	}

	/* Two-col: restore 2-column with medium gap */
	.two-col {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}

	/* Brand blocks: 2-column (slightly narrower logo col) */
	.brand-block     { grid-template-columns: 18rem 1fr; margin-bottom: 1.5rem; }
	.brand-block.rev { grid-template-columns: 1fr 18rem; }
	.brand-block.rev .brand-content-col { order: unset; }
	.brand-block.rev .brand-logo-col    { order: unset; }

	/* Show product images */
	.brand-prod-1,
	.brand-prod-2,
	.brand-prod-3,
	.brand-prod-4,
	.brand-prod-5 { display: block; }

	.brand-text-internal { max-width: 70%; }

	/* Restore quote overlay */
	.quote-bg-img  { display: block; }
	#quote         { background: transparent; }
	#quote .container {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		display: flex;
		align-items: center;
	}
	.quote-overlay {
		width: 50%;
		max-width: 47.25rem;
		padding: 2.813rem 4rem 2.813rem 0;
	}

	/* Kontakt: restore side-by-side */
	.kontakt-internal { flex-direction: row; }
	.kontakt-left     { flex: 0 0 50%; max-width: 50%; margin-bottom: 1.375rem; }
	.kontakt-right    { flex: 0 0 50%; max-width: 50%; padding-left: 1.5rem; }

	/* Form: restore 2-column */
	.form-row { grid-template-columns: 1fr 1fr; }

	/* Footer: restore 3-column */
	.footer-grid { grid-template-columns: 1fr 1.2fr 1fr; }
}

/* ── 7. DESKTOP  (1024px+) ───────────────────────────────────── */
@media (min-width: 1024px) {
	.three-cards { grid-template-columns: repeat(3, 1fr); }

	.brand-block     { grid-template-columns: 25rem 1fr; margin-bottom: 3rem; }
	.brand-block.rev { grid-template-columns: 1fr 25rem; }

	.two-col { gap: 4rem; }

	.quote-overlay { padding: 2.813rem 7.438rem 2.813rem 0; }
}

/* ── 8. LANDSCAPE PHONE (short viewport) ─────────────────────── */
@media (max-height: 500px) and (orientation: landscape) {
	header { height: 3.5rem; }

	nav {
		inset: 3.5rem 0 auto 0;
		max-height: calc(100dvh - 3.5rem);
		-webkit-overflow-scrolling: touch;
	}
}
