
/* ============ v2 compat layer (ersetzt benötigte Astra-Basics) ============ */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 100%; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
/* Wichtig gegen den Rand-Bug bei gepinnten GSAP-Abschnitten: fixed-positionierte
   Elemente (wie beim ScrollTrigger-Pin) werden von overflow:hidden auf
   verschachtelten Containern NICHT geclippt, nur von html/body direkt. */
body { overflow-x: hidden; }
/* WICHTIG: KEIN 100vw/-50vw-"Breakout"-Trick hier (der Klassiker für
   .alignfull in Gutenberg/Astra-Themes) – 100vw misst die volle
   Fensterbreite INKLUSIVE der Scrollbar-Spur, während 50% sich auf die
   tatsächliche body-Breite bezieht (OHNE Scrollbar). Sobald eine
   Scrollbar sichtbar ist (z.B. Safari mit "Scrollleisten: Immer", oder
   Windows-Chrome mit klassischer Scrollbar), ist calc(-50vw + 50%) um
   die halbe Scrollbar-Breite falsch – Ergebnis: links bündig, rechts ein
   Abstand in exakt Scrollbar-Breite. Betraf about-us/menu/contact/
   mitarbeiter (dort trägt die Hero-Section die Klasse .alignfull), nicht
   die Startseite. Unnötig obendrein: .entry-content (und alle Vorfahren)
   sind weiter unten bereits explizit auf max-width:100% gesetzt, sind
   also schon randvoll – ein "Ausbruch" auf 100vw ist gar nicht nötig,
   100% reicht und ist scrollbar-sicher. */
.entry-content > .alignfull,
.entry-content > .wp-block-uagb-container.alignfull,
.entry-content > .wp-block-cover.alignfull,
.entry-content > .wp-block-group.alignfull {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
}
body { margin: 0; font-family: var(--pl-font, 'Inter', sans-serif); font-size: 16px; line-height: 1.65; color: #1c1c1a; }
img { max-width: 100%; height: auto; border: 0; }
p { margin: 0 0 1em; }
h1,h2,h3,h4,h5,h6 { font-family: var(--pl-font, 'Inter', sans-serif); font-weight: 600; line-height: 1.2em; margin: 0 0 0.5em; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }
ul, ol { margin: 0; padding: 0; }
figure { margin: 0; }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }

/* Footer-Grid (ersetzt Astra-Footer-Layout) */
.site-footer .ast-builder-grid-row { display: grid; gap: 2rem; align-items: flex-start; }
.site-footer .ast-builder-grid-row-4-equal .ast-builder-grid-row { grid-template-columns: repeat(4, minmax(0,1fr)); }
.site-footer .ast-builder-grid-row-2-equal .ast-builder-grid-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
.site-footer .widget { margin-bottom: 1em; }
.site-footer .menu { list-style: none; }
.site-footer .menu li { margin: 0 0 0.5em; }
.site-footer .menu a { text-decoration: none; }
.ast-inline-flex { display: inline-flex; }
.ast-builder-social-element { display: inline-flex; align-items: center; justify-content: center; padding: 0.4em; color: var(--color, currentColor); }
.ast-builder-social-element svg { width: 1.15em; height: 1.15em; fill: currentColor; }
.footer-social-inner-wrap { display: flex; gap: 0.35rem; }
@media (max-width: 921px) {
  .site-footer .ast-builder-grid-row-4-equal .ast-builder-grid-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 544px) {
  .site-footer .ast-builder-grid-row-4-equal .ast-builder-grid-row,
  .site-footer .ast-builder-grid-row-2-equal .ast-builder-grid-row { grid-template-columns: 1fr; }
}

/* Scroll-to-top (ersetzt Astra) */
#ast-scroll-top { position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 99; display: none; align-items: center; justify-content: center; width: 2.6rem; height: 2.6rem; border-radius: 6px; background: #0e2925; color: #fff; cursor: pointer; }
#ast-scroll-top.ast-scroll-top-visible { display: flex; }
#ast-scroll-top svg { width: 1.2em; fill: currentColor; transform: rotate(180deg); }

:root {
	--pl-green: rgb(31, 79, 72);
	--pl-green-deep: #123a35;
	--pl-green-shadow: rgba(9, 31, 28, 0.56);
	--pl-mint: rgb(56, 178, 145);
	--pl-mint-soft: rgba(56, 178, 145, 0.18);
	--pl-red: rgb(231, 51, 63);
	--pl-cream: #f6f0e5;
	--pl-offwhite: #fbf8f1;
	--pl-text: #f8f6ef;
	--pl-copy: rgba(248, 246, 239, 0.82);
	--pl-topbar-height: 2.9rem;
	--pl-header-height: 5.1rem;
	--pl-header-gap: 0.55rem;
	--pl-shell-offset: calc(var(--pl-topbar-height) + var(--pl-header-height) + var(--pl-header-gap) + 0.8rem);
}

body.home {
	background: #17423d;
}

body.home .site,
body.home #content,
body.home .site-content,
body.home #primary,
body.home .entry-content,
body.home .papalu-hero,
body.home .papalu-hero__sticky,
body.home .papalu-hero__canvas {
	position: relative;
	z-index: 1;
}

/* Ab Desktop-Breite liegt der Hero über #aboutus/Galerie (nicht nur
   z-index:1), damit das über die Pin-Box hinauslaufende Wrap/Burger-Bild
   sichtbar bleibt statt vom nächsten Abschnitt abgeschnitten zu wirken.
   #aboutus selbst hat dafür kein eigenes z-index mehr (siehe dort) – nur
   .pl-about-media (das Foto) wird gezielt noch höher gesetzt, damit der
   Hero UNTER dem Foto, aber ÜBER dem Rest des Abschnitts liegt. Bewusst
   nur ab 768px: auf Mobile überlappt der (jetzt content-hohe) Hero
   #aboutus kaum noch, da bringt diese Extra-Schicht nichts außer Risiko. */
@media (min-width: 768px) {
	body.home .papalu-hero {
		z-index: 150;
	}
}

body.home .ast-main-header-wrap,
body.home .ast-primary-header-bar,
body.home .site-primary-header-wrap {
	background: transparent !important;
}

.home .entry-content[data-ast-blocks-layout] > .papalu-hero {
	max-width: 100%;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.papalu-hero {
	position: relative;
	height: 420svh;
	min-height: 3000px;
	margin-top: -1px;
	background:
		linear-gradient(180deg, #0e2925 0%, #12342f 18%, #17403a 52%, #1e4943 74%, #214b45 100%);
	color: var(--pl-text);
	overflow: visible;
	isolation: isolate;
}

.papalu-hero__sticky {
	position: sticky;
	top: var(--pl-shell-offset);
	height: calc(100svh - var(--pl-shell-offset));
	min-height: 620px;
	display: grid;
	align-items: stretch;
	overflow: visible;
}

.papalu-hero--enhanced .papalu-hero__sticky {
	position: relative;
	top: auto;
}

.papalu-hero__canvas {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.papalu-hero__atmosphere,
.papalu-hero__ingredients,
.papalu-hero__products,
.papalu-hero__content,
.papalu-hero__transition {
	position: absolute;
	inset: 0;
	contain: layout paint;
}

.papalu-hero__atmosphere {
	pointer-events: none;
}

.papalu-hero__atmosphere-image {
	position: absolute;
	inset: -2% -4% -8%;
	width: calc(100% + 8%);
	height: calc(100% + 10%);
	object-fit: cover;
	opacity: 0.94;
	mix-blend-mode: screen;
}

.papalu-hero__glow,
.papalu-hero__mesh,
.papalu-hero__wash,
.papalu-hero__grain,
.papalu-hero__accent,
.papalu-hero__mist {
	position: absolute;
	border-radius: 999px;
}

.papalu-hero__glow {
	inset: 10% auto auto 50%;
	width: clamp(18rem, 48vw, 34rem);
	height: clamp(18rem, 48vw, 34rem);
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(255, 248, 236, 0.3), rgba(255, 248, 236, 0) 70%);
	filter: blur(34px);
	opacity: 0.64;
}

.papalu-hero__mesh {
	inset: 16% auto auto -12%;
	width: 52vw;
	height: 52vw;
	max-width: 28rem;
	max-height: 28rem;
	background: radial-gradient(circle at 30% 30%, rgba(56, 178, 145, 0.22), rgba(56, 178, 145, 0) 70%);
	filter: blur(36px);
	opacity: 0.44;
}

.papalu-hero__wash {
	right: -16%;
	bottom: 20%;
	width: 62vw;
	height: 62vw;
	max-width: 34rem;
	max-height: 34rem;
	background: radial-gradient(circle at 40% 40%, rgba(250, 246, 237, 0.14), rgba(250, 246, 237, 0) 72%);
	filter: blur(38px);
	opacity: 0.52;
}

.papalu-hero__grain {
	inset: 0;
	border-radius: 0;
	background-image:
		radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06) 0.8px, transparent 1px),
		radial-gradient(circle at 80% 40%, rgba(255,255,255,0.03) 0.8px, transparent 1px);
	background-size: 22px 22px, 28px 28px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 94%);
	opacity: 0.18;
}

.papalu-hero__accent {
	width: clamp(8rem, 24vw, 14rem);
	height: clamp(8rem, 24vw, 14rem);
	background: radial-gradient(circle, rgba(231, 51, 63, 0.14), rgba(231, 51, 63, 0) 68%);
	filter: blur(22px);
	opacity: 0.22;
}

.papalu-hero__accent--left {
	left: 8%;
	top: 34%;
}

.papalu-hero__accent--right {
	right: 10%;
	top: 14%;
}

.papalu-hero__mist {
	filter: blur(34px);
	background: radial-gradient(circle, rgba(255, 248, 236, 0.28), rgba(255, 248, 236, 0) 72%);
	opacity: 0.26;
}

.papalu-hero__mist--left {
	left: -10%;
	bottom: 22%;
	width: min(52vw, 22rem);
	height: min(52vw, 22rem);
}

.papalu-hero__mist--right {
	right: -10%;
	top: 32%;
	width: min(46vw, 19rem);
	height: min(46vw, 19rem);
}

.papalu-hero__content {
	z-index: 5;
	display: grid;
	align-content: center;
	padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3rem) clamp(7rem, 14vw, 10rem);
}

.papalu-hero__copy {
	position: relative;
	z-index: 2;
	width: min(100%, 18rem);
	display: grid;
	gap: 0.7rem;
}

.papalu-hero__eyebrow {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	width: fit-content;
	font-family: var(--pl-font);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(248, 246, 239, 0.82);
}

.papalu-hero__eyebrow::before {
	content: "";
	width: 1.9rem;
	height: 1px;
	background: linear-gradient(90deg, rgba(248, 246, 239, 0.12), rgba(56, 178, 145, 0.92));
}

.papalu-hero__title {
	margin: 0;
	max-width: 7ch;
	font-size: clamp(2.7rem, 11.6vw, 6rem);
	line-height: 0.9;
	letter-spacing: -0.06em;
	color: #fffaf1;
	text-wrap: balance;
}

.papalu-hero__title em {
	font-style: normal;
	color: #aef1db;
}

.papalu-hero__desc {
	margin: 0;
	max-width: 18ch;
	font-size: clamp(0.95rem, 3.2vw, 1.02rem);
	line-height: 1.45;
	color: rgba(248, 246, 239, 0.72);
	text-wrap: pretty;
}

.papalu-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 0.4rem;
}

.papalu-hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.25rem;
	padding: 0.95rem 1.15rem;
	border-radius: 20px;
	font-family: var(--pl-font);
	font-size: 0.79rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none !important;
	transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.papalu-hero__cta:hover,
.papalu-hero__cta:focus-visible {
	transform: translateY(-2px);
}

.papalu-hero__cta--primary {
	background: #fbf8f1;
	color: var(--pl-green);
	box-shadow: 0 18px 45px rgba(8, 24, 22, 0.28);
}

.papalu-hero__cta--secondary {
	border: 1px solid rgba(248, 246, 239, 0.2);
	color: #fbf8f1;
	background: rgba(248, 246, 239, 0.08);
	backdrop-filter: blur(10px);
}

.papalu-hero__cards {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 5;
}

.papalu-hero__card {
	position: absolute;
	display: grid;
	gap: 0.14rem;
	min-width: 8.5rem;
	padding: 0.75rem 0.9rem;
	border-radius: 1rem;
	background: rgba(249, 244, 235, 0.12);
	border: 1px solid rgba(249, 244, 235, 0.18);
	backdrop-filter: blur(16px);
	box-shadow: 0 18px 34px rgba(5, 18, 17, 0.18);
	color: #fbf8f1;
	opacity: 0;
}

.papalu-hero__card strong {
	font-family: var(--pl-font);
	font-size: 0.84rem;
	font-weight: 700;
	line-height: 1.15;
}

.papalu-hero__card span {
	font-family: var(--pl-font);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(174, 241, 219, 0.84);
}

.papalu-hero__card--wrap-primary {
	left: clamp(1.25rem, 4vw, 2rem);
	top: 42%;
}

.papalu-hero__card--wrap-secondary {
	right: clamp(1.1rem, 4vw, 2rem);
	top: 24%;
}

.papalu-hero__card--burger-primary {
	left: clamp(1.25rem, 4vw, 2rem);
	top: 25%;
}

.papalu-hero__card--burger-secondary {
	right: clamp(1.1rem, 4vw, 2rem);
	top: 54%;
}

.papalu-hero__products,
.papalu-hero__ingredients {
	pointer-events: none;
}

.papalu-hero__word {
	position: absolute;
	left: 50%;
	top: 24%;
	transform: translateX(-50%);
	font-family: var(--pl-font);
	font-size: clamp(5rem, 25vw, 13rem);
	font-weight: 800;
	line-height: 0.82;
	letter-spacing: -0.08em;
	text-transform: uppercase;
	color: rgba(255, 250, 241, 0.12);
	white-space: nowrap;
	z-index: 1;
	pointer-events: none;
	mix-blend-mode: screen;
}

.papalu-hero__word--wrap {
	top: 22%;
}

.papalu-hero__word--burger {
	top: 28%;
	opacity: 0;
}

.papalu-hero__stage {
	position: absolute;
	left: 50%;
	bottom: 12%;
	width: min(132vw, 68rem);
	height: min(46vw, 18rem);
	transform: translateX(-50%);
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.98), rgba(255, 250, 241, 0.92) 42%, rgba(255, 248, 235, 0.58) 66%, rgba(255, 248, 235, 0) 78%);
	box-shadow:
		0 30px 70px rgba(9, 31, 28, 0.18),
		inset 0 12px 16px rgba(255, 255, 255, 0.5);
	opacity: 0.96;
	z-index: 1;
}

.papalu-hero__stage-shadow {
	position: absolute;
	left: 50%;
	bottom: 10%;
	width: min(88vw, 36rem);
	height: min(14vw, 6rem);
	transform: translateX(-50%);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(8, 23, 21, 0.34), rgba(8, 23, 21, 0) 72%);
	filter: blur(24px);
	z-index: 1;
}

.papalu-hero__product {
	position: absolute;
	left: 50%;
	top: 55%;
	transform: translate3d(-50%, -50%, 0);
	width: min(88vw, 33rem);
	filter: drop-shadow(0 32px 40px rgba(9, 31, 28, 0.28));
	transform-origin: center center;
	will-change: transform, opacity;
	backface-visibility: hidden;
}

.papalu-hero__product--burger {
	z-index: 3;
	opacity: 0;
}

.papalu-hero__product--wrap {
	z-index: 3;
	width: min(86vw, 32rem);
}

.papalu-hero__ingredient {
	position: absolute;
	width: var(--size, 7rem);
	max-width: 30vw;
	will-change: transform, opacity;
	backface-visibility: hidden;
	filter: drop-shadow(0 14px 24px rgba(9, 31, 28, 0.16));
}

.papalu-hero__ingredient--lettuce {
	left: -8%;
	top: 46%;
	--size: min(34vw, 13.5rem);
	z-index: 4;
}

.papalu-hero__ingredient--tomato {
	right: -9%;
	top: 18%;
	--size: min(22vw, 11rem);
	z-index: 4;
}

.papalu-hero__ingredient--onion {
	right: -2%;
	top: 60%;
	--size: min(24vw, 10rem);
	z-index: 4;
}

.papalu-hero__transition {
	position: absolute;
	inset: auto 0 0;
	height: clamp(9rem, 16vw, 15rem);
	z-index: 6;
	display: flex;
	align-items: flex-end;
	pointer-events: none;
}

.papalu-hero__reveal {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 100%;
	background:
		linear-gradient(180deg, rgba(246, 240, 229, 0) 0%, rgba(246, 240, 229, 0.22) 20%, rgba(246, 240, 229, 0.82) 58%, #f6f0e5 100%),
		url("/assets/generated/hero-divider.svg");
	background-position: center bottom, center bottom;
	background-repeat: no-repeat, no-repeat;
	background-size: 100% 100%, cover;
	opacity: 0;
}

.pl-intro-section {
	position: relative;
	z-index: 2;
	margin-top: -7.5rem;
	padding-top: clamp(8rem, 14vw, 11rem);
	background:
		radial-gradient(circle at 50% -12%, rgba(255, 255, 255, 0.54), transparent 18%),
		radial-gradient(circle at 12% 0%, rgba(56, 178, 145, 0.12), transparent 18%),
		linear-gradient(180deg, rgba(246, 240, 229, 0.12) 0%, rgba(246, 240, 229, 0.82) 18%, #f6f0e5 34%, #f6f0e5 100%);
}

.pl-intro-section::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: calc(clamp(8rem, 14vw, 11rem) * -0.85);
	height: clamp(8rem, 14vw, 12rem);
	background: url("/assets/generated/hero-divider.svg") center top / cover no-repeat;
	pointer-events: none;
}

@media (min-width: 922px) {
	.papalu-hero {
		height: 460svh;
		min-height: 3600px;
	}

	.papalu-hero__content {
		padding-inline: clamp(2rem, 5vw, 4.75rem);
	}

	.papalu-hero__copy {
		width: min(17rem, 27%);
	}

	.papalu-hero__title {
		max-width: 6ch;
	}

	.papalu-hero__word {
		left: 58%;
		top: 18%;
		font-size: clamp(7rem, 18vw, 15rem);
	}

	.papalu-hero__word--burger {
		top: 24%;
	}

	.papalu-hero__stage {
		left: 59%;
		bottom: 8%;
		width: min(76vw, 78rem);
		height: min(20vw, 16rem);
	}

	.papalu-hero__stage-shadow {
		left: 59%;
		bottom: 6%;
		width: min(46vw, 38rem);
		height: min(7.5vw, 6rem);
	}

	.papalu-hero__product--wrap {
		left: 61%;
		top: 61%;
		width: min(36vw, 30rem);
	}

	.papalu-hero__product--burger {
		left: 61%;
		top: 59%;
		width: min(38vw, 32rem);
	}

	.papalu-hero__ingredient--lettuce {
		left: 3%;
		top: 43%;
		--size: min(15vw, 12.5rem);
	}

	.papalu-hero__ingredient--tomato {
		right: 6%;
		top: 18%;
		--size: min(10vw, 8rem);
	}

	.papalu-hero__ingredient--onion {
		right: 12%;
		top: 57%;
		--size: min(8vw, 7rem);
	}

	.papalu-hero__card {
		min-width: 10rem;
		padding: 0.85rem 1rem;
	}

	.papalu-hero__card--wrap-primary {
		left: 44%;
		top: 18%;
	}

	.papalu-hero__card--wrap-secondary {
		right: 10%;
		top: 48%;
	}

	.papalu-hero__card--burger-primary {
		left: 42%;
		top: 16%;
	}

	.papalu-hero__card--burger-secondary {
		right: 9%;
		top: 55%;
	}
}

@media (max-width: 921px) {
	:root {
		--pl-topbar-height: 3.15rem;
		--pl-header-height: 4.6rem;
		--pl-shell-offset: calc(var(--pl-topbar-height) + var(--pl-header-height) + var(--pl-header-gap) + 0.55rem);
	}

	.papalu-hero__sticky {
		min-height: 640px;
	}

	.papalu-hero__copy {
		max-width: min(100%, 18rem);
	}

	.papalu-hero__title {
		max-width: 7ch;
	}

	.pl-intro-section {
		margin-top: -5.5rem;
		padding-top: clamp(7rem, 16vw, 9rem);
	}
}

@media (max-width: 544px) {

	.papalu-hero {
		min-height: 2920px;
	}

	.papalu-hero__content {
		padding-bottom: 6.5rem;
	}

	.papalu-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.papalu-hero__cta {
		width: 100%;
	}

	.papalu-hero__word {
		top: 28%;
		font-size: clamp(5rem, 23vw, 8rem);
	}

	.papalu-hero__card {
		min-width: 7.8rem;
		padding: 0.7rem 0.8rem;
	}

	.papalu-hero__card strong {
		font-size: 0.8rem;
	}

	.papalu-hero__card span {
		font-size: 0.62rem;
	}

	.pl-intro-section::before {
		top: -5.75rem;
		height: 7rem;
		background-size: 180% 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.papalu-hero {
		height: auto;
		min-height: 100svh;
	}

	.papalu-hero__sticky {
		position: relative;
		height: auto;
		min-height: 100svh;
	}

	.papalu-hero__content {
		position: relative;
		padding-bottom: 17rem;
	}

	.papalu-hero__product--burger,
	.papalu-hero__product--wrap {
		opacity: 1 !important;
	}

	.papalu-hero__ingredient,
	.papalu-hero__cards {
		display: none;
	}

	.papalu-hero__reveal {
		opacity: 1 !important;
	}
}

/* Clean hero and header reset */
:root {
	--pl-shell-width: min(calc(100% - 1.5rem), 1180px);
	--pl-panel: rgba(14, 37, 34, 0.84);
	--pl-panel-border: rgba(255, 248, 237, 0.08);
	--pl-hero-cream: #f7f1e6;
	--pl-hero-copy: rgba(247, 241, 230, 0.8);
	--pl-soft-shadow: 0 18px 60px rgba(10, 30, 27, 0.12);
	--pl-hero-showcase-duration: 20s;
	--pl-hero-showcase-offset: 0s;
	--pl-hero-progress: 0;
	--pl-hero-progress-inv: 1;
	--pl-hero-late: 0;
}

@keyframes plHeroAtmosphereDrift {
	0%, 100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(0.8rem, -1.1rem, 0) scale(1.04);
	}
}

@keyframes plHeroGlowPulse {
	0%, 100% {
		opacity: 0.34;
		filter: blur(26px);
	}
	50% {
		opacity: 0.52;
		filter: blur(34px);
	}
}

@keyframes plHeroStageLight {
	0%, 100% {
		box-shadow:
			0 34px 78px rgba(8, 25, 22, 0.16),
			inset 0 14px 18px rgba(255, 255, 255, 0.34);
	}
	50% {
		box-shadow:
			0 40px 88px rgba(8, 25, 22, 0.2),
			0 0 34px rgba(204, 50, 33, 0.12),
			inset 0 16px 18px rgba(255, 255, 255, 0.42);
	}
}

@keyframes plHeroWordWrap {
	0%, 36% {
		opacity: 0.9;
		transform: translate3d(-50%, 0, 0) scale(1);
	}
	48%, 100% {
		opacity: 0;
		transform: translate3d(-50%, 1.6rem, 0) scale(0.88);
	}
}

@keyframes plHeroWordBurger {
	0%, 42% {
		opacity: 0;
		transform: translate3d(-50%, 1.4rem, 0) scale(0.84);
	}
	54%, 88% {
		opacity: 0.82;
		transform: translate3d(-50%, 0, 0) scale(1);
	}
	96%, 100% {
		opacity: 0;
		transform: translate3d(-50%, -1rem, 0) scale(0.92);
	}
}

@keyframes plHeroWrapProduct {
	0% {
		opacity: 0.98;
		transform: translate3d(-50%, -50%, 0) scale(0.9) rotate(-8deg);
	}
	18% {
		opacity: 1;
		transform: translate3d(-50%, -53%, 0) scale(1.01) rotate(-4deg);
	}
	34% {
		opacity: 0.96;
		transform: translate3d(-48%, -48%, 0) scale(1.08) rotate(2deg);
	}
	48% {
		opacity: 0.96;
		transform: translate3d(-58%, -46%, 0) scale(0.9) rotate(6deg);
	}
	62%, 100% {
		opacity: 0.96;
		transform: translate3d(-58%, -46%, 0) scale(0.9) rotate(6deg);
	}
}

@keyframes plHeroBurgerProduct {
	0%, 34% {
		opacity: 0;
		transform: translate3d(-46%, -44%, 0) scale(0.68) rotate(12deg);
	}
	46% {
		opacity: 0.42;
		transform: translate3d(-50%, -49%, 0) scale(0.82) rotate(8deg);
	}
	58% {
		opacity: 1;
		transform: translate3d(-50%, -53%, 0) scale(1.03) rotate(-2deg);
	}
	70% {
		opacity: 1;
		transform: translate3d(-50%, -51%, 0) scale(1.08) rotate(-6deg);
	}
	100% {
		opacity: 1;
		transform: translate3d(-50%, -51%, 0) scale(1.08) rotate(-6deg);
	}
}

@keyframes plHeroLettuceFloat {
	0%, 100% {
		opacity: 0.16;
		transform: translate3d(-2rem, 2rem, 0) scale(0.76) rotate(-22deg);
	}
	26% {
		opacity: 0.7;
		transform: translate3d(1rem, -0.4rem, 0) scale(1) rotate(-10deg);
	}
	52% {
		opacity: 0.24;
		transform: translate3d(4rem, 1.2rem, 0) scale(0.84) rotate(6deg);
	}
}

@keyframes plHeroTomatoFloat {
	0%, 18% {
		opacity: 0;
		transform: translate3d(4rem, -2rem, 0) scale(0.68) rotate(10deg);
	}
	34% {
		opacity: 0.5;
		transform: translate3d(1.2rem, 0.6rem, 0) scale(0.92) rotate(-4deg);
	}
	58% {
		opacity: 0.84;
		transform: translate3d(-2rem, 3.4rem, 0) scale(1.08) rotate(-18deg);
	}
	82%, 100% {
		opacity: 0;
		transform: translate3d(-6rem, 6rem, 0) scale(0.76) rotate(-28deg);
	}
}

@keyframes plHeroOnionFloat {
	0%, 22% {
		opacity: 0;
		transform: translate3d(2rem, 3rem, 0) scale(0.5) rotate(-18deg);
	}
	42% {
		opacity: 0.36;
		transform: translate3d(0.4rem, 0.6rem, 0) scale(0.84) rotate(-10deg);
	}
	66% {
		opacity: 0.82;
		transform: translate3d(-3rem, -2rem, 0) scale(1.14) rotate(12deg);
	}
	88%, 100% {
		opacity: 0;
		transform: translate3d(-6rem, -4rem, 0) scale(0.7) rotate(24deg);
	}
}

@keyframes plHeroWrapCardPrimary {
	0%, 36% {
		opacity: 0.96;
		transform: translate3d(0, 0, 0);
	}
	48%, 100% {
		opacity: 0;
		transform: translate3d(-0.8rem, 1.2rem, 0);
	}
}

@keyframes plHeroWrapCardSecondary {
	0%, 36% {
		opacity: 0.92;
		transform: translate3d(0, 0, 0);
	}
	48%, 100% {
		opacity: 0;
		transform: translate3d(1rem, -1rem, 0);
	}
}

@keyframes plHeroBurgerCardPrimary {
	0%, 46% {
		opacity: 0;
		transform: translate3d(-1rem, 1rem, 0);
	}
	58%, 74% {
		opacity: 0.96;
		transform: translate3d(0, 0, 0);
	}
	84%, 100% {
		opacity: 0;
		transform: translate3d(-1rem, 1rem, 0);
	}
}

@keyframes plHeroBurgerCardSecondary {
	0%, 46% {
		opacity: 0;
		transform: translate3d(1rem, -1rem, 0);
	}
	60%, 76% {
		opacity: 0.92;
		transform: translate3d(0, 0, 0);
	}
	86%, 100% {
		opacity: 0;
		transform: translate3d(1rem, 1rem, 0);
	}
}

body.home {
	background: #17423d;
}

.papalu-hero {
	height: auto !important;
	min-height: 0 !important;
	padding: calc(var(--pl-shell-offset) + 3rem) 0 clamp(3rem, 6vw, 4rem);
	background:
		radial-gradient(circle at 70% 45%, rgba(163, 26, 21, 0.36), transparent 20%),
		radial-gradient(circle at 66% 42%, rgba(230, 101, 56, 0.18), transparent 13%),
		radial-gradient(circle at 20% 24%, rgba(86, 181, 150, 0.2), transparent 24%),
		radial-gradient(circle at 78% 18%, rgba(255, 248, 237, 0.12), transparent 18%),
		linear-gradient(180deg, rgba(12, 33, 30, 0.08), rgba(12, 33, 30, 0) 26%),
		linear-gradient(180deg, #123a35 0%, #184841 100%);
	overflow: visible;
	position: relative;
	isolation: isolate;
}

.papalu-hero__sticky {
	position: relative;
	top: auto;
	height: auto;
	min-height: auto;
}

.papalu-hero__canvas {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: center;
	gap: clamp(2rem, 4vw, 4.5rem);
	width: min(calc(100% - 2rem), 1180px);
	min-height: min(820px, calc(100svh - var(--pl-shell-offset) - 3rem));
	margin: 0 auto;
	padding: 0 0 clamp(3rem, 5vw, 4rem);
	overflow: visible;
}

.papalu-hero__atmosphere {
	inset: -6% -8% -4%;
	z-index: 0;
	overflow: visible;
}

.papalu-hero__atmosphere-image {
	display: block;
	position: absolute;
	right: -12%;
	top: 6%;
	width: min(46rem, 56vw);
	max-width: none;
	opacity: 0.12;
	mix-blend-mode: screen;
	filter: saturate(0.9);
}

.papalu-hero__mesh {
	left: -8%;
	top: 10%;
	width: min(28rem, 32vw);
	height: min(28rem, 32vw);
	opacity: 0.24;
	filter: blur(16px);
	animation: plHeroAtmosphereDrift 9s ease-in-out infinite;
}

.papalu-hero__wash {
	right: -6%;
	bottom: 6%;
	width: min(38rem, 44vw);
	height: min(38rem, 44vw);
	opacity: 0.28;
	filter: blur(12px);
	background: radial-gradient(circle at 50% 44%, rgba(189, 39, 32, 0.22), rgba(255, 248, 236, 0) 70%);
	animation: plHeroAtmosphereDrift 11s ease-in-out infinite reverse;
}

.papalu-hero__glow {
	top: auto;
	right: 16%;
	bottom: 22%;
	width: clamp(18rem, 26vw, 25rem);
	height: clamp(18rem, 26vw, 25rem);
	opacity: 0.34;
	background: radial-gradient(circle, rgba(255, 233, 215, 0.42), rgba(255, 233, 215, 0) 70%);
	animation: plHeroGlowPulse 8s ease-in-out infinite;
}

.papalu-hero__accent,
.papalu-hero__mist,
.papalu-hero__word,
.papalu-hero__cards,
.papalu-hero__ingredients {
	display: block !important;
}

.papalu-hero__content,
.papalu-hero__products {
	position: relative;
	inset: auto;
}

.papalu-hero__content {
	z-index: 2;
	display: block;
	padding: 0;
	order: 1;
	transform: none;
	opacity: 1;
}

.papalu-hero__copy {
	width: min(100%, 31rem);
	gap: 1rem;
}

.papalu-hero__eyebrow {
	font-size: 0.82rem;
	letter-spacing: 0.24em;
	color: rgba(247, 241, 230, 0.68);
	transform: none;
	opacity: 1;
}

.papalu-hero__title {
	max-width: 7ch;
	font-size: clamp(3.85rem, 6.4vw, 6.1rem);
	line-height: 0.92;
	letter-spacing: -0.07em;
	color: var(--pl-hero-cream);
	transform: none;
	transform-origin: left top;
	text-wrap: balance;
}

.papalu-hero__desc {
	max-width: 27rem;
	font-size: clamp(1.05rem, 1.85vw, 1.18rem);
	line-height: 1.62;
	color: var(--pl-hero-copy);
	transform: none;
	opacity: 1;
}

.papalu-hero__actions {
	gap: 0.95rem;
	margin-top: 1.15rem;
	transform: none;
	opacity: 1;
}

.papalu-hero__cta {
	min-height: 3.45rem;
	padding: 0.95rem 1.35rem;
	font-size: 0.84rem;
	letter-spacing: 0.16em;
}

.papalu-hero__cta--primary {
	background: linear-gradient(135deg, #fffaf4, #eef7f0);
	box-shadow: 0 18px 40px rgba(6, 21, 19, 0.2);
}

.papalu-hero__cta--secondary {
	background: rgba(255, 248, 237, 0.06);
	border-color: rgba(255, 248, 237, 0.16);
}

.papalu-hero__products {
	order: 2;
	z-index: 2;
	min-height: clamp(29rem, 46vw, 39rem);
	transform: translate3d(0, calc(var(--pl-hero-progress) * -1.5rem), 0);
}

.papalu-hero__word {
	left: 54%;
	top: 21%;
	font-size: clamp(6.2rem, 16vw, 12.6rem);
	color: rgba(255, 248, 237, 0.16);
	letter-spacing: -0.08em;
	text-shadow: 0 10px 34px rgba(13, 40, 36, 0.14);
}

.papalu-hero__word--wrap {
	top: 18%;
	opacity: 0.9;
}

.papalu-hero__word--burger {
	top: 24%;
	opacity: 0;
}

.papalu-hero__stage {
	left: 54%;
	bottom: 16%;
	width: min(45rem, 90%);
	height: min(17rem, 25vw);
	transform: translateX(-50%) scale(calc(1 + (var(--pl-hero-progress) * 0.08)));
	transform-origin: center center;
	background:
		radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96), rgba(255, 249, 239, 0.9) 42%, rgba(255, 249, 239, 0.28) 70%, rgba(255, 249, 239, 0) 82%),
		radial-gradient(circle at 50% 80%, rgba(188, 35, 24, 0.14), rgba(188, 35, 24, 0) 54%);
	animation: plHeroStageLight 8s ease-in-out infinite;
}

.papalu-hero__stage-shadow {
	left: 54%;
	bottom: 13%;
	width: min(28rem, 50%);
	height: min(4.5rem, 8vw);
	transform: translateX(-50%) scale(calc(1 + (var(--pl-hero-progress) * 0.16)));
	background: radial-gradient(circle, rgba(7, 22, 19, 0.38), rgba(7, 22, 19, 0) 72%);
	filter: blur(24px);
	opacity: calc(0.88 - (var(--pl-hero-progress) * 0.14));
}

.papalu-hero__product {
	filter: drop-shadow(0 34px 46px rgba(10, 31, 28, 0.22));
	will-change: transform, opacity;
	transition: none;
}

.papalu-hero__product--burger {
	left: 54%;
	top: 54%;
	width: min(33rem, 72%);
	opacity: 0;
	transform: translate3d(-46%, -44%, 0) scale(0.68) rotate(12deg);
	z-index: 4;
}

.papalu-hero__product--wrap {
	left: 58%;
	top: 50%;
	width: min(24rem, 42%);
	opacity: 0.98;
	transform: translate3d(-50%, -50%, 0) scale(0.9) rotate(-8deg);
	z-index: 3;
	filter: drop-shadow(0 20px 30px rgba(10, 31, 28, 0.16));
}

.papalu-hero__ingredients {
	position: absolute;
	inset: 0;
	z-index: 5;
}

.papalu-hero__ingredient {
	opacity: 0.12;
	transform-origin: center center;
}

.papalu-hero__ingredient--lettuce {
	left: 4%;
	top: 44%;
	--size: min(14vw, 12rem);
}

.papalu-hero__ingredient--tomato {
	right: 8%;
	top: 17%;
	--size: min(10vw, 7.8rem);
}

.papalu-hero__ingredient--onion {
	right: 14%;
	top: 56%;
	--size: min(8vw, 6.8rem);
}

.papalu-hero__accent {
	opacity: 0.22;
}

.papalu-hero__accent--left {
	left: 8%;
	top: 32%;
}

.papalu-hero__accent--right {
	right: 13%;
	top: 16%;
}

.papalu-hero__mist {
	opacity: 0.22;
}

.papalu-hero__mist--left {
	left: 32%;
	bottom: 16%;
	width: min(30rem, 34vw);
	height: min(18rem, 22vw);
}

.papalu-hero__mist--right {
	right: 6%;
	top: 22%;
	width: min(22rem, 24vw);
	height: min(18rem, 20vw);
}

.papalu-hero__card {
	background: linear-gradient(135deg, rgba(122, 27, 21, 0.3), rgba(249, 244, 235, 0.12));
	border-color: rgba(249, 244, 235, 0.2);
	box-shadow: 0 18px 34px rgba(5, 18, 17, 0.22);
	opacity: 0;
}

.papalu-hero__card--wrap-primary {
	left: 46%;
	top: 18%;
}

.papalu-hero__card--wrap-secondary {
	right: 10%;
	top: 49%;
}

.papalu-hero__card--burger-primary {
	left: 43%;
	top: 18%;
}

.papalu-hero__card--burger-secondary {
	right: 8%;
	top: 56%;
}

.papalu-hero--ready .papalu-hero__atmosphere-image {
	animation: plHeroAtmosphereDrift 12s ease-in-out infinite;
	animation-delay: var(--pl-hero-showcase-offset);
}

.papalu-hero--ready .papalu-hero__word--wrap {
	animation: plHeroWordWrap var(--pl-hero-showcase-duration) cubic-bezier(0.4, 0, 0.2, 1) 1 both;
	animation-delay: var(--pl-hero-showcase-offset);
}

.papalu-hero--ready .papalu-hero__word--burger {
	animation: plHeroWordBurger var(--pl-hero-showcase-duration) cubic-bezier(0.4, 0, 0.2, 1) 1 both;
	animation-delay: var(--pl-hero-showcase-offset);
}

.papalu-hero--ready .papalu-hero__product--wrap {
	animation: plHeroWrapProduct var(--pl-hero-showcase-duration) cubic-bezier(0.4, 0, 0.2, 1) 1 both;
	animation-delay: var(--pl-hero-showcase-offset);
}

.papalu-hero--ready .papalu-hero__product--burger {
	animation: plHeroBurgerProduct var(--pl-hero-showcase-duration) cubic-bezier(0.4, 0, 0.2, 1) 1 both;
	animation-delay: var(--pl-hero-showcase-offset);
}

.papalu-hero--ready .papalu-hero__ingredient--lettuce {
	animation: plHeroLettuceFloat calc(var(--pl-hero-showcase-duration) * 0.9) ease-in-out infinite;
	animation-delay: var(--pl-hero-showcase-offset);
}

.papalu-hero--ready .papalu-hero__ingredient--tomato {
	animation: plHeroTomatoFloat var(--pl-hero-showcase-duration) ease-in-out infinite;
	animation-delay: var(--pl-hero-showcase-offset);
}

.papalu-hero--ready .papalu-hero__ingredient--onion {
	animation: plHeroOnionFloat calc(var(--pl-hero-showcase-duration) * 0.92) ease-in-out infinite;
	animation-delay: var(--pl-hero-showcase-offset);
}

.papalu-hero--ready .papalu-hero__card--wrap-primary {
	animation: plHeroWrapCardPrimary var(--pl-hero-showcase-duration) ease-in-out 1 both;
	animation-delay: var(--pl-hero-showcase-offset);
}

.papalu-hero--ready .papalu-hero__card--wrap-secondary {
	animation: plHeroWrapCardSecondary var(--pl-hero-showcase-duration) ease-in-out 1 both;
	animation-delay: var(--pl-hero-showcase-offset);
}

.papalu-hero--ready .papalu-hero__card--burger-primary {
	animation: plHeroBurgerCardPrimary var(--pl-hero-showcase-duration) ease-in-out 1 both;
	animation-delay: var(--pl-hero-showcase-offset);
}

.papalu-hero--ready .papalu-hero__card--burger-secondary {
	animation: plHeroBurgerCardSecondary var(--pl-hero-showcase-duration) ease-in-out 1 both;
	animation-delay: var(--pl-hero-showcase-offset);
}

.papalu-hero__transition {
	position: absolute;
	inset: auto 0 0;
	height: clamp(5rem, 7vw, 6.5rem);
	pointer-events: none;
	opacity: 1;
}

.papalu-hero--ready .papalu-hero__atmosphere-image,
.papalu-hero--ready .papalu-hero__word,
.papalu-hero--ready .papalu-hero__product,
.papalu-hero--ready .papalu-hero__ingredient,
.papalu-hero--ready .papalu-hero__card,
.papalu-hero__mesh,
.papalu-hero__wash,
.papalu-hero__glow,
.papalu-hero__stage {
	animation-play-state: paused;
}

.papalu-hero--ready .papalu-hero__word,
.papalu-hero--ready .papalu-hero__product,
.papalu-hero--ready .papalu-hero__ingredient,
.papalu-hero--ready .papalu-hero__card {
	animation-play-state: running;
}

.papalu-hero__reveal {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 100%;
	opacity: calc(0.26 + (var(--pl-hero-late) * 0.72)) !important;
	transform: translate3d(0, calc((1 - var(--pl-hero-late)) * 2.6rem), 0);
	background: url("/assets/generated/hero-divider.svg") center bottom / 100% 100% no-repeat;
}

@media (prefers-reduced-motion: reduce) {
	.papalu-hero--ready .papalu-hero__atmosphere-image,
	.papalu-hero--ready .papalu-hero__word,
	.papalu-hero--ready .papalu-hero__product,
	.papalu-hero--ready .papalu-hero__ingredient,
	.papalu-hero--ready .papalu-hero__card,
	.papalu-hero__mesh,
	.papalu-hero__wash,
	.papalu-hero__glow,
	.papalu-hero__stage {
		animation: none !important;
	}
}

.pl-intro-section {
	margin-top: -0.5rem;
	padding-top: clamp(5rem, 7vw, 6.25rem);
	background:
		radial-gradient(circle at 14% 6%, rgba(107, 186, 157, 0.08), transparent 18%),
		linear-gradient(180deg, #f6f0e5 0%, #f7f2e8 100%);
}

.pl-intro-section::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -3.3rem;
	height: clamp(4rem, 6vw, 5rem);
	background: url("/assets/generated/hero-divider.svg") center top / 100% 100% no-repeat;
	opacity: 0.95;
	pointer-events: none;
}

@media (max-width: 921px) {

	.papalu-hero {
		padding-top: calc(var(--pl-shell-offset) + 2.2rem);
		padding-bottom: 7rem;
	}

	.papalu-hero__canvas {
		grid-template-columns: 1fr;
		min-height: auto;
		gap: 2rem;
		width: min(calc(100% - 1.4rem), 1180px);
	}

	.papalu-hero__content {
		order: 1;
	}

	.papalu-hero__products {
		order: 2;
		min-height: 18.5rem;
		margin-top: -0.5rem;
		transform: none;
	}

	.papalu-hero__word {
		display: none !important;
	}

	.papalu-hero__copy,
	.papalu-hero__desc {
		max-width: 100%;
	}

	.papalu-hero__title {
		max-width: 8ch;
		font-size: clamp(3rem, 11vw, 4.8rem);
	}

	.papalu-hero__desc {
		max-width: 22rem;
	}

	.papalu-hero__stage {
		left: 50%;
		bottom: 6%;
		width: min(42rem, 122%);
		height: 8.5rem;
	}

	.papalu-hero__stage-shadow {
		left: 50%;
		bottom: 4%;
		width: min(18rem, 70%);
	}

	.papalu-hero__product--burger {
		left: 50%;
		width: min(20rem, 92%);
		top: 47%;
		opacity: 1;
		transform: translate3d(-50%, -50%, 0) scale(1) rotate(-4deg);
	}

	.papalu-hero__product--wrap {
		display: none;
	}

	.papalu-hero__ingredients {
		display: none !important;
	}

	.papalu-hero__cards {
		display: none !important;
	}

	.papalu-hero--ready .papalu-hero__product--burger,
	.papalu-hero--ready .papalu-hero__product--wrap,
	.papalu-hero--ready .papalu-hero__ingredient,
	.papalu-hero--ready .papalu-hero__card,
	.papalu-hero--ready .papalu-hero__word {
		animation: none !important;
	}

	.pl-intro-section {
		padding-top: 5rem;
	}
}

@media (max-width: 544px) {

	.papalu-hero {
		padding-top: calc(var(--pl-shell-offset) + 1.8rem);
	}

	.papalu-hero__title {
		font-size: clamp(2.7rem, 12vw, 3.8rem);
		transform: none;
	}

	.papalu-hero__desc {
		font-size: 1rem;
		transform: none;
		opacity: 1;
	}

	.papalu-hero__actions {
		flex-direction: column;
		transform: none;
		opacity: 1;
	}

	.papalu-hero__cta {
		width: 100%;
	}

	.papalu-hero__products {
		min-height: 16rem;
	}

	.papalu-hero__stage {
		height: 7rem;
		transform: translateX(-50%);
	}

	.papalu-hero__product--burger {
		width: min(18rem, 94%);
		top: 47%;
	}

	.papalu-hero__product--wrap {
		display: none;
	}

	.pl-intro-section::before {
		top: -2.45rem;
		height: 3rem;
		background-size: 165% 100%;
	}
}

@media (min-width: 922px) {
	.papalu-hero {
		height: 420svh !important;
		min-height: 3400px !important;
		padding-bottom: 0;
	}

	.papalu-hero__sticky {
		min-height: 620px;
	}

	.papalu-hero__canvas {
		min-height: calc(100svh - var(--pl-shell-offset));
		align-items: center;
	}
}

@media (max-width: 921px) {
}


/* Post-hero premium editorial system */
:root {
	--pl-surface-0: #f2ecdf;
	--pl-surface-1: #f7f3ea;
	--pl-surface-2: #fffdf8;
	--pl-surface-3: #123933;
	--pl-ink-strong: #183732;
	--pl-ink-muted: #355852;
	--pl-ink-on-dark: #f6f0e4;
	--pl-accent: #2c6f62;
	--pl-outline-soft: rgba(23, 54, 48, 0.14);
	--pl-shadow-soft: 0 18px 34px rgba(8, 26, 23, 0.11);
	--pl-shadow-deep: 0 24px 44px rgba(6, 22, 20, 0.34);
	--pl-space-y: clamp(5rem, 8vw, 7.4rem);
	--pl-shell-w: min(1160px, calc(100% - 2rem));
}

@media (max-width: 976px) {
}

@media (max-width: 921px) {
}

/* Header V3: floating island */
:root {
	--site-header-v3-height: 4.35rem;
	--pl-topbar-height: 0rem;
	--pl-header-gap: 0rem;
	--pl-header-height: var(--site-header-v3-height);
	--pl-shell-offset: calc(var(--site-header-v3-height) + 0.95rem);
}

.site-header-v3 {
	position: fixed;
	top: 0.72rem;
	left: 50%;
	width: min(1180px, calc(100% - 32px));
	transform: translateX(-50%);
	z-index: 4300;
	color: #f8f2e8;
}

.site-header-v3__shell {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: clamp(0.7rem, 2vw, 1.6rem);
	min-height: var(--site-header-v3-height);
	padding: 0.42rem 0.92rem;
	border-radius: 1.15rem;
	border: 1px solid rgba(244, 238, 228, 0.14);
	background: linear-gradient(180deg, rgba(9, 33, 29, 0.72), rgba(9, 33, 29, 0.56));
	box-shadow: 0 14px 30px rgba(4, 17, 15, 0.22);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.site-header-v3__brand {
	grid-column: 1;
	display: inline-flex;
	align-items: center;
	min-width: 0;
	text-decoration: none;
}

.site-header-v3__brand img {
	width: clamp(132px, 12vw, 172px);
	height: auto;
	display: block;
}

.site-header-v3__nav {
	grid-column: 2;
	justify-self: center;
	min-width: 0;
}

.site-header-v3__nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-flex;
	align-items: center;
	gap: clamp(0.9rem, 1.7vw, 1.5rem);
	white-space: nowrap;
}

.site-header-v3__nav-list a {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 0.32rem 0.12rem;
	font-family: var(--pl-font);
	font-size: 0.73rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	color: rgba(250, 245, 236, 0.9);
}

.site-header-v3__nav-list a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.02rem;
	height: 1px;
	background: rgba(250, 245, 236, 0.8);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.site-header-v3__nav-list a:hover::after,
.site-header-v3__nav-list a:focus-visible::after,
.site-header-v3__nav-list a[aria-current="page"]::after {
	transform: scaleX(1);
}

.site-header-v3__actions {
	grid-column: 3;
	justify-self: end;
	display: inline-flex;
	align-items: center;
	gap: 0.46rem;
}

.site-header-v3__phone {
	display: inline-flex;
	align-items: center;
	min-height: 2.05rem;
	padding: 0.44rem 0.68rem;
	border-radius: 999px;
	border: 1px solid rgba(248, 242, 232, 0.16);
	background: rgba(248, 242, 232, 0.08);
	text-decoration: none;
	font-family: var(--pl-font);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(248, 242, 232, 0.92);
	white-space: nowrap;
}

.site-header-v3__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.16rem;
	padding: 0.5rem 0.9rem;
	border-radius: 20px;
	border: 1px solid rgba(254, 248, 238, 0.36);
	background: linear-gradient(145deg, #fff9ef, #f2f8ee);
	text-decoration: none !important;
	font-family: var(--pl-font);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #143a35 !important;
	white-space: nowrap;
	transition: transform 0.2s ease;
}

.site-header-v3__cta:hover {
	transform: translate3d(0, -1px, 0);
}

.site-header-v3__cta--reserve {
	border-color: rgba(248, 242, 232, 0.24);
	background: rgba(248, 242, 232, 0.08);
	color: #fff8ee !important;
}

.site-header-v3__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 2.42rem;
	min-width: 2.42rem;
	min-height: 2.42rem;
	padding: 0;
	border-radius: 999px;
	border: 1px solid rgba(248, 242, 232, 0.22);
	background:
		linear-gradient(145deg, rgba(248, 242, 232, 0.14), rgba(248, 242, 232, 0.06));
	color: rgba(248, 242, 232, 0.96);
	font-family: var(--pl-font);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-header-v3__toggle:hover {
	transform: translate3d(0, -1px, 0);
	border-color: rgba(248, 242, 232, 0.34);
}

.site-header-v3__toggle-lines {
	position: relative;
	width: 1.05rem;
	height: 0.78rem;
	display: block;
}

.site-header-v3__toggle-lines span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.22s ease, opacity 0.18s ease, top 0.22s ease;
}

.site-header-v3__toggle-lines span:nth-child(1) {
	top: 0;
}

.site-header-v3__toggle-lines span:nth-child(2) {
	top: calc(50% - 1px);
}

.site-header-v3__toggle-lines span:nth-child(3) {
	top: calc(100% - 2px);
}

.site-header-v3--menu-open .site-header-v3__toggle {
	background: #f8f2e8;
	color: #143a35;
	border-color: rgba(254, 248, 238, 0.62);
}

.site-header-v3--menu-open .site-header-v3__toggle-lines span:nth-child(1) {
	top: calc(50% - 1px);
	transform: rotate(45deg);
}

.site-header-v3--menu-open .site-header-v3__toggle-lines span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0.25);
}

.site-header-v3--menu-open .site-header-v3__toggle-lines span:nth-child(3) {
	top: calc(50% - 1px);
	transform: rotate(-45deg);
}

.site-header-v3__panel {
	margin-top: 0.38rem;
	padding: 0.85rem 0.9rem 0.95rem;
	border-radius: 1rem;
	border: 1px solid rgba(248, 242, 232, 0.14);
	/* Bewusst blickdicht (kein alpha, kein backdrop-filter): die alte
	   Version war zu ~90-95% transparent OHNE backdrop-filter/blur, so dass
	   der Seiteninhalt dahinter (Hero-Titel/-Bild) scharf und lesbar
	   durchschien statt weich zu verschwimmen. */
	background: linear-gradient(180deg, #0a221e, #0a1f1c);
	box-shadow: 0 12px 24px rgba(4, 17, 15, 0.2);
	display: grid;
	gap: 0.72rem;
}

.site-header-v3__panel[hidden] {
	display: none !important;
}

.site-header-v3__panel-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.55rem;
}

.site-header-v3__panel-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.34rem;
}

.site-header-v3__panel-nav a {
	display: block;
	padding: 0.46rem 0.12rem;
	text-decoration: none;
	font-family: var(--pl-font);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(248, 242, 232, 0.96);
}

.site-header-v3__panel-meta {
	display: grid;
	gap: 0.3rem;
}

.site-header-v3__panel-meta a {
	text-decoration: none;
	font-family: var(--pl-font);
	font-size: 0.74rem;
	color: rgba(227, 237, 233, 0.92);
}

.site-header-v3--compact .site-header-v3__shell {
	min-height: 3.95rem;
	padding-block: 0.33rem;
	background: linear-gradient(180deg, rgba(9, 33, 29, 0.86), rgba(9, 33, 29, 0.76));
}

.site-header-v3 a:focus-visible,
.site-header-v3 button:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}

@media (max-width: 1120px) {
	.site-header-v3__phone {
		display: none;
	}
}

@media (max-width: 921px) {
	:root {
		--site-header-v3-height: 4.05rem;
		--pl-shell-offset: calc(var(--site-header-v3-height) + 0.75rem);
	}

	.site-header-v3 {
		top: 0.5rem;
	}

	.site-header-v3__shell {
		grid-template-columns: auto 1fr auto;
		gap: 0.52rem;
		padding-inline: 0.66rem;
		border-radius: 0.92rem;
	}

	.site-header-v3__brand img {
		width: clamp(118px, 33vw, 144px);
	}

	.site-header-v3__nav,
	.site-header-v3__cta--desktop {
		display: none;
	}

	.site-header-v3__toggle {
		display: inline-flex;
	}

	.site-header-v3__cta--mobile {
		display: inline-flex;
	}
}

@media (max-width: 560px) {
	:root {
		--site-header-v3-height: 3.85rem;
		--pl-shell-offset: calc(var(--site-header-v3-height) + 0.68rem);
	}

	.site-header-v3 {
		width: min(1180px, calc(100% - 16px));
	}

	.site-header-v3__cta--mobile-secondary {
		display: none;
	}
}

@media (min-width: 922px) {
	.site-header-v3__toggle,
	.site-header-v3__cta--mobile,
	.site-header-v3__panel {
		display: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-header-v3__shell,
	.site-header-v3__nav-list a::after,
	.site-header-v3__cta {
		transition: none !important;
	}
}

/* Global overrides for hero overflow */
.home .entry-content {
	overflow: visible !important;
}

/* Hero: scroll-scrub scene */
.papalu-hero {
	--shell-offset: var(--pl-shell-offset, 7.5rem);
	--hero-crossfade: 0;
	--ing-lettuce-scale: 1;
	--ing-tomato-scale: 1;
	--ing-onion-scale: 1;
	position: relative;
	isolation: isolate;
	height: auto !important;
	min-height: 0 !important;
	/* overflow:visible (bestätigt fehlerfrei getestet, u.a. gegen den
	   rechten Rand-Abstand): Wrap/Burger dürfen unten aus der Box
	   auslaufen, #aboutus/Galerie haben dafür einen deckenden Hintergrund
	   in derselben Farbe (statt transparent), der das Auslaufen sauber
	   abfängt. Horizontal bleibt alles über html/body { overflow-x: hidden }
	   geclippt. */
	overflow: visible;
	z-index: 100;
	background:
		radial-gradient(circle at 14% 18%, rgba(116, 212, 184, 0.13), transparent 35%),
		radial-gradient(circle at 84% 26%, rgba(255, 242, 221, 0.1), transparent 28%),
		linear-gradient(180deg, #102d29 0%, #123632 40%, #17423d 100%);
	color: #f8f2e8;
}

#aboutus {
	position: relative;
	/* Kein eigenes z-index hier (Desktop): sonst würde #aboutus als Ganzes
	   (inkl. Foto) über/unter dem Hero landen, es lässt sich dann nicht
	   trennen. Stattdessen soll NUR das Foto (.pl-about-media, siehe dort)
	   über dem Hero-Bleed liegen, der Rest von #aboutus bleibt normal
	   dahinter. Mobil bekommt weiter unten explizit wieder z-index:101
	   (dort überlappt der Hero #aboutus ohnehin nicht mehr nennenswert). */
}

.papalu-hero__track {
	position: relative;
	height: auto;
	overflow: visible !important;
}

.papalu-hero__sticky {
	position: relative;
	height: calc(100svh - var(--shell-offset));
	min-height: 580px;
	overflow: visible !important;
}

.papalu-hero__scene {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	display: grid;
	grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
	gap: clamp(1.2rem, 3.4vw, 4.4rem);
	align-items: center;
	padding-block: clamp(1rem, 2.2vw, 2.8rem);
	padding-inline: clamp(1.2rem, 3.2vw, 3.2rem);
	overflow: visible !important;
}

.papalu-hero__bg,
.papalu-hero__visual,
.papalu-hero__reveal {
	position: absolute;
	inset: 0;
	overflow: visible !important;
}

.papalu-hero__bg {
	pointer-events: none;
	z-index: 0;
}

.papalu-hero__bg-glow {
	position: absolute;
	left: 58%;
	top: 48%;
	width: min(58rem, 66vw);
	aspect-ratio: 1;
	transform: translate(-50%, -50%);
	border-radius: 999px;
	background: radial-gradient(circle, rgba(254, 236, 212, 0.19), rgba(254, 236, 212, 0) 70%);
	opacity: calc(0.34 + (var(--hero-crossfade, 0) * 0.16));
}

.papalu-hero__bg-mesh {
	position: absolute;
	left: -7%;
	top: 8%;
	width: min(26rem, 30vw);
	aspect-ratio: 1;
	border-radius: 999px;
	background: radial-gradient(circle at 35% 35%, rgba(103, 206, 171, 0.2), rgba(103, 206, 171, 0) 70%);
	opacity: 0.36;
}

.papalu-hero__bg-accent {
	position: absolute;
	width: min(28rem, 26vw);
	aspect-ratio: 1;
	border-radius: 999px;
	filter: blur(1px);
	opacity: 0.28;
}

.papalu-hero__bg-accent--left {
	left: 10%;
	bottom: 18%;
	background: radial-gradient(circle at center, rgba(115, 205, 171, 0.24), rgba(115, 205, 171, 0) 75%);
}

.papalu-hero__bg-accent--right {
	right: 2%;
	top: 10%;
	background: radial-gradient(circle at center, rgba(255, 232, 203, 0.22), rgba(255, 232, 203, 0) 72%);
}

.papalu-hero__stage {
	position: absolute;
	left: 61%;
	bottom: 12%;
	width: min(50rem, 82%);
	height: clamp(6rem, 14vw, 10rem);
	transform: translateX(-50%) scale(calc(1.06 + (var(--hero-crossfade, 0) * 0.08)));
	border-radius: 999px;
	background:
		radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.94), rgba(255, 248, 239, 0.86) 44%, rgba(255, 248, 239, 0) 76%),
		radial-gradient(circle at 50% 84%, rgba(191, 38, 27, 0.12), rgba(191, 38, 27, 0) 54%);
	opacity: clamp(0, calc(0.9 + (var(--hero-crossfade, 0) * 0.1)), 1);
}

.papalu-hero__stage-shadow {
	position: absolute;
	left: 61%;
	bottom: 10%;
	width: min(30rem, 48%);
	height: clamp(2.4rem, 5vw, 3.8rem);
	transform: translateX(-50%) scale(calc(0.88 + (var(--hero-crossfade, 0) * 0.14)));
	border-radius: 999px;
	background: radial-gradient(circle, rgba(9, 25, 22, 0.52), rgba(9, 25, 22, 0) 74%);
	opacity: calc(0.44 + (var(--hero-crossfade, 0) * 0.16));
}

.papalu-hero__copy {
	position: relative;
	z-index: 3;
	max-width: 33rem;
	display: grid;
	gap: 1rem;
}

.papalu-hero__eyebrow {
	margin: 0;
	font-family: var(--pl-font);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(248, 242, 232, 0.7);
}

.papalu-hero__title {
	margin: 0;
	max-width: 9ch;
	font-size: clamp(3rem, 6vw, 6rem);
	line-height: 0.9;
	letter-spacing: -0.06em;
	text-wrap: balance;
	color: #fff9ef;
}

.papalu-hero__desc {
	margin: 0;
	max-width: 34ch;
	font-size: clamp(1rem, 1.45vw, 1.14rem);
	line-height: 1.62;
	color: rgba(248, 242, 232, 0.86);
}

.papalu-hero__actions {
	display: none;
	flex-wrap: wrap;
	gap: 0.78rem;
	margin-top: 0.4rem;
}

.papalu-hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.3rem;
	padding: 0.92rem 1.28rem;
	border-radius: 20px;
	border: 1px solid transparent;
	text-decoration: none !important;
	font-family: var(--pl-font);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.papalu-hero__cta--primary {
	background: linear-gradient(135deg, #fff8ee, #ecf8f0);
	color: #143833 !important;
}

.papalu-hero__cta--secondary {
	background: rgba(255, 248, 236, 0.08);
	border-color: rgba(255, 248, 236, 0.24);
	color: #f9f3e9 !important;
}

.papalu-hero__cta:hover {
	transform: translate3d(0, -1px, 0);
}

.papalu-hero__cta:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 3px;
}

.papalu-hero__visual {
	z-index: 2;
	pointer-events: none;
	overflow: visible !important;
}

.papalu-hero__word {
	display: none !important;
	position: absolute;
	left: 52%;
	top: 8.5%;
	transform: translateX(-50%);
	font-family: var(--pl-font);
	font-size: clamp(6.8rem, 16vw, 14.5rem);
	font-weight: 800;
	letter-spacing: -0.08em;
	white-space: nowrap;
	color: rgba(255, 250, 242, 0.24);
}

.papalu-hero__word--wrap {
	opacity: clamp(0, calc(1.14 - (var(--hero-crossfade, 0) * 1.28)), 1);
}

.papalu-hero__word--burger {
	opacity: clamp(0, var(--hero-crossfade, 0), 1);
}

.papalu-hero__product,
.papalu-hero__ingredient,
.papalu-hero__card {
	position: absolute;
	will-change: transform, opacity;
}

	.papalu-hero__product {
		width: min(45rem, 78%);
		max-width: none;
		height: auto;
		object-fit: contain;
		z-index: 4;
		filter: drop-shadow(0 30px 38px rgba(8, 24, 21, 0.26));
		backface-visibility: hidden;
		transform-style: preserve-3d;
	}

	.papalu-hero__product--wrap {
		left: 62%;
		top: 48%;
		opacity: clamp(0, calc(1 - (var(--hero-crossfade, 0) * 1.16)), 1);
		transform: translate3d(
			calc(-52% - (var(--hero-crossfade, 0) * 22%)),
			calc(-53% - (var(--hero-crossfade, 0) * 14%)),
			0
		) scale(calc(1.08 - (var(--hero-crossfade, 0) * 0.24))) rotate(calc(1deg - (var(--hero-crossfade, 0) * 9deg)));
	}

	.papalu-hero__product--burger {
		left: 60%;
		top: 50%;
		opacity: clamp(0, var(--hero-crossfade, 0) * 1.12, 1);
		transform: translate3d(
			calc(-44% + ((1 - var(--hero-crossfade, 0)) * 18%)),
			calc(-46% - ((1 - var(--hero-crossfade, 0)) * 12%)),
			0
		) scale(calc(0.74 + (var(--hero-crossfade, 0) * 0.22))) rotate(calc(7deg - (var(--hero-crossfade, 0) * 9deg)));
	}

.papalu-hero__ingredient {
	width: clamp(10rem, 22vw, 20rem);
	z-index: 2;
	transform-origin: center center;
	opacity: calc(0.2 + (0 * 0.14) + (1 * 0.2) + (0 * 0.22) + (0 * 0.16) - (0 * 0.4));
}

.papalu-hero__ingredient--lettuce {
	left: -26%;
	top: 74%;
	width: clamp(16rem, 35vw, 34rem);
	opacity: calc(0.24 + (1 * 0.22) + (0 * 0.24) + (0 * 0.12) - (0 * 0.34));
	transform: translate3d(
		calc((1 * 34vw) + (0 * 30vw) + (0 * 16vw) + (0 * 18vw)),
		calc((0 * 14vh) - (1 * 24vh) - (0 * 18vh) - (0 * 10vh) + (0 * 45vh)),
		0
	) rotate(calc(-22deg + (1 * 10deg) + (0 * 16deg) + (0 * 10deg))) scale(calc(var(--ing-lettuce-scale) * (0.98 + (1 * 0.14) + (0 * 0.1) + (0 * 0.04))));
}

.papalu-hero__ingredient--tomato {
	right: -24%;
	top: -17%;
	width: clamp(12rem, 26vw, 24rem);
	opacity: calc(0.2 + (1 * 0.16) + (0 * 0.24) + (0 * 0.2) - (0 * 0.42));
	transform: translate3d(
		calc((1 * -18vw) + (0 * -30vw) + (0 * -24vw) + (0 * -20vw)),
		calc((0 * -14vh) + (1 * 16vh) + (0 * 24vh) + (0 * 20vh) + (0 * 55vh)),
		0
	) rotate(calc(24deg - (1 * 8deg) - (0 * 18deg) - (0 * 12deg))) scale(calc(var(--ing-tomato-scale) * (0.96 + (1 * 0.08) + (0 * 0.14) + (0 * 0.08))));
}

.papalu-hero__ingredient--onion {
	right: -29%;
	top: 14%;
	width: clamp(14rem, 30vw, 30rem);
	opacity: calc(0.16 + (1 * 0.12) + (0 * 0.2) + (0 * 0.26) - (0 * 0.42));
	transform: translate3d(
		calc((1 * -12vw) + (0 * -26vw) + (0 * -30vw) + (0 * -22vw)),
		calc((0 * -8vh) + (1 * 3vh) + (0 * 10vh) + (0 * 16vh) + (0 * 18vh)),
		0
	) rotate(calc(18deg - (1 * 10deg) - (0 * 16deg) - (0 * 12deg))) scale(calc(var(--ing-onion-scale) * (0.94 + (1 * 0.06) + (0 * 0.12) + (0 * 0.12))));
}

.papalu-hero__card {
	z-index: 6;
	padding: 0.68rem 0.88rem;
	border-radius: 0.85rem;
	background: linear-gradient(135deg, rgba(17, 51, 46, 0.88), rgba(38, 93, 82, 0.72));
	border: 1px solid rgba(255, 248, 236, 0.22);
	box-shadow: 0 14px 24px rgba(6, 21, 18, 0.2);
	display: grid;
	gap: 0.15rem;
}

.papalu-hero__card strong,
.papalu-hero__card span {
	line-height: 1.2;
}

.papalu-hero__card strong {
	font-size: 0.74rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff8ee;
}

.papalu-hero__card span {
	font-size: 0.67rem;
	letter-spacing: 0.05em;
	color: rgba(248, 242, 232, 0.84);
	text-transform: uppercase;
}

.papalu-hero__card--a {
	left: 43%;
	top: 20%;
	opacity: clamp(0, calc((1 * 1.06) - (0 * 1.2) - (0 * 0.34)), 1);
	transform: translate3d(0, calc((1 - 1) * 0.4rem), 0);
}

.papalu-hero__card--b {
	right: 11%;
	top: 52%;
	opacity: clamp(0, calc((1 * 1.02) - (0 * 1.12) - (0 * 0.36)), 1);
}

.papalu-hero__card--c {
	left: 47%;
	top: 18%;
	opacity: clamp(0, calc((0 * 0.24) + (0 * 0.98) - (0 * 1.2)), 1);
	transform: translate3d(0, calc((1 - 0) * 0.8rem), 0);
}

.papalu-hero__reveal {
	display: none !important;
}

.papalu-hero__stage,
.papalu-hero__stage-shadow {
	display: none !important;
}

.pl-intro-section::before {
	content: none !important;
	display: none !important;
	background: none !important;
}

.papalu-hero__asset.is-missing {
	display: none !important;
}

.papalu-hero--no-product .papalu-hero__visual::before {
	content: "";
	position: absolute;
	inset: 15% 18% 15%;
	border-radius: 1.1rem;
	border: 1px dashed rgba(255, 248, 236, 0.26);
	background: linear-gradient(135deg, rgba(255, 248, 236, 0.08), rgba(255, 248, 236, 0.02));
}

.papalu-hero--ready .papalu-hero__word,
.papalu-hero--ready .papalu-hero__product,
.papalu-hero--ready .papalu-hero__ingredient,
.papalu-hero--ready .papalu-hero__card,
.papalu-hero--ready .papalu-hero__stage,
.papalu-hero--ready .papalu-hero__bg-glow {
	animation: none !important;
}

@media (max-width: 1199px) and (min-width: 768px) {
	.papalu-hero__scene {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
		gap: clamp(1rem, 2.5vw, 2rem);
	}

	.papalu-hero__title {
		font-size: clamp(2.7rem, 5.6vw, 4.4rem);
	}
}

@media (max-width: 767px) {
	.papalu-hero {
		padding-top: calc(var(--shell-offset) + 0.55rem);
		padding-bottom: 0;
	}

	.papalu-hero__track {
		height: auto;
	}

	.papalu-hero__sticky {
		height: auto;
		min-height: 0;
	}

	.papalu-hero__scene {
		display: block;
		width: 100%;
		height: auto;
		min-height: 0;
		padding: 0;
	}

	.papalu-hero__copy {
		max-width: 100%;
		padding-top: clamp(0.7rem, 3.6vw, 1.15rem);
		padding-inline: clamp(0.95rem, 4.8vw, 1.35rem);
		transform: none;
		opacity: 1;
	}

	.papalu-hero__title {
		font-size: clamp(2.45rem, 11vw, 3.7rem);
	}

	.papalu-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.papalu-hero__cta {
		width: 100%;
	}

	.papalu-hero__visual {
		position: relative;
		min-height: clamp(17rem, 68vw, 22rem);
		margin-top: 0.1rem;
		overflow: visible !important;
	}

	.papalu-hero__word {
		left: 50%;
		top: 7%;
		font-size: clamp(5.6rem, 22vw, 10rem);
	}

	.papalu-hero__word--wrap,
	.papalu-hero__word--burger {
		display: block;
	}

		.papalu-hero__product--wrap {
		display: block;
		left: 57%;
		top: 49%;
		width: min(29rem, 96%);
		transform: translate3d(
			calc(-51.5% - (var(--hero-crossfade, 0) * 16%)),
			calc(-52.2% - (var(--hero-crossfade, 0) * 10%)),
			0
		) scale(calc(1.04 - (var(--hero-crossfade, 0) * 0.16))) rotate(calc(1deg - (var(--hero-crossfade, 0) * 7deg)));
	}

		.papalu-hero__product--burger {
		display: block;
		left: 56%;
		top: 51%;
		width: min(28rem, 94%);
		transform: translate3d(
			calc(-47% + ((1 - var(--hero-crossfade, 0)) * 13%)),
			calc(-48% - ((1 - var(--hero-crossfade, 0)) * 9%)),
			0
		) scale(calc(0.64 + (var(--hero-crossfade, 0) * 0.24))) rotate(calc(8deg - (var(--hero-crossfade, 0) * 10deg)));
	}

	.papalu-hero__stage {
		left: 50%;
		width: min(31rem, calc(100% - 0.8rem));
		bottom: 12%;
		transform: translateX(-50%) scale(calc(0.9 + (1 * 0.06) + (0 * 0.04)));
	}

	.papalu-hero__stage-shadow {
		left: 50%;
		width: min(18rem, calc(100% - 2.4rem));
		bottom: 9%;
		transform: translateX(-50%) scale(calc(0.9 + (0 * 0.08)));
	}

	.papalu-hero__ingredient {
		display: block;
		width: clamp(8.8rem, 28vw, 14rem);
	}

	/* Die alten mehrgliedrigen translate3d()-Formeln hier waren Reste des
	   früheren Mehr-Variablen-Animationssystems (--hero-wrap/-swap/-burger/
	   -exit): nur der erste Term war "aktiv" (* 1), die anderen immer * 0 –
	   macht die verbleibende Zahl aber nicht harmlos: bei Tomate z.B. zog
	   ein übrig gebliebener translateX(-12vw) den seitlichen Bleed aus
	   right:-8% wieder nach INNEN (netto ~-4% der Breite), wodurch die
	   Tomate nie ganz den rechten Bildschirmrand erreichte, sondern schon
	   vorher "leer" endete. Deshalb hier bereinigt: nur noch die wirklich
	   genutzten Werte (Y-Versatz, Rotation, Skalierung), der seitliche
	   Bleed kommt jetzt allein aus left/right mit ausreichend Puffer. */
	.papalu-hero__ingredient--lettuce {
		left: -30%;
		top: 72%;
		width: clamp(13.5rem, 48vw, 19rem);
		transform: translate3d(0, -18vh, 0) rotate(-10deg) scale(calc(var(--ing-lettuce-scale) * 1.06));
	}

	.papalu-hero__ingredient--tomato {
		right: -18%;
		top: -8%;
		width: clamp(10.4rem, 40vw, 15.8rem);
		transform: translate3d(0, 12vh, 0) rotate(14deg) scale(calc(var(--ing-tomato-scale) * 1.02));
	}

	.papalu-hero__ingredient--onion {
		right: -34%;
		top: 18%;
		width: clamp(11.5rem, 44vw, 18rem);
		transform: translate3d(0, 3vh, 0) rotate(8deg) scale(calc(var(--ing-onion-scale) * 0.96));
	}

	.papalu-hero__card {
		display: grid;
		padding: 0.56rem 0.72rem;
		border-radius: 0.72rem;
	}

	.papalu-hero__card strong {
		font-size: 0.67rem;
	}

	.papalu-hero__card span {
		font-size: 0.6rem;
	}

	.papalu-hero__card--a {
		left: 34%;
		top: 22%;
	}

	.papalu-hero__card--b {
		right: 4%;
		top: 54%;
	}

	.papalu-hero__card--c {
		left: 38%;
		top: 20%;
	}

	.papalu-hero__reveal {
		opacity: 0.62;
		transform: none;
	}

	#aboutus {
		z-index: 101;
		background: #17423d !important;
		margin-top: 0;
		padding-top: clamp(2.2rem, 7vw, 3.25rem);
	}
}

@media (max-width: 479px) {
	.papalu-hero__stage {
		width: calc(100% - 0.7rem);
	}

	.papalu-hero__stage-shadow {
		width: calc(100% - 2.2rem);
	}

	.papalu-hero__word {
		left: 50%;
		top: 6.5%;
		font-size: clamp(5rem, 22vw, 8.2rem);
	}

	.papalu-hero__card--b {
		transform: scale(0.94);
		transform-origin: top right;
	}

	.papalu-hero__ingredient--onion {
		transform: translate3d(
			calc((1 * -8vw) + (0 * -17vw) + (0 * -18vw) + (0 * -14vw)),
			calc((0 * -6vh) + (1 * 2vh) + (0 * 7vh) + (0 * 11vh) + (0 * 12vh)),
			0
		) rotate(calc(16deg - (1 * 7deg) - (0 * 11deg) - (0 * 9deg))) scale(calc(var(--ing-onion-scale) * 0.86));
	}
}

@media (prefers-reduced-motion: reduce) {
	.papalu-hero__track {
		height: auto;
	}

	.papalu-hero__sticky {
		position: relative !important;
		top: auto !important;
		height: auto !important;
	}

	.papalu-hero__scene {
		display: block;
		width: 100%;
		padding-block: 0;
	}

	.papalu-hero__copy {
		transform: none;
		opacity: 1;
	}

	.papalu-hero__word,
	.papalu-hero__card,
	.papalu-hero__product--wrap {
		display: none !important;
	}

	.papalu-hero__ingredient {
		display: block !important;
		opacity: 0.28;
	}

	.papalu-hero__ingredient--lettuce {
		left: -18%;
		top: 57%;
		width: clamp(13rem, 34vw, 20rem);
		transform: translate3d(0, 0, 0) rotate(-12deg) scale(1);
	}

	.papalu-hero__ingredient--tomato {
		right: -13%;
		top: 5%;
		width: clamp(10.5rem, 28vw, 16rem);
		transform: translate3d(0, 0, 0) rotate(10deg) scale(1);
	}

	.papalu-hero__ingredient--onion {
		right: -20%;
		top: 28%;
		width: clamp(11.5rem, 30vw, 18rem);
		transform: translate3d(0, 0, 0) rotate(7deg) scale(0.96);
		opacity: 0.24;
	}

	.papalu-hero__product--burger {
		left: 50%;
		top: 50%;
		width: min(24rem, 88%);
		transform: translate3d(-50%, -50%, 0) scale(0.9);
		opacity: 1;
	}

	.papalu-hero__reveal {
		opacity: 0.65;
		transform: none;
	}

	.papalu-hero__cta {
		transition: none;
	}
}



.pl-ref-shell {
	position: relative;
	width: 100%;
	max-width: 1240px;
	padding: 0 clamp(1.25rem, 5vw, 4rem);
	margin: 0 auto;
}

.pl-flow {
	position: relative;
	padding: clamp(5.4rem, 8.6vw, 8.2rem) 0;
	/* Beide Achsen explizit hidden setzen (nicht nur overflow-x) – sonst
	   erzwingt die CSS-Spec für die unbenannte Achse "auto" statt "visible",
	   was einen unsichtbaren Scroll-Container mit eigener Scrollbar-Rille
	   erzeugen kann (Ursache des Rand-Bugs). */
	overflow: hidden;
}

.home .entry-content[data-ast-blocks-layout] > .pl-flow {
	max-width: 100%;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

/* Section Backgrounds & Colors */
	section[aria-labelledby="pl-about-title"],
	section[aria-labelledby="pl-gallery-title"] {
		background: #17423d;
		color: #f7f3ea;
	}

	section[aria-labelledby="pl-gallery-title"].pl-flow {
		padding-top: max(clamp(5rem, 10vh, 7rem), calc(50svh - 17rem));
	}

	section[aria-labelledby="pl-about-title"] .pl-orbit,
	section[aria-labelledby="pl-about-title"] .pl-dot {
		display: none;
	}

	.pl-dot--gallery {
		display: none;
	}

section[aria-labelledby="pl-signature-title"] {
	background: #f6f0e5;
	color: #173d37;
	margin-top: clamp(6.5rem, 12vw, 12rem);
}

section[aria-labelledby="pl-signature-title"]::before {
	content: "";
	position: absolute;
	top: calc(-1 * clamp(6.5rem, 12vw, 12rem));
	left: 0;
	right: 0;
	height: clamp(6.5rem, 12vw, 12rem);
	background: linear-gradient(180deg, #17423d 0%, #29574f 30%, #8ba9a1 65%, #f6f0e5 100%);
	pointer-events: none;
}

section[aria-labelledby="pl-order-title"],
section[aria-labelledby="pl-reviews-title"],
section[aria-labelledby="pl-contact-title"] {
	background: #f6f0e5;
	color: #173d37;
}

.pl-ref-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 1.15rem;
	color: var(--pl-mint);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.pl-ref-eyebrow::before {
	content: "";
	width: 2.5rem;
	height: 1px;
	background: currentColor;
}

.pl-ref-title {
	margin: 0;
	font-family: var(--pl-font);
	font-size: clamp(2.8rem, 4vw, 4.5rem);
	line-height: 1.02;
	letter-spacing: -0.03em;
	color: inherit;
}

.pl-ref-title + .pl-ref-copy {
	margin-top: clamp(1rem, 1.8vw, 1.45rem);
}

.pl-ref-copy {
	margin: 0;
	font-size: 1.04rem;
	line-height: 1.8;
	max-width: 42rem;
}

section[aria-labelledby="pl-about-title"] .pl-ref-copy,
section[aria-labelledby="pl-gallery-title"] .pl-ref-copy {
	color: rgba(247, 243, 234, 0.76);
}

section[aria-labelledby="pl-signature-title"] .pl-ref-copy,
section[aria-labelledby="pl-order-title"] .pl-ref-copy,
section[aria-labelledby="pl-reviews-title"] .pl-ref-copy,
section[aria-labelledby="pl-contact-title"] .pl-ref-copy {
	color: rgba(23, 61, 55, 0.78);
}

.pl-ref-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.75rem;
}

.pl-ref-button,
.pl-ref-button:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	min-height: 3.6rem;
	padding: 0.95rem 1.45rem 0.9rem;
	border-radius: 20px;
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none !important;
	transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.pl-ref-button:hover,
.pl-ref-button:focus-visible {
	transform: translateY(-2px);
}

.pl-ref-button--primary {
	background: linear-gradient(135deg, var(--pl-green), var(--pl-green-deep));
	color: #f7f3ea;
	box-shadow: 0 18px 34px rgba(9, 31, 28, 0.18);
}

.pl-ref-button--light {
	background: linear-gradient(135deg, #fffef8, #ede5d8);
	color: var(--pl-green);
	box-shadow: 0 18px 34px rgba(17, 39, 35, 0.14);
}

.pl-ref-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
	gap: clamp(2rem, 4vw, 4.5rem);
	align-items: center;
}

.pl-orbit {
	position: absolute;
	border: 1px dashed rgba(56, 178, 145, 0.36);
	border-radius: 999px;
	pointer-events: none;
}

.pl-orbit--about {
	left: 3%;
	top: 12%;
	width: min(44rem, 68vw);
	height: min(36rem, 54vw);
}

.pl-orbit--contact {
	right: 5%;
	top: 18%;
	width: min(28rem, 34vw);
	height: min(18rem, 24vw);
}

.pl-dot {
	position: absolute;
	width: 1.1rem;
	height: 1.1rem;
	border-radius: 999px;
	background: #f59d17;
	box-shadow: 0 10px 24px rgba(245, 157, 23, 0.28);
}

.pl-dot--about {
	left: 70%;
	top: 17%;
}

.pl-dot--gallery {
	right: 8%;
	top: 14%;
}

	.pl-about-media {
		position: relative;
		padding: 0;
		/* Höher als .papalu-hero (z-index:150 ab Desktop): das Foto soll
		   auch dann sichtbar über dem Hero-Bleed liegen, wenn der Rest von
		   #aboutus (das kein eigenes z-index mehr hat) dahinter verschwindet. */
		z-index: 160;
	}

	.pl-feature-photo {
		position: relative;
		margin: 0;
		aspect-ratio: 1 / 1;
		border-radius: 2.1rem;
		overflow: hidden;
		background: #102c28;
		box-shadow: 0 30px 54px rgba(8, 27, 24, 0.22);
	}

	.pl-feature-photo img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

.pl-about-text {
	position: relative;
	z-index: 1;
}

.pl-about-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 2.35rem;
}

.pl-stat {
	padding: 1.15rem 1rem;
	border-radius: 1.4rem;
	background: rgba(255, 255, 255, 0.74);
	box-shadow: 0 16px 28px rgba(14, 36, 32, 0.08);
	color: #173d37;
}

.pl-stat strong {
	display: block;
	font-size: 1.5rem;
	color: var(--pl-green);
}

.pl-stat span {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(23, 61, 55, 0.54);
}

.pl-gallery-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
	gap: clamp(2rem, 4vw, 3.8rem);
	align-items: start;
}

.pl-gallery-copy {
	position: sticky;
	top: max(clamp(5rem, 10vh, 7rem), calc(50svh - 17rem));
	max-width: 25rem;
	padding-right: clamp(0rem, 1vw, 0.6rem);
}

	.pl-gallery-surface {
		position: relative;
		min-height: clamp(36rem, 220vh, 120rem);
		padding: 0;
	}

	.pl-gallery-track {
		position: sticky;
		top: max(clamp(5rem, 10vh, 7rem), calc(50svh - 17rem));
		display: grid;
		place-items: center;
		aspect-ratio: 1 / 1;
		max-width: min(34rem, 100%);
		margin-inline: auto;
	}

	.pl-gallery-card {
		position: absolute;
		inset: 0;
		min-height: 0;
		aspect-ratio: 1 / 1;
		border-radius: 2rem;
		overflow: hidden;
		box-shadow: 0 28px 44px rgba(14, 35, 31, 0.14);
		will-change: transform;
		contain: layout paint;
		backface-visibility: hidden;
	}

	.pl-gallery-card:nth-child(1) { z-index: 3; transform: translateY(calc(-110% * var(--stack-p-1, 0))); }
	.pl-gallery-card:nth-child(2) { z-index: 2; transform: translateY(calc(-110% * var(--stack-p-2, 0))); }
	.pl-gallery-card:nth-child(3) { z-index: 1; }

.pl-gallery-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pl-gallery-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 24, 22, 0.02), rgba(10, 24, 22, 0.36));
}

.pl-gallery-controls {
	display: none;
	gap: 0.9rem;
	justify-content: flex-end;
	margin-top: 1.6rem;
}

.pl-gallery-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.15rem;
	height: 3.15rem;
	border: 0;
	border-radius: 999px;
	background: #f59d17;
	color: #fff;
	font-size: 1.35rem;
	cursor: pointer;
	box-shadow: 0 18px 30px rgba(245, 157, 23, 0.24);
}

.pl-signature-panel {
	position: relative;
	display: block;
}

	.pl-signature-frame {
		position: relative;
		margin: 0;
		aspect-ratio: 1 / 1;
		border-radius: 2.2rem;
		background: #102c28;
		box-shadow: 0 30px 50px rgba(17, 35, 31, 0.16);
		overflow: hidden;
	}
	
	.pl-signature-frame::after {
		display: none;
	}

.pl-signature-food {
		position: relative;
		z-index: 1;
		display: block;
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: center center;
		background: #102c28;
	}

.pl-order-band {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
	gap: clamp(2.4rem, 4vw, 4rem);
	align-items: center;
	padding: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #173d37;
}

.pl-order-band .pl-ref-copy {
	color: rgba(23, 61, 55, 0.78);
}

	.pl-device-stack {
		position: relative;
		min-height: 0;
		aspect-ratio: 1 / 1;
		border-radius: 2.2rem;
		overflow: hidden;
		background: #102c28;
		box-shadow: 0 30px 50px rgba(17, 35, 31, 0.16);
	}
	
	.pl-device {
		position: absolute;
		inset: 0;
		overflow: hidden;
		background: transparent;
		box-shadow: none;
	}
	
	.pl-device--tablet {
		width: 100%;
		aspect-ratio: auto;
		border: 0;
		border-radius: 0;
		transform: none;
	}
	
	.pl-device--phone {
		display: none;
	}

.pl-device img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pl-store-row {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	margin-top: 1.8rem;
}

.pl-store-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	min-height: 4.2rem;
	padding: 0.7rem 1.3rem;
	border-radius: 20px;
	background: #0e2925;
	color: #fff8ee;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-decoration: none !important;
}

.pl-store-pill__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.7rem;
	height: 2.7rem;
	border-radius: 0.7rem;
	background: #fff;
	padding: 0.4rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.pl-store-pill__badge--papalu {
	background: transparent;
	padding: 0;
	box-shadow: none;
}

.pl-store-pill__badge img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.pl-contact-grid {
	display: grid;
	grid-template-columns: minmax(20rem, 0.48fr) minmax(0, 0.52fr);
	gap: clamp(2rem, 4vw, 4.5rem);
	align-items: start;
	margin-top: 3rem;
}

.pl-contact-cards {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.pl-map-frame {
	position: relative;
}

.pl-location-map-card {
	position: relative;
	aspect-ratio: 908 / 587;
	border-radius: 1.55rem;
	overflow: hidden;
	background: #e9e2d2;
	box-shadow: 0 20px 40px rgba(16, 37, 34, 0.16);
}

.pl-location-map-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(16, 37, 34, 0.08);
	pointer-events: none;
}

.pl-location-map-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pl-map-frame:hover .pl-location-map-card img {
	transform: scale(1.04);
}

.pl-map-route-pill {
	position: absolute;
	right: 1.1rem;
	bottom: -0.7rem;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.65rem 1.15rem;
	border-radius: 20px;
	background: var(--pl-green);
	color: #f7f3ea;
	font-size: 0.85rem;
	font-weight: 700;
	text-decoration: none !important;
	white-space: nowrap;
	border: 2.5px solid #f7f3ea;
	box-shadow: 0 14px 28px rgba(13, 34, 30, 0.38);
	transition: background 0.25s ease;
}

.pl-map-route-pill:hover {
	background: #143630;
}

@media (max-width: 480px) {
	.pl-map-route-pill {
		right: 0.85rem;
		bottom: -0.6rem;
		padding: 0.55rem 0.95rem;
		font-size: 0.78rem;
		gap: 0.3rem;
	}
}

.pl-contact-details {
	position: static;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
}

.pl-contact-card--address {
	grid-column: 1;
	grid-row: 1;
}

.pl-contact-card--phone {
	grid-column: 1;
	grid-row: 2;
}

.pl-contact-card--hours {
	grid-column: 2;
	grid-row: 1 / 3;
}

.pl-contact-card {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(16, 37, 34, 0.08);
	border-radius: 1.1rem;
	background: #fffcf6;
	box-shadow: 0 14px 26px rgba(13, 34, 30, 0.08);
	color: #173d37;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pl-contact-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 32px rgba(13, 34, 30, 0.14);
}

.pl-contact-card > div {
	min-width: 0;
}

.pl-contact-icon {
	display: grid;
	place-items: center;
	flex-shrink: 0;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 999px;
	background: var(--pl-green);
	color: #fff;
	font-size: 1.15rem;
}

.pl-contact-card strong {
	display: block;
	color: var(--pl-green);
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	overflow-wrap: break-word;
}

.pl-contact-card p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.4;
	color: rgba(23, 61, 55, 0.75);
	overflow-wrap: break-word;
}

.pl-route-link {
	display: inline-block;
	margin-top: 0.3rem;
	color: var(--pl-green);
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px solid rgba(23, 61, 55, 0.35);
}

.pl-route-link:hover {
	border-bottom-color: currentColor;
}

.pl-contact-map {
	position: relative;
	display: grid;
	align-content: start;
	min-height: 0;
	scroll-margin-top: calc(var(--pl-shell-offset) + 1rem);
	padding: 0;
	border-radius: 1.55rem;
	overflow: visible;
	background: transparent;
	box-shadow: none;
}

.pl-contact-map::before {
	display: none;
}

.pl-reservation-intro,
.pl-contact-form {
	position: relative;
	z-index: 1;
}

.pl-reservation-intro {
	display: none;
}

.pl-reservation-kicker {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	background: rgba(16, 37, 34, 0.08);
	color: var(--pl-green);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pl-contact-form {
	display: grid;
	gap: 1.35rem;
	height: 100%;
	padding: clamp(1.8rem, 3.4vw, 2.8rem);
	border: 1px solid rgba(16, 37, 34, 0.06);
	border-radius: 1.8rem;
	background: #f7f3ea;
	box-shadow: 0 28px 60px rgba(16, 37, 34, 0.1);
	color: #173d37;
}

.pl-contact-form h3 {
	margin: 0 0 0.2rem;
	font-family: var(--pl-font);
	font-size: clamp(2rem, 5vw, 2.6rem);
	color: #163d37;
}

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

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

.pl-contact-fields input,
.pl-contact-fields select,
.pl-contact-fields textarea {
	width: 100%;
	padding: 1rem 1.05rem;
	border: 1px solid rgba(22, 61, 55, 0.08);
	border-radius: 1rem;
	background: #f0eee8;
	color: #173d37;
	font-size: 1rem;
}

.pl-contact-fields input::placeholder,
.pl-contact-fields textarea::placeholder {
	color: rgba(23, 61, 55, 0.52);
}

.pl-contact-fields select {
	appearance: none;
}

.pl-contact-fields textarea {
	min-height: 8.5rem;
	resize: vertical;
}

.pl-contact-fields input:focus,
.pl-contact-fields select:focus,
.pl-contact-fields textarea:focus {
	outline: none;
	border-color: rgba(31, 79, 72, 0.26);
	box-shadow: 0 0 0 4px rgba(31, 79, 72, 0.08);
}

/* Eigene Datum-/Uhrzeit-Auswahl statt nativer <input type="date/time">:
   native Felder zeigen im leeren Zustand teils gar keinen sichtbaren Text
   an und können sich bei ausgefülltem Wert breiter rendern als ihre Spalte
   (Overflow nach rechts aus der Karte). Ein selbstgebauter Button + Panel
   bleibt immer exakt innerhalb der Grid-Spalte. */
.pl-picker {
	position: relative;
	width: 100%;
	min-width: 0;
}

.pl-picker__native {
	position: absolute !important;
	inset: 0;
	width: 1px !important;
	height: 1px !important;
	opacity: 0;
	pointer-events: none;
}

.pl-picker__button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	min-width: 0;
	padding: 1rem 1.05rem;
	border: 1px solid rgba(22, 61, 55, 0.08);
	border-radius: 1rem;
	background: #f0eee8;
	color: rgba(23, 61, 55, 0.52);
	font: inherit;
	font-size: 1rem;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.pl-picker__button span:first-child {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pl-picker.has-value .pl-picker__button,
.pl-picker.is-open .pl-picker__button,
.pl-picker__button:hover,
.pl-picker__button:focus-visible {
	border-color: rgba(31, 79, 72, 0.26);
	color: #173d37;
	outline: none;
}

.pl-picker__chevron {
	flex-shrink: 0;
	width: 0.7rem;
	height: 0.7rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	opacity: 0.6;
	transform: rotate(45deg) translateY(-2px);
	transition: transform 0.2s ease;
}

.pl-picker.is-open .pl-picker__chevron {
	transform: rotate(225deg) translateY(-2px);
}

.pl-picker__panel {
	position: absolute;
	left: 0;
	top: calc(100% + 0.6rem);
	z-index: 60;
	width: min(20rem, calc(100vw - 2.5rem));
	padding: 1rem;
	border: 1px solid rgba(22, 61, 55, 0.1);
	border-radius: 1.25rem;
	background: #fffdf8;
	box-shadow: 0 24px 52px rgba(10, 26, 23, 0.18);
	color: #173d37;
}

.pl-picker[data-pl-picker="time"] .pl-picker__panel {
	left: auto;
	right: 0;
	max-height: min(20rem, 54vh);
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

/* Panel wird beim Öffnen per JS nach document.body verschoben, damit es
   nicht vom overflow:hidden der Kontakt-Sektion abgeschnitten wird. Bewusst
   horizontal per CSS auf die Bildschirmmitte fixiert (nicht per JS am
   Button ausgerichtet): Ausrichtung am Button war auf manchen Geräten
   unzuverlässig (u.a. abhängig davon, ob/wie sich die Adressleiste des
   mobilen Browsers gerade einblendet) und konnte das Panel links aus dem
   Bildschirm schieben. Zentriert kann das nie passieren. Nur die
   vertikale Position (top) kommt weiterhin per JS vom Button. */
.pl-picker__panel--portal {
	position: fixed;
	top: 0;
	left: 50% !important;
	right: auto !important;
	transform: translateX(-50%);
	z-index: 4200;
	max-height: min(22rem, 60vh);
	overflow-y: auto;
}

.pl-picker__panel[hidden] {
	display: none !important;
}

.pl-calendar__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.8rem;
}

.pl-calendar__month {
	font-size: 0.94rem;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.pl-calendar__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.1rem;
	height: 2.1rem;
	padding: 0 !important;
	border: 1px solid rgba(22, 61, 55, 0.12);
	border-radius: 999px;
	background: rgba(22, 61, 55, 0.06);
	color: #173d37;
	font-size: 1.05rem;
	font-weight: 900;
	line-height: 1 !important;
	text-align: center;
	cursor: pointer;
}

.pl-calendar__week,
.pl-calendar__grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 0.3rem;
}

.pl-calendar__week {
	margin-bottom: 0.4rem;
	color: rgba(22, 61, 55, 0.48);
	font-size: 0.66rem;
	font-weight: 800;
	text-align: center;
	text-transform: uppercase;
}

.pl-calendar__day,
.pl-time-option {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	border: 1px solid rgba(22, 61, 55, 0.1);
	background: rgba(23, 61, 55, 0.04);
	color: #173d37;
	text-align: center;
	cursor: pointer;
	transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pl-calendar__day {
	aspect-ratio: 1 / 1;
	padding: 0 !important;
	border-radius: 999px;
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1 !important;
}

.pl-calendar__day:hover,
.pl-time-option:hover,
.pl-calendar__day:focus-visible,
.pl-time-option:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(22, 61, 55, 0.3);
	background: #ffffff;
	outline: none;
}

.pl-calendar__day.is-selected,
.pl-time-option.is-selected {
	border-color: transparent;
	background: linear-gradient(135deg, var(--pl-green), rgb(15, 40, 36));
	color: #fff8ee !important;
	box-shadow: 0 10px 18px rgba(23, 61, 55, 0.2);
}

.pl-calendar__day:disabled,
.pl-calendar__nav:disabled {
	cursor: not-allowed;
	opacity: 0.28;
	transform: none;
}

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

.pl-time-option {
	min-height: 2.5rem;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 800;
}

@media (max-width: 560px) {
	.pl-picker__panel,
	.pl-picker[data-pl-picker="time"] .pl-picker__panel {
		left: 50%;
		right: auto;
		width: min(21rem, calc(100vw - 2rem));
		transform: translateX(-50%);
	}

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

.pl-reservation-meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem;
}

.pl-reservation-meta-item {
	padding: 0.95rem 1rem;
	border-radius: 1.2rem;
	background: rgba(16, 37, 34, 0.05);
	color: rgba(23, 61, 55, 0.78);
}

.pl-reservation-meta-item strong {
	display: block;
	margin-bottom: 0.25rem;
	color: var(--pl-green);
	font-size: 0.95rem;
}

.pl-contact-form-note {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.7;
	color: rgba(23, 61, 55, 0.7);
}

.pl-reservation-feedback {
	display: none;
	padding: 0.95rem 1rem;
	border-radius: 1rem;
	font-size: 0.95rem;
	line-height: 1.6;
}

.pl-reservation-feedback.is-visible {
	display: block;
}

.pl-reservation-feedback[data-state="success"] {
	background: rgba(56, 178, 145, 0.14);
	color: #115047;
}

.pl-reservation-feedback[data-state="error"] {
	background: rgba(231, 51, 63, 0.12);
	color: #8b1822;
}

.pl-reviews-heading {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.pl-reviews-google-link {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.6rem 1.1rem 0.6rem 0.7rem;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(10, 28, 24, 0.1);
	color: #173d37;
	font-size: 0.9rem;
	text-decoration: none !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pl-reviews-google-link:hover,
.pl-reviews-google-link:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(10, 28, 24, 0.16);
}

.pl-reviews-google-link svg {
	width: 1.35rem;
	height: 1.35rem;
	flex-shrink: 0;
}

.pl-reviews-google-link strong {
	color: #173d37;
}

.pl-review-marquee {
	width: 100%;
	overflow-x: hidden;
	overflow-y: visible;
	margin-top: 2.35rem;
	margin-left: 0;
	margin-right: 0;
	padding: 0.2rem clamp(1.25rem, 5vw, 4rem) 3rem;
	box-sizing: border-box;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.pl-review-track {
	display: flex;
	align-items: stretch;
	width: max-content;
	gap: 1.35rem;
	animation: plReviewMarquee 210s linear infinite;
	will-change: transform;
}

.pl-review-marquee:hover .pl-review-track {
	animation-play-state: paused;
}

.pl-review-card {
	flex: 0 0 clamp(19.5rem, 26vw, 23rem);
	width: clamp(19.5rem, 26vw, 23rem);
	height: 15.25rem;
	padding: 1.4rem 1.5rem 1.3rem;
	border-radius: 1.1rem;
	background: #fff;
	border: 1px solid rgba(23, 61, 55, 0.07);
	box-shadow: 0 16px 32px rgba(10, 28, 24, 0.08);
	color: #173d37;
	display: flex;
	flex-direction: column;
}

.pl-review-top {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	margin-bottom: 0.7rem;
}

.pl-review-avatar {
	display: inline-grid;
	place-items: center;
	flex-shrink: 0;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 999px;
	color: #fff;
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.pl-review-who {
	display: flex;
	flex-direction: column;
	min-width: 0;
	flex: 1;
}

.pl-review-author {
	display: block;
	overflow: hidden;
	color: #202124;
	font-size: 0.94rem;
	font-weight: 600;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pl-review-meta {
	display: block;
	overflow: hidden;
	color: #5f6368;
	font-size: 0.76rem;
	line-height: 1.4;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pl-review-g {
	width: 1.15rem;
	height: 1.15rem;
	flex-shrink: 0;
	margin-top: 0.15rem;
}

.pl-stars {
	display: flex;
	gap: 0.15rem;
	margin-bottom: 0.35rem;
}

.pl-star {
	color: #dadce0;
	font-size: 0.95rem;
}

.pl-star--filled {
	color: #fbbc04;
}

.pl-review-time {
	display: block;
	margin-bottom: 0.55rem;
	color: #5f6368;
	font-size: 0.78rem;
}

.pl-review-text {
	margin: 0;
	overflow: hidden;
	color: #3c4043;
	font-size: 0.92rem;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}

.pl-review-more {
	align-self: flex-start;
	margin-top: auto;
	padding: 0;
	border: 0;
	background: none;
	color: #1a73e8;
	font-size: 0.84rem;
	font-weight: 700;
	cursor: pointer;
}

.pl-review-more:hover,
.pl-review-more:focus-visible {
	text-decoration: underline;
}

@keyframes plReviewMarquee {
	0% { transform: translate3d(0, 0, 0); }
	100% { transform: translate3d(calc(-50% - 0.675rem), 0, 0); }
}

/* Bewertungs-Popup (Vollansicht) */
.pl-review-modal {
	position: fixed;
	inset: 0;
	z-index: 500;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.pl-review-modal:not([hidden]) {
	display: flex;
}

.pl-review-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 24, 21, 0.55);
	opacity: 0;
	transition: opacity 0.22s ease;
}

.pl-review-modal-dialog {
	position: relative;
	width: min(32rem, 100%);
	max-height: min(80vh, 34rem);
	overflow-y: auto;
	padding: 2rem 2.1rem 2.2rem;
	border-radius: 1.4rem;
	background: #fff;
	color: #173d37;
	box-shadow: 0 40px 80px rgba(6, 18, 16, 0.32);
	opacity: 0;
	transform: translateY(14px) scale(0.98);
	transition: opacity 0.24s ease, transform 0.24s ease;
}

.pl-review-modal--open .pl-review-modal-backdrop {
	opacity: 1;
}

.pl-review-modal--open .pl-review-modal-dialog {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.pl-review-modal .pl-review-top {
	margin-bottom: 0.9rem;
	padding-right: 2rem;
}

.pl-review-modal .pl-review-author {
	font-size: 1.05rem;
	white-space: normal;
}

.pl-review-modal .pl-stars {
	margin-bottom: 0.9rem;
}

.pl-review-modal .pl-star {
	font-size: 1.1rem;
}

.pl-review-modal-text {
	margin: 0;
	color: #3c4043;
	font-size: 1rem;
	line-height: 1.75;
	white-space: pre-line;
}

.pl-review-modal-close {
	position: absolute;
	top: 1.1rem;
	right: 1.1rem;
	display: grid;
	place-items: center;
	width: 2.2rem;
	height: 2.2rem;
	border: 0;
	border-radius: 999px;
	background: #f1f3f4;
	color: #5f6368;
	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.pl-review-modal-close:hover,
.pl-review-modal-close:focus-visible {
	background: #e4e7e8;
}

body.pl-modal-open {
	overflow: hidden;
}

@media (max-width: 640px) {
	.pl-review-card {
		flex-basis: 82vw;
		width: 82vw;
	}
}

body.home .site-footer {
	position: relative;
	margin-top: clamp(6.5rem, 12vw, 12rem);
	background:
		radial-gradient(circle at 82% 20%, rgba(56, 178, 145, 0.12), transparent 22%),
		linear-gradient(180deg, #173d37 0%, #0f2824 100%);
	color: #f7f3ea;
	overflow: visible;
}

body.home .site-footer::before {
	content: "";
	position: absolute;
	top: calc(-1 * clamp(6.5rem, 12vw, 12rem));
	left: 0;
	right: 0;
	height: clamp(6.5rem, 12vw, 12rem);
	background: linear-gradient(180deg, #f6f0e5 0%, #8ba9a1 35%, #29574f 70%, #173d37 100%);
	pointer-events: none;
	display: block;
	z-index: 1;
}

body.home .site-primary-footer-wrap,
body.home .site-below-footer-wrap {
	background: transparent;
}

body.home .ast-builder-grid-row-container-inner {
	max-width: 100%;
	padding: 0 clamp(1.25rem, 5vw, 4rem);
}

body.home .site-primary-footer-wrap {
	padding: 2.6rem 0 1.2rem;
}

body.home .site-footer .widget-title,
body.home .site-footer .wp-block-heading,
body.home .site-footer h4 {
	margin-bottom: 1rem;
	color: #fff8ee;
	font-family: var(--pl-font);
	font-size: 2rem;
	font-weight: 400;
}

body.home .site-footer p,
body.home .site-footer .menu-link,
body.home .site-footer a:not(.footer-social-item) {
	color: rgba(247, 243, 234, 0.78);
}

body.home .site-footer .menu-link:hover,
body.home .site-footer a:hover {
	color: #ffffff;
}

body.home .site-footer .footer-social-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.2rem;
	height: 3.2rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.14);
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
	--color: #f7f3ea !important;
}

body.home .site-footer .footer-social-item svg,
body.home .site-footer .footer-social-item path {
	fill: #f7f3ea !important;
}

body.home .site-footer .footer-social-item svg {
	width: 2rem !important;
	height: 2rem !important;
}

body.home .site-footer .footer-social-item:hover {
	background: rgba(255,255,255,0.16);
	border-color: rgba(255,255,255,0.26);
	transform: translateY(-2px);
}

/* Anfahrt-Icon (Standort-Widget): altes Plugin-CSS setzt hier je nach
   Version einen 2px-Rahmen und schwarze Füllung – beides überschreiben. */
body.home .site-footer .uagb-icon-list__source-wrap {
	border: 0 !important;
	background: transparent !important;
	padding: 0 !important;
}

body.home .site-footer .uagb-icon-list__source-wrap svg,
body.home .site-footer .uagb-icon-list__source-wrap path {
	color: #f7f3ea !important;
	fill: #f7f3ea !important;
}

body.home .site-below-footer-wrap {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 0.8rem 0 1.4rem;
}

body.home .ast-footer-copyright,
body.home .ast-footer-copyright p {
	color: rgba(247, 243, 234, 0.58);
}

@media (max-width: 1100px) {
	.pl-ref-grid,
	.pl-gallery-layout,
	.pl-order-band,
	.pl-contact-grid {
		grid-template-columns: 1fr;
	}

	.pl-about-stats,
	.pl-review-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pl-contact-form {
		padding: 1.4rem;
	}
}

@media (max-width: 921px) {
	.pl-flow {
		padding: 4.8rem 0;
	}

	.pl-ref-grid,
	.pl-gallery-layout,
	.pl-order-band {
		display: flex;
		flex-direction: column;
		gap: clamp(1.35rem, 5vw, 2rem);
		align-items: stretch;
	}

	.pl-about-media,
	.pl-signature-panel,
	.pl-gallery-surface,
	.pl-device-stack {
		order: 1;
		width: 100%;
	}

	.pl-about-text,
	.pl-gallery-copy,
	.pl-order-band > div:first-child,
	section[aria-labelledby="pl-signature-title"] .pl-ref-grid > div:last-child {
		order: 2;
		width: 100%;
	}

	.pl-gallery-copy {
		position: relative;
		top: auto;
		max-width: none;
		padding-right: 0;
	}

	.pl-ref-actions,
	.pl-store-row {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0.8rem;
	}

	.pl-ref-button,
	.pl-store-pill {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

		.pl-about-media {
			padding: 0;
		}
	
		.pl-gallery-card {
			min-height: 0;
		}
	

	.pl-contact-cards {
		gap: 0.65rem;
	}

		.pl-device-stack {
			min-height: 0;
		}
	
		.pl-device--tablet {
			width: 100%;
		}

	.pl-device--phone {
		width: 9rem;
		left: 4%;
	}
}

@media (max-width: 640px) {
	body.home #content > .ast-container {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	body.home .entry-content {
		width: 100%;
		max-width: none;
		margin-left: 0;
		margin-right: 0;
	}

	.home .entry-content[data-ast-blocks-layout] > .pl-flow {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	.pl-ref-shell {
		max-width: none;
		padding-inline: clamp(0.95rem, 4vw, 1.25rem);
	}

	#aboutus,
	section[aria-labelledby="pl-about-title"] {
		margin-top: 0;
		position: relative;
		z-index: 101;
		background: #17423d !important;
		padding-top: 0;
		overflow: visible;
	}

	section[aria-labelledby="pl-about-title"] .pl-ref-shell {
		padding-top: 0;
	}

	section[aria-labelledby="pl-about-title"] .pl-about-media {
		margin-top: -2.6rem;
		position: relative;
		z-index: 2;
	}

	section[aria-labelledby="pl-about-title"] .pl-feature-photo {
		aspect-ratio: auto;
		overflow: visible;
		background: transparent;
		border-radius: 1.25rem;
		box-shadow: 0 18px 34px rgba(8, 27, 24, 0.16);
	}

	section[aria-labelledby="pl-about-title"] .pl-feature-photo img {
		height: auto;
		object-fit: contain;
		border-radius: inherit;
	}

	.pl-ref-title {
		font-size: clamp(2.3rem, 12vw, 3.25rem);
	}

	.pl-about-stats,
	.pl-review-grid {
		grid-template-columns: 1fr;
	}

	.pl-gallery-controls {
		justify-content: flex-start;
	}

		.pl-gallery-track {
			position: relative;
			max-width: min(25rem, 100%);
			top: auto !important;
			width: 100%;
		}

		section[aria-labelledby="pl-gallery-title"].pl-flow {
			padding-top: clamp(3.8rem, 9vh, 5.5rem);
			padding-bottom: clamp(6rem, 18vh, 9rem);
		}

		.pl-gallery-surface {
			min-height: 0;
			aspect-ratio: 1 / 1;
		}

		.pl-gallery-copy {
			position: relative;
			top: auto;
			margin-top: 0.25rem;
		}
	
		.pl-gallery-card:nth-child(1) {
			transform: translate3d(calc(112vw * var(--stack-p-1, 0)), 0, 0);
		}

		.pl-gallery-card:nth-child(2) {
			transform: translate3d(calc(112vw * var(--stack-p-2, 0)), 0, 0);
		}

		.papalu-hero__product,
		.papalu-hero__ingredient {
			filter: none;
		}

		.pl-gallery-card {
			box-shadow: 0 16px 24px rgba(14, 35, 31, 0.12);
		}

	.pl-signature-panel {
		padding: 0;
	}

	.pl-signature-food {
			height: 100%;
		}

	.pl-contact-details {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.pl-contact-card--address,
	.pl-contact-card--phone,
	.pl-contact-card--hours {
		grid-column: 1;
		grid-row: auto;
	}

	.pl-contact-card {
		padding: 0.85rem 0.95rem;
	}

	.pl-contact-icon {
		width: 2.3rem;
		height: 2.3rem;
		font-size: 1rem;
	}

	.pl-contact-fields,
	.pl-reservation-meta {
		grid-template-columns: 1fr;
	}
}

/*
.ast-button-wrap {
display: none;
}
#ast-desktop-header {
	display: initial;
}
*/		

html,
body {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden !important;
}

body {
	position: relative;
}

/* overflow-x hier bewusst NICHT gesetzt (auch nicht !important): das
   reicht schon auf html/body (siehe oben) und ist dort auch der einzig
   sichere Ort dafür. overflow auf tief verschachtelten Vorfahren des
   position:fixed-Headers ist ein bekannter iOS-Safari-Auslöser dafür,
   dass "fixed" Elemente plötzlich in der Seite mitscrollen bzw. hinter
   späteren Abschnitten (Footer) verschwinden, statt am Viewport zu kleben. */
.site,
#page,
#content,
.site-content,
.site-content .ast-container,
.ast-container,
#primary,
#main,
.ast-article-single,
.entry-content {
	max-width: 100% !important;
	box-sizing: border-box !important;
}

/* ============================================================
   v2: Hero- und Galerie-Animation via GSAP ScrollTrigger (pin+scrub).
   Der Screen "friert" während der Animation ein (pin), die Animation
   läuft exakt mit dem Scroll mit – vor UND zurück – und danach geht
   es normal weiter. GSAP pinnt per position:fixed und setzt dafür zur
   Laufzeit sein eigenes "position" per Inline-Style auf .papalu-hero__sticky
   – deshalb hier bewusst KEIN "position" mit !important sperren (das hat
   vorher gegen GSAP gearbeitet und beim Scrollen für Ruckeln gesorgt).
   ============================================================ */

.papalu-hero {
	/* Überschreibt ältere, tote Layout-Iterationen weiter oben in der Datei
	   (mehrere frühere Hero-Versionen erzwingen height:420svh / min-height:
	   3000-3600px per !important) – die Höhe des gepinnten Bereichs kommt
	   jetzt ausschließlich aus dem "end"-Wert, den GSAP im JS berechnet. */
	height: auto !important;
	min-height: 0 !important;
}

.papalu-hero__track {
	min-height: 0;
	overflow: visible !important;
}

@media (min-width: 768px) {
	.papalu-hero__sticky {
		min-height: min(88svh, 760px);
	}

	.papalu-hero__scene {
		min-height: min(88svh, 760px);
	}
}

@media (max-width: 767px) {
	.papalu-hero__sticky,
	.papalu-hero__scene {
		height: auto;
		min-height: 0;
	}
}

.pl-gallery-copy {
	position: static !important;
	top: auto !important;
}

.pl-gallery-surface {
	min-height: 0 !important;
	padding: 0 !important;
}

.pl-gallery-track {
	position: relative !important;
	top: auto !important;
	display: grid !important;
	place-items: center;
	aspect-ratio: 1 / 1;
	max-width: min(34rem, 100%);
	margin-inline: auto;
}

.pl-gallery-card {
	position: absolute !important;
	inset: 0 !important;
	min-height: 0;
	aspect-ratio: 1 / 1;
	border-radius: 2rem;
	overflow: hidden;
	box-shadow: 0 28px 44px rgba(14, 35, 31, 0.14);
}

.pl-gallery-card:nth-child(1) { z-index: 3; transform: translateY(calc(-110% * var(--stack-p-1, 0))); }
.pl-gallery-card:nth-child(2) { z-index: 2; transform: translateY(calc(-110% * var(--stack-p-2, 0))); }
.pl-gallery-card:nth-child(3) { z-index: 1; }

@media (prefers-reduced-motion: reduce) {
	.pl-gallery-card { transform: none !important; }
}
