/* ==========================================================================
   Neue Heckinghauser Apotheke – Theme-Styles
   ========================================================================== */

/* Fonts (lokal gehostet, DSGVO-konform) */
@font-face {
	font-family: "Figtree";
	src: url("../fonts/figtree-latin-wght-normal.woff2") format("woff2");
	font-weight: 300 900;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: "Figtree";
	src: url("../fonts/figtree-latin-ext-wght-normal.woff2") format("woff2");
	font-weight: 300 900;
	font-display: swap;
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
	font-family: "Fraunces";
	src: url("../fonts/fraunces-latin-wght-normal.woff2") format("woff2");
	font-weight: 300 800;
	font-display: swap;
}

:root {
	--green-950: #0a2e1e;
	--green-900: #0d3b26;
	--green-800: #11492f;
	--green-700: #006633;
	--green-500: #39a935;
	--green-400: #5cbf55;
	--green-100: #e5f1e1;
	--green-50: #f1f7ee;
	--cream: #faf8f3;
	--sand: #f2eee4;
	--white: #fff;
	--ink: #14231b;
	--muted: #56655c;
	--line: rgba(20, 35, 27, 0.1);
	--red: #e2001a;
	--blue: #3f8fb0;

	--font-sans: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--font-serif: "Fraunces", Georgia, "Times New Roman", serif;

	--radius-sm: 10px;
	--radius: 18px;
	--radius-lg: 28px;
	--shadow-sm: 0 1px 2px rgba(13, 59, 38, 0.06), 0 2px 8px rgba(13, 59, 38, 0.05);
	--shadow: 0 2px 4px rgba(13, 59, 38, 0.04), 0 12px 32px rgba(13, 59, 38, 0.09);
	--shadow-lg: 0 24px 60px rgba(13, 59, 38, 0.16);

	--container: 1200px;
	--gutter: clamp(16px, 4vw, 32px);
	--section: clamp(64px, 9vw, 120px);
	--header-h: 76px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img, svg, video, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--green-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green-900); }
p { margin: 0 0 1em; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 0.5em; line-height: 1.15; color: var(--green-950); }
ul, ol { padding: 0; margin: 0; }
button, input, textarea, select { font: inherit; color: inherit; }
address { font-style: normal; }
:focus-visible { outline: 3px solid var(--green-500); outline-offset: 3px; border-radius: 6px; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
	position: absolute; left: 16px; top: -100px; z-index: 1000;
	background: var(--green-900); color: #fff; padding: 12px 18px; border-radius: var(--radius-sm);
}
.skip-link:focus { top: 16px; color: #fff; }

/* Layout ----------------------------------------------------------------- */
.container { width: 100%; max-width: calc(var(--container) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: calc(760px + 2 * var(--gutter)); }
.container--mid { max-width: calc(1000px + 2 * var(--gutter)); }

.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: clamp(32px, 5vw, 56px); }
.section--flush-top { padding-top: 0; }
.section--tint { background: var(--green-50); }
.section--dark { background: var(--green-900); color: rgba(255, 255, 255, 0.82); }
.section--dark h2, .section--dark h3 { color: #fff; }

.section__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--split { max-width: none; display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 20px; }
.section__head--split > div { max-width: 680px; }
.section__lead { font-size: 1.125em; color: var(--muted); margin: 0; }
.section--dark .section__lead { color: rgba(255, 255, 255, 0.75); }

/* Typography ------------------------------------------------------------- */
.eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
	color: var(--green-500); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
.section__head--center .eyebrow::before { display: none; }
.eyebrow--light { color: var(--green-400); }
.eyebrow--blue { color: var(--blue); text-transform: none; letter-spacing: 0; font-size: 1.05rem; font-family: var(--font-serif); font-weight: 600; }
.eyebrow--blue::before { display: none; }

.h2, .h3, .hero__title, .page-hero__title, .article__title {
	font-family: var(--font-serif);
	font-weight: 500;
	letter-spacing: -0.015em;
	font-variation-settings: "SOFT" 50, "opsz" 72;
}
.h2 { font-size: clamp(1.9rem, 1.4rem + 2vw, 2.9rem); }
.h3 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem); }
.h4 { font-size: 1.05rem; font-family: var(--font-sans); font-weight: 700; display: flex; align-items: center; gap: 8px; }

/* Icons ------------------------------------------------------------------ */
.icon { width: 24px; height: 24px; flex: none; }
.icon--sm { width: 18px; height: 18px; }
.icon--xs { width: 14px; height: 14px; }

/* Buttons ---------------------------------------------------------------- */
.btn {
	--btn-bg: var(--green-700);
	--btn-fg: #fff;
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	padding: 13px 22px; min-height: 48px;
	border-radius: 999px; border: 1.5px solid transparent;
	background: var(--btn-bg); color: var(--btn-fg);
	font-weight: 650; font-size: 0.975rem; line-height: 1.2; text-decoration: none; white-space: nowrap;
	cursor: pointer;
	transition: transform 0.25s var(--ease), background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-2px); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn--primary { box-shadow: 0 6px 18px rgba(0, 102, 51, 0.25); }
.btn--primary:hover { --btn-bg: var(--green-900); box-shadow: 0 10px 26px rgba(0, 102, 51, 0.3); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--green-900); border-color: rgba(13, 59, 38, 0.25); }
.btn--ghost:hover { --btn-bg: var(--green-900); --btn-fg: #fff; border-color: var(--green-900); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--green-900); }
.btn--light:hover { --btn-bg: var(--green-100); }
.btn--outline-light { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255, 255, 255, 0.4); }
.btn--outline-light:hover { --btn-bg: #fff; --btn-fg: var(--green-900); }
.btn--link { --btn-bg: transparent; --btn-fg: var(--green-700); padding-inline: 4px; min-height: 0; }
.btn--link:hover { text-decoration: underline; transform: none; }
.btn--lg { padding: 16px 28px; font-size: 1.03rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 28px; }

.chip {
	display: inline-flex; align-items: center;
	padding: 4px 12px; border-radius: 999px;
	background: var(--green-100); color: var(--green-800);
	font-size: 0.78rem; font-weight: 650; text-decoration: none; line-height: 1.5;
}
a.chip:hover { background: var(--green-700); color: #fff; }
.chip.is-active { background: var(--green-900); color: #fff; }

/* Topbar & Header -------------------------------------------------------- */
.topbar { background: var(--green-950); color: rgba(255, 255, 255, 0.8); font-size: 0.85rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar a { color: inherit; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: #fff; }
.topbar__links { display: flex; gap: 24px; }
.status { display: inline-flex; align-items: center; gap: 9px; margin: 0; font-weight: 550; }
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: #9aa59e; position: relative; }
.status.is-open .status__dot { background: #4ade80; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); animation: pulse 2.2s infinite; }
.status.is-closed .status__dot { background: #f87171; }
@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
	70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
	100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(250, 248, 243, 0.86);
	backdrop-filter: saturate(1.4) blur(14px);
	-webkit-backdrop-filter: saturate(1.4) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(13, 59, 38, 0.06); }
.site-header__inner { display: flex; align-items: center; gap: 24px; min-height: var(--header-h); }
.brand { flex: none; display: block; }
.brand img { width: clamp(220px, 24vw, 300px); height: auto; }

.nav { margin-left: auto; }
.nav__list { list-style: none; display: flex; align-items: center; gap: 4px; }
.nav__list a {
	display: inline-flex; align-items: center; gap: 5px;
	padding: 10px 14px; border-radius: 999px;
	color: var(--ink); text-decoration: none; font-weight: 550; font-size: 0.95rem;
	transition: background-color 0.2s, color 0.2s;
}
.nav__list a:hover, .nav__list .current-menu-item > a, .nav__list a[aria-current] { background: var(--green-100); color: var(--green-900); }
.nav__list .icon { opacity: 0.5; }
.nav__mobile-extra { display: none; }

.btn--call { padding: 11px 18px; min-height: 44px; }
.nav-toggle {
	display: none; margin-left: auto;
	width: 46px; height: 46px; border-radius: 50%;
	border: 1px solid var(--line); background: #fff; color: var(--green-900);
	align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle__close { display: none; }
.nav-open .nav-toggle__open { display: none; }
.nav-open .nav-toggle__close { display: inline-flex; }

@media (max-width: 1100px) {
	.btn--call span { display: none; }
	.btn--call { width: 46px; padding: 0; }
	.nav__list a { padding: 10px 11px; }
}
@media (max-width: 960px) {
	:root { --header-h: 66px; }
	.topbar__links a:first-child { display: none; }
	.nav-toggle { display: inline-flex; }
	.btn--call { display: none; }
	.nav {
		position: fixed; inset: var(--nav-top, var(--header-h)) 0 0 0; z-index: 90;
		background: var(--cream);
		padding: 24px var(--gutter) 40px; overflow-y: auto;
		opacity: 0; visibility: hidden; transform: translateY(-8px);
		transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
	}
	.nav-open .nav { opacity: 1; visibility: visible; transform: none; }
	.nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
	.nav__list a { display: flex; font-size: 1.35rem; font-family: var(--font-serif); font-weight: 500; padding: 14px 8px; border-radius: 12px; border-bottom: 1px solid var(--line); }
	.nav__mobile-extra { display: grid; gap: 24px; margin-top: 28px; }
	body.nav-open { overflow: hidden; }
	/* backdrop-filter würde das fixierte Menü an die Kopfzeile binden */
	.nav-open .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--cream); }
}
@media (max-width: 600px) {
	.topbar { font-size: 0.8rem; }
	.topbar__links { display: none; }
	.brand img { width: 210px; }
}

/* Hero ------------------------------------------------------------------- */
.hero { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(24px, 3vw, 40px); position: relative; overflow-x: clip; }
.hero::before {
	content: ""; position: absolute; z-index: -1;
	width: 720px; height: 720px; right: -220px; top: -260px;
	background: radial-gradient(circle, rgba(57, 169, 53, 0.16), transparent 65%);
	pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: end; }
.hero__title { font-size: clamp(2.5rem, 1.6rem + 4vw, 4.6rem); line-height: 1.03; margin-bottom: 22px; }
.hero__title em { font-style: italic; color: var(--green-500); font-weight: 400; }
.hero__lead { font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem); color: var(--muted); max-width: 34ch; font-family: var(--font-serif); font-style: italic; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero__card {
	background: #fff; border-radius: var(--radius-lg); padding: 26px 28px;
	box-shadow: var(--shadow); border: 1px solid var(--line);
}
.hero__card-title { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--green-900); margin-bottom: 12px; }
.hero__card-addr { display: flex; gap: 8px; align-items: flex-start; margin: 16px 0 0; padding-top: 16px; border-top: 1px dashed var(--line); font-size: 0.92rem; color: var(--muted); }
.hero__card-addr .icon { margin-top: 3px; color: var(--green-500); }

.hero__image { margin: clamp(40px, 6vw, 64px) 0 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.hero__image img { width: 100%; aspect-ratio: 2000 / 614; object-fit: cover; }

@media (max-width: 860px) {
	.hero__grid { grid-template-columns: 1fr; }
	.hero__image img { aspect-ratio: 16 / 8; object-position: 50% 30%; }
}

/* Öffnungszeiten --------------------------------------------------------- */
.hours { list-style: none; display: grid; gap: 2px; font-size: 0.95rem; }
.hours li { display: flex; justify-content: space-between; gap: 16px; padding: 6px 10px; border-radius: 8px; }
.hours li span:last-child { font-variant-numeric: tabular-nums; color: var(--muted); }
.hours li.is-today { background: var(--green-100); font-weight: 700; color: var(--green-900); }
.hours li.is-today span:last-child { color: var(--green-900); }
.hours--footer li { padding-inline: 0; border-radius: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.hours--footer li span:last-child { color: rgba(255, 255, 255, 0.7); }
.hours--footer li.is-today { background: none; color: #fff; }
.hours--footer li.is-today span:last-child { color: var(--green-400); }
.hours--compact { font-size: 0.9rem; }

/* Schnellzugriff --------------------------------------------------------- */
.quick { padding-block: 24px 8px; }
.quick__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.quick__item {
	display: flex; align-items: center; gap: 14px;
	padding: 18px 20px; border-radius: var(--radius);
	background: #fff; border: 1px solid var(--line);
	text-decoration: none; color: var(--ink);
	transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.quick__item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; color: var(--ink); }
.quick__item strong { display: block; font-weight: 700; line-height: 1.3; }
.quick__item small { display: block; color: var(--muted); font-size: 0.85rem; }
.quick__icon {
	flex: none; width: 48px; height: 48px; border-radius: 14px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--green-100); color: var(--green-700);
	transition: background-color 0.3s, color 0.3s;
}
.quick__item:hover .quick__icon { background: var(--green-700); color: #fff; }
@media (max-width: 960px) { .quick__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) {
	.quick__grid { gap: 10px; }
	.quick__item { flex-direction: column; align-items: flex-start; padding: 16px; gap: 10px; }
}

/* Promo (Neu im Sortiment) ----------------------------------------------- */
.promo {
	display: grid; grid-template-columns: 1.5fr 1fr; align-items: center;
	background: #fff; border-radius: var(--radius-lg); overflow: hidden;
	box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.promo__media { align-self: stretch; }
.promo__media img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; object-position: 30% 50%; }
.promo__text { padding: clamp(28px, 4vw, 52px); }
.promo__text p:last-child { margin: 0; color: var(--muted); font-size: 1.05rem; }
@media (max-width: 860px) { .promo { grid-template-columns: 1fr; } }

/* Feature-Blöcke --------------------------------------------------------- */
.feature { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 88px); align-items: center; margin-bottom: clamp(64px, 9vw, 112px); }
.feature--reverse .feature__media { order: 2; }
.feature__media { position: relative; }
.feature__media > img { width: 100%; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.feature__media--plain > img { box-shadow: none; background: none; max-width: 520px; margin-inline: auto; filter: drop-shadow(0 30px 40px rgba(13, 59, 38, 0.15)); }
.feature__badge {
	position: absolute; left: -16px; bottom: -24px;
	background: #fff; padding: 14px 18px; border-radius: var(--radius); box-shadow: var(--shadow);
	width: min(62%, 280px);
}
.feature__text > p { color: var(--muted); }
@media (max-width: 860px) {
	.feature { grid-template-columns: 1fr; }
	.feature--reverse .feature__media { order: 0; }
	.feature__badge { left: 12px; }
}

.steps { list-style: none; counter-reset: step; display: grid; gap: 14px; margin-top: 28px; }
.steps li {
	counter-increment: step; position: relative;
	padding: 18px 20px 18px 72px; border-radius: var(--radius);
	background: #fff; border: 1px solid var(--line);
}
.steps li::before {
	content: counter(step, decimal-leading-zero);
	position: absolute; left: 20px; top: 18px;
	font-family: var(--font-serif); font-size: 1.5rem; line-height: 1; color: var(--green-500);
}
.steps strong { display: block; color: var(--green-950); margin-bottom: 2px; }
.steps span { color: var(--muted); font-size: 0.95rem; }

.callout { margin-top: 24px; padding: 22px 24px; border-radius: var(--radius); background: #fff; border-left: 4px solid var(--green-500); box-shadow: var(--shadow-sm); }
.callout__title { font-weight: 700; color: var(--green-900); margin-bottom: 6px; }
.callout p:last-child { margin: 0; color: var(--muted); }

/* Kacheln ---------------------------------------------------------------- */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tile {
	display: flex; flex-direction: column; gap: 6px;
	padding: 30px; border-radius: var(--radius-lg);
	background: #fff; border: 1px solid var(--line);
	color: var(--ink); text-decoration: none;
	transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
a.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: var(--ink); }
.tile__icon { width: 52px; height: 52px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; background: var(--green-100); color: var(--green-700); margin-bottom: 12px; }
.tile__title { font-family: var(--font-serif); font-weight: 500; font-size: 1.4rem; margin: 0 0 4px; }
.tile p { color: var(--muted); margin: 0; }
.tile__more { margin-top: auto; padding-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-weight: 650; color: var(--green-700); }
.tile__more .icon { transition: transform 0.3s var(--ease); }
a.tile:hover .tile__more .icon { transform: translateX(4px); }
.tiles--dark .tile { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.1); }
.tiles--dark .tile p { color: rgba(255, 255, 255, 0.78); }
.tiles--dark .tile__icon { background: rgba(92, 191, 85, 0.16); color: var(--green-400); }
@media (max-width: 960px) { .tiles { grid-template-columns: 1fr; } }

/* Über uns --------------------------------------------------------------- */
.about { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.about--reverse .about__media { order: 2; }
.about__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4 / 3.4; }
.about__media img.is-portrait { aspect-ratio: 4 / 5; }
.about__text > p { color: var(--muted); }
.values { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 24px; }
.values li { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; background: var(--green-100); color: var(--green-900); font-weight: 600; font-size: 0.92rem; }
.values .icon { color: var(--green-700); }
.about__sign { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.about__sign img { width: 200px; mix-blend-mode: multiply; }
@media (max-width: 860px) {
	.about { grid-template-columns: 1fr; }
	.about--reverse .about__media { order: 0; }
}

/* Team ------------------------------------------------------------------- */
.team { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.4vw, 28px); }
.team__member { text-align: center; }
.team__member img {
	width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-lg);
	margin-bottom: 14px; background: var(--green-800);
	transition: transform 0.5s var(--ease);
}
.team__member:hover img { transform: translateY(-4px) scale(1.01); }
.team__name { font-family: var(--font-serif); font-size: 1.15rem; color: #fff; margin: 0; }
.team__role { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); margin: 0; }
@media (min-width: 961px) {
	/* 4 + 3 Personen, zweite Reihe mittig */
	.team { grid-template-columns: repeat(8, 1fr); }
	.team__member { grid-column: span 2; }
	.team__member:nth-child(5) { grid-column: 2 / span 2; }
}
@media (max-width: 960px) { .team { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .team { grid-template-columns: repeat(2, 1fr); } }

/* Banner (Fahrradkurier) ------------------------------------------------- */
.banner {
	display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
	padding: clamp(24px, 4vw, 40px) clamp(24px, 4vw, 48px); border-radius: var(--radius-lg);
	background: linear-gradient(120deg, var(--green-700), var(--green-500));
	color: rgba(255, 255, 255, 0.9);
	box-shadow: 0 20px 50px rgba(0, 102, 51, 0.25);
}
.banner h2 { color: #fff; margin-bottom: 4px; }
.banner p { margin: 0; }
.banner__icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(255, 255, 255, 0.16); display: inline-flex; align-items: center; justify-content: center; color: #fff; }
.banner__icon .icon { width: 36px; height: 36px; }
@media (max-width: 760px) { .banner { grid-template-columns: 1fr; } }

/* App -------------------------------------------------------------------- */
.app { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.app__media { background: radial-gradient(circle at 50% 50%, var(--green-100), transparent 70%); padding: 20px; }
.app__media img { width: 100%; }
.app__text > p { color: var(--muted); }
.app__cta { display: flex; align-items: center; gap: 22px; margin-top: 28px; padding: 18px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); }
.app__qr { flex: none; width: 112px; }
.app__qr img { width: 100%; border-radius: 8px; }
.app__qr-hint { font-weight: 650; color: var(--green-900); margin-bottom: 10px; }
@media (max-width: 860px) { .app { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .app__cta { flex-direction: column; align-items: flex-start; } }

/* Embeds (Zwei-Klick) ---------------------------------------------------- */
.videos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 760px) { .videos { grid-template-columns: 1fr; } }
.embed {
	position: relative; width: 100%; border-radius: var(--radius-lg); overflow: hidden;
	background-color: var(--green-900); background-size: cover; background-position: center;
	box-shadow: var(--shadow);
}
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.embed__consent {
	position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
	padding: 24px; text-align: center; color: #fff;
	background: linear-gradient(180deg, rgba(10, 46, 30, 0.35), rgba(10, 46, 30, 0.82));
}
.embed__consent p { margin: 0; max-width: 42ch; }
.embed__note { font-size: 0.8rem; opacity: 0.8; }
.embed__note a { color: #fff; }
.embed__play {
	width: 72px; height: 72px; border-radius: 50%; border: 0; cursor: pointer; margin-bottom: 10px;
	background: #fff; color: var(--green-700);
	display: inline-flex; align-items: center; justify-content: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	transition: transform 0.3s var(--ease);
}
.embed__play .icon { width: 28px; height: 28px; fill: currentColor; margin-left: 4px; }
.embed__play:hover { transform: scale(1.08); }

/* Podcast ---------------------------------------------------------------- */
.podcast { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
@media (max-width: 860px) { .podcast { grid-template-columns: 1fr; } }

/* Karten (Beiträge) ------------------------------------------------------ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.cards > .reveal { display: flex; }
.card {
	position: relative; display: flex; flex-direction: column; width: 100%;
	background: #fff; border-radius: var(--radius-lg); overflow: hidden;
	border: 1px solid var(--line);
	transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__media { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--green-100); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card__media img { transform: scale(1.04); }
.card__body { display: flex; flex-direction: column; flex: 1; padding: 22px 24px 24px; }
.card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--muted); margin-bottom: 12px; }
.card__title { font-family: var(--font-serif); font-weight: 500; font-size: 1.3rem; line-height: 1.25; margin-bottom: 10px; }
.card__title a { color: var(--green-950); text-decoration: none; }
.card__title a::after { content: ""; position: absolute; inset: 0; }
.card__excerpt { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; }
.card__more { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 650; color: var(--green-700); font-size: 0.95rem; }
.card:hover .card__more .icon { transform: translateX(4px); }
.card__more .icon { transition: transform 0.3s var(--ease); }
@media (max-width: 960px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cards { grid-template-columns: 1fr; } }

/* Standort --------------------------------------------------------------- */
.location { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.location__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4 / 4.2; object-fit: cover; }
.location__text > p { color: var(--muted); }
.location__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 20px; margin-top: 28px; }
.location__grid > div { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.location__grid .h4 .icon { color: var(--green-500); }
.location__grid .hours li { padding-inline: 6px; }
.location__transit { display: flex; gap: 8px; align-items: center; font-size: 0.9rem; color: var(--muted); }
@media (max-width: 960px) {
	.location { grid-template-columns: 1fr; }
	.location__media img { aspect-ratio: 16 / 10; }
}
@media (max-width: 560px) { .location__grid { grid-template-columns: 1fr; } }

/* Unterseiten ------------------------------------------------------------ */
.page-hero { padding-block: clamp(48px, 8vw, 104px) clamp(36px, 5vw, 64px); position: relative; overflow: hidden; }
.page-hero::before {
	content: ""; position: absolute; z-index: -1; width: 620px; height: 620px; right: -200px; top: -300px;
	background: radial-gradient(circle, rgba(57, 169, 53, 0.14), transparent 65%);
}
.page-hero__title { font-size: clamp(2.2rem, 1.6rem + 3vw, 3.8rem); line-height: 1.05; max-width: 20ch; }
.page-hero__lead { font-size: 1.15rem; color: var(--muted); max-width: 60ch; margin: 18px 0 0; }

.filterbar { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.filterbar__cats { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.filterbar__cats .chip { padding: 8px 16px; font-size: 0.88rem; }
.search { position: relative; flex: 0 1 320px; }
.search .icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.search input { width: 100%; padding: 12px 18px 12px 44px; border-radius: 999px; border: 1px solid var(--line); background: #fff; }
.search input:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(57, 169, 53, 0.15); }

.pagination { margin-top: 48px; display: flex; justify-content: center; }
.pagination ul, .pagination .nav-links { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.pagination a, .pagination span {
	display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 14px;
	border-radius: 999px; background: #fff; border: 1px solid var(--line); text-decoration: none; color: var(--ink); font-weight: 600;
}
.pagination .current { background: var(--green-900); color: #fff; border-color: var(--green-900); }
.pagination a:hover { border-color: var(--green-500); color: var(--green-700); }
.empty { color: var(--muted); padding: 40px 0; }

/* Beitrag ---------------------------------------------------------------- */
.article__head { padding-block: clamp(40px, 6vw, 80px) clamp(28px, 4vw, 44px); }
.back-link { display: inline-block; margin-bottom: 26px; font-weight: 600; text-decoration: none; font-size: 0.95rem; }
.article__title { font-size: clamp(2.1rem, 1.5rem + 2.8vw, 3.5rem); line-height: 1.08; margin: 0; }
.article__image { margin: 0 0 clamp(36px, 5vw, 56px); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.article__image img { width: 100%; max-height: 560px; object-fit: cover; }
.article__cta {
	display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between;
	margin-block: 56px var(--section); padding: 26px 28px; border-radius: var(--radius-lg);
	background: var(--green-100);
}
.article__cta p { margin: 0; color: var(--muted); }
.article__cta .article__cta-title { color: var(--green-950); font-weight: 700; font-size: 1.1rem; }

/* Fließtext (Beiträge, Impressum, Datenschutz) */
.prose { font-size: 1.075rem; line-height: 1.75; }
.prose > * + * { margin-top: 1em; }
.prose p { margin: 0; }
.prose p + p { margin-top: 1em; }
.prose h2, .prose h3, .prose h4, .prose h5, .prose h6 { font-family: var(--font-serif); font-weight: 500; margin: 1.8em 0 0.5em; line-height: 1.2; }
.prose h2 { font-size: 1.85rem; }
.prose h3 { font-size: 1.5rem; }
.prose h4 { font-size: 1.3rem; }
.prose h5, .prose h6 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 700; }
.prose > :first-child { margin-top: 0; }
.prose :is(h1, h2, h3, h4, h5, h6, p):empty { display: none; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: 0.4em; }
.prose li::marker { color: var(--green-500); }
.prose img { border-radius: var(--radius); margin-block: 1.5em; }
.prose blockquote { margin: 1.8em 0; padding: 6px 0 6px 24px; border-left: 3px solid var(--green-500); font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; color: var(--green-900); }
.prose table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.prose th, .prose td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.prose a { word-break: break-word; }
.prose .legal-heading { margin-top: 1.6em; font-weight: 700; color: var(--green-950); }
.prose .legal-text { color: var(--muted); }
.prose .lead { font-size: 1.2rem; color: var(--green-900); }
.about__text.prose > p { color: var(--muted); }
.prose iframe { width: 100%; aspect-ratio: 16 / 9; height: auto; border: 0; border-radius: var(--radius); }
/* Divi-Reste neutralisieren */
.prose [style*="color: #ffffff"], .prose [style*="color: #fff"] { color: inherit !important; }
.prose [style*="text-align: justify"] { text-align: left !important; }

/* Kontakt ---------------------------------------------------------------- */
.contact { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.contact__aside { display: grid; gap: 20px; position: sticky; top: calc(var(--header-h) + 24px); }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } .contact__aside { position: static; } }

.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; }
.info-card__row { display: flex; align-items: center; gap: 14px; padding: 10px; margin: 0 -10px; border-radius: 14px; text-decoration: none; color: var(--ink); }
.info-card__row:hover { background: var(--green-50); color: var(--ink); }
.info-card__row small { display: block; color: var(--muted); font-size: 0.8rem; }
.info-card__row strong { display: block; font-weight: 650; word-break: break-word; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field__label { font-weight: 600; font-size: 0.92rem; color: var(--green-950); }
.field input, .field textarea {
	width: 100%; padding: 13px 16px; border-radius: 12px;
	border: 1.5px solid rgba(20, 35, 27, 0.14); background: var(--cream);
	transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.field textarea { resize: vertical; min-height: 150px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green-500); background: #fff; box-shadow: 0 0 0 4px rgba(57, 169, 53, 0.15); }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; color: var(--muted); }
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--green-700); flex: none; }
.form__foot { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; margin-top: 24px; }
.form__hint { font-size: 0.85rem; color: var(--muted); margin: 0; max-width: 40ch; }
.form__hp { position: absolute; left: -9999px; }
.form__privacy { font-size: 0.82rem; color: var(--muted); margin-top: 18px; }
.notice { padding: 14px 18px; border-radius: 12px; margin-bottom: 20px; font-weight: 550; }
.notice--ok { background: var(--green-100); color: var(--green-900); }
.notice--error { background: #fdecee; color: #8a1020; }
@media (max-width: 560px) { .form__grid { grid-template-columns: 1fr; } }

/* Footer ----------------------------------------------------------------- */
.site-footer { background: var(--green-950); color: rgba(255, 255, 255, 0.72); padding-top: clamp(56px, 7vw, 88px); font-size: 0.95rem; }
.site-footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 40px; padding-bottom: 48px; }
.site-footer__name { font-family: var(--font-serif); font-size: 1.6rem; color: #fff; line-height: 1.2; margin-bottom: 12px; }
.site-footer__brand p { max-width: 32ch; }
.site-footer__brand .btn { margin-top: 8px; }
.site-footer a.btn, .site-footer a.btn:hover { color: var(--btn-fg); text-decoration: none; }
.site-footer__heading { font-family: var(--font-sans); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-400); margin-bottom: 16px; }
.site-footer__links { list-style: none; display: grid; gap: 8px; }
.site-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding-block: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.85rem; }
.site-footer__bottom p { margin: 0; }
.legal-nav { list-style: none; display: flex; gap: 22px; }
@media (max-width: 960px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }

/* Anruf-Button (mobil) --------------------------------------------------- */
.call-fab {
	position: fixed; right: 16px; bottom: 16px; z-index: 80;
	width: 58px; height: 58px; border-radius: 50%;
	display: none; align-items: center; justify-content: center;
	background: var(--green-700); color: #fff; box-shadow: 0 10px 30px rgba(0, 102, 51, 0.4);
}
.call-fab:hover { color: #fff; background: var(--green-900); }
@media (max-width: 960px) { .call-fab { display: inline-flex; } .nav-open .call-fab { display: none; } }

/* Einblend-Animation ----------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
	.js .reveal { opacity: 1; transform: none; }
}

/* Barrierefreiheits-Plugin (OneTap) nicht über den Anruf-Button legen */
@media (max-width: 960px) { .onetap-container-toggle { bottom: 88px !important; } }
