/* =========================================================================
   Lagerpusch Management — layout & components
   Design tokens come from theme.json; this file only arranges & styles.
   ========================================================================= */

:root {
	--lp-accent: var(--wp--preset--color--primary);       /* current section colour */
	--lp-accent-contrast: var(--wp--preset--color--base); /* text on accent        */
	--lp-hairline: var(--wp--preset--color--line);
	--lp-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--lp-header-h: 64px;
}

/* Per-section accent, driven by the body class set in functions.php ---------- */
.lp-bereich--agentur  { --lp-accent: var(--wp--preset--color--primary); }
.lp-bereich--creative { --lp-accent: var(--wp--preset--color--creative); }
.lp-bereich--foto     { --lp-accent: var(--wp--preset--color--foto); }
.lp-bereich--verlag   { --lp-accent: var(--wp--preset--color--verlag); }
.lp-bereich--konzert  { --lp-accent: var(--wp--preset--color--konzert); }

body {
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

/* ---- Shared: kicker label (mono, tracked) -------------------------------- */
.lp-kicker {
	font-family: var(--wp--preset--font-family--fira-code);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--wp--preset--color--contrast-2);
	margin: 0 0 1.1rem;
}
.lp-kicker--on-color { color: color-mix(in srgb, var(--lp-accent-contrast) 78%, transparent); }

/* ---- Shared: section head --------------------------------------------------*/
.lp-section-head { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.lp-section-head--row { align-items: flex-end; }
.lp-section-title { margin: 0; max-width: 22ch; }
.lp-section-head__link { margin: 0; }
.lp-section-head__link a {
	font-family: var(--wp--preset--font-family--fira-code);
	font-size: 0.8rem;
	letter-spacing: 0.04em;
}

/* ---- Header --------------------------------------------------------------- */
.lp-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--wp--preset--color--base);
	border-bottom: 1px solid var(--lp-hairline);
	transition: background .25s var(--lp-ease), border-color .25s var(--lp-ease), transform .3s var(--lp-ease);
}
.lp-header__bar { align-items: center; }
.lp-header__right { gap: clamp(1rem, 3vw, 2.5rem); }
.lp-header .wp-block-site-title a { color: var(--wp--preset--color--contrast); }
.lp-header__social { display: flex; align-items: center; gap: 0.75rem; }
.lp-icon-link {
	display: inline-flex;
	color: var(--wp--preset--color--contrast);
	opacity: 0.8;
	transition: opacity .2s var(--lp-ease), color .2s var(--lp-ease);
}
.lp-icon-link:hover { opacity: 1; color: var(--lp-accent); }

/* Home: header floats transparently over the hero, then reveals on scroll --- */
.lp-home .lp-header {
	position: fixed;
	left: 0;
	right: 0;
	background: transparent;
	border-bottom-color: transparent;
}
.lp-home.lp-scrolled .lp-header {
	background: color-mix(in srgb, var(--wp--preset--color--base) 92%, transparent);
	backdrop-filter: saturate(140%) blur(8px);
	border-bottom-color: var(--lp-hairline);
}
/* nudge the fixed header down out of view until scrolled, keep hamburger reachable */
@media (min-width: 782px) {
	.lp-home .lp-header { transform: translateY(-100%); pointer-events: none; }
	.lp-home .lp-header * { pointer-events: auto; }
	.lp-home.lp-scrolled .lp-header { transform: none; }
}

/* ---- Hero -------------------------------------------------------------------*/
.lp-hero {
	min-height: 92svh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: clamp(5rem, 12vh, 9rem);
	padding-bottom: clamp(4rem, 10vh, 7rem);
	position: relative;
}
.lp-hero__inner { max-width: 20ch; }
.lp-hero__word {
	margin: 0;
	line-height: 0.92;
	letter-spacing: -0.03em;
	color: var(--wp--preset--color--primary);
}
.lp-hero__lead {
	margin: 1.8rem 0 0;
	max-width: 30ch;
	color: var(--wp--preset--color--contrast);
	font-weight: 320;
}
.lp-hero__tags { margin-top: 2.4rem; gap: 0.6rem; }
.lp-tag { margin: 0; }
.lp-tag a {
	display: inline-block;
	font-family: var(--wp--preset--font-family--fira-code);
	font-size: 0.74rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.5rem 0.9rem;
	border: 1px solid var(--lp-hairline);
	border-radius: 999px;
	transition: color .2s var(--lp-ease), border-color .2s var(--lp-ease), background .2s var(--lp-ease);
}
.lp-tag a:hover { text-decoration: none; color: var(--wp--preset--color--base); }
.lp-tag--agentur a:hover  { background: var(--wp--preset--color--primary);  border-color: var(--wp--preset--color--primary); }
.lp-tag--creative a:hover { background: var(--wp--preset--color--creative); border-color: var(--wp--preset--color--creative); }
.lp-tag--foto a:hover     { background: var(--wp--preset--color--foto);     border-color: var(--wp--preset--color--foto); }

.lp-scrollcue {
	position: absolute;
	left: 50%;
	bottom: clamp(1.5rem, 4vh, 2.75rem);
	transform: translateX(-50%);
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: var(--wp--preset--color--contrast-2);
}
.lp-scrollcue:hover { text-decoration: none; color: var(--wp--preset--color--contrast); }
.lp-scrollcue__label {
	font-family: var(--wp--preset--font-family--fira-code);
	font-size: 0.68rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.lp-scrollcue__icon { animation: lp-bob 2.4s var(--lp-ease) infinite; }
@keyframes lp-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@media (prefers-reduced-motion: reduce) { .lp-scrollcue__icon { animation: none; } }

/* ---- Teilbereiche: colour-coded bands ------------------------------------- */
.lp-bereiche__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--lp-hairline); }
.lp-band { --band-color: var(--wp--preset--color--primary); border-bottom: 1px solid var(--lp-hairline); }
.lp-band--agentur  { --band-color: var(--wp--preset--color--primary); }
.lp-band--creative { --band-color: var(--wp--preset--color--creative); }
.lp-band--foto     { --band-color: var(--wp--preset--color--foto); }
.lp-band--verlag   { --band-color: var(--wp--preset--color--verlag); }
.lp-band--konzert  { --band-color: var(--wp--preset--color--konzert); }

.lp-band__link {
	position: relative;
	display: grid;
	grid-template-columns: 3.5rem minmax(0, 1fr) auto;
	align-items: baseline;
	gap: 0.4rem 1.5rem;
	padding: clamp(1.5rem, 3.4vw, 2.75rem) 0;
	color: var(--wp--preset--color--contrast);
	isolation: isolate;
	transition: color .35s var(--lp-ease), padding-inline .35s var(--lp-ease);
}
.lp-band__link::before {
	content: "";
	position: absolute;
	inset: 0 100% 0 0;
	background: var(--band-color);
	z-index: -1;
	transition: inset .45s var(--lp-ease);
}
.lp-band:not(.lp-band--soon) .lp-band__link:hover,
.lp-band:not(.lp-band--soon) .lp-band__link:focus-visible {
	color: var(--wp--preset--color--base);
	text-decoration: none;
	padding-inline: clamp(1rem, 3vw, 2.5rem);
	outline: none;
}
.lp-band:not(.lp-band--soon) .lp-band__link:hover::before,
.lp-band:not(.lp-band--soon) .lp-band__link:focus-visible::before {
	inset: 0 0 0 0;
}
.lp-band__no {
	font-family: var(--wp--preset--font-family--fira-code);
	font-size: 0.8rem;
	opacity: 0.6;
}
.lp-band__name {
	font-size: var(--wp--preset--font-size--x-large);
	font-weight: 500;
	letter-spacing: -0.022em;
	line-height: 1.05;
}
.lp-band__desc {
	grid-column: 2;
	max-width: 46ch;
	font-size: var(--wp--preset--font-size--medium);
	color: inherit;
	opacity: 0.72;
	margin-top: 0.5rem;
}
.lp-band__go {
	font-family: var(--wp--preset--font-family--fira-code);
	font-size: 0.9rem;
	align-self: center;
}
.lp-band--soon { opacity: 0.45; }
.lp-band--soon .lp-band__link { cursor: default; }

@media (max-width: 600px) {
	.lp-band__link { grid-template-columns: 2.5rem 1fr; }
	.lp-band__go { grid-column: 2; align-self: start; margin-top: 0.4rem; }
}

/* ---- News grid --------------------------------------------------------------*/
.lp-news__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2.4vw, 2rem);
	list-style: none;
	margin: 0;
	padding: 0;
}
@media (max-width: 900px) { .lp-news__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .lp-news__grid { grid-template-columns: 1fr; } }
.lp-news__card { display: flex; flex-direction: column; gap: 0.85rem; min-width: 0; }
.lp-news__media {
	margin: 0;
	overflow: hidden;
	background: var(--wp--preset--color--base-2);
}
.lp-news__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s var(--lp-ease), filter .4s var(--lp-ease);
}
.lp-news__card:hover .lp-news__media img,
.lp-news__card:focus-within .lp-news__media img { transform: scale(1.04); }

.lp-news__meta {
	align-items: baseline;
	gap: 0.75rem;
	border-top: 1px solid var(--lp-hairline);
	padding-top: 0.6rem;
}
.lp-news__cat { margin: 0; }
.lp-news__cat a {
	font-family: var(--wp--preset--font-family--fira-code);
	font-size: 0.68rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--contrast-2);
}
.lp-news__cat a::before {
	content: "";
	display: inline-block;
	width: 0.5rem; height: 0.5rem;
	margin-right: 0.45rem;
	border-radius: 50%;
	background: var(--lp-accent);
	vertical-align: 0.02em;
}
.lp-news__cat a[href*="creative"]::before { background: var(--wp--preset--color--creative); }
.lp-news__cat a[href*="foto"]::before,
.lp-news__cat a[href*="video"]::before    { background: var(--wp--preset--color--foto); }
.lp-news__cat a[href*="agentur"]::before  { background: var(--wp--preset--color--primary); }
.lp-news__date { margin: 0; color: var(--wp--preset--color--contrast-2); font-family: var(--wp--preset--font-family--fira-code); font-size: 0.72rem; }
.lp-news__title { margin: 0; font-size: var(--wp--preset--font-size--large); line-height: 1.15; }
.lp-news__title a:hover { text-decoration: none; color: var(--lp-accent); }
.lp-news__empty { max-width: 52ch; color: var(--wp--preset--color--contrast-2); }

.lp-pagination { margin-top: clamp(2rem, 5vw, 3.5rem); font-family: var(--wp--preset--font-family--fira-code); font-size: 0.8rem; }

/* ---- Instagram cards ------------------------------------------------------- */
.lp-ig__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.lp-ig__card {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: clamp(1.5rem, 3vw, 2.4rem);
	border: 1px solid var(--lp-hairline);
	color: var(--wp--preset--color--contrast);
	transition: background .3s var(--lp-ease), color .3s var(--lp-ease), border-color .3s var(--lp-ease);
}
.lp-ig__card:hover { text-decoration: none; color: var(--wp--preset--color--base); }
.lp-ig__card--agentur:hover { background: var(--wp--preset--color--primary); border-color: var(--wp--preset--color--primary); }
.lp-ig__card--foto:hover    { background: var(--wp--preset--color--foto);    border-color: var(--wp--preset--color--foto); }
.lp-ig__at { font-size: var(--wp--preset--font-size--large); font-weight: 500; letter-spacing: -0.02em; }
.lp-ig__what { font-family: var(--wp--preset--font-family--fira-code); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; }
.lp-ig__go { margin-top: 0.9rem; font-family: var(--wp--preset--font-family--fira-code); font-size: 0.8rem; }

/* ---- CTA ---------------------------------------------------------------------*/
.lp-cta {
	background: var(--lp-accent);
	color: var(--lp-accent-contrast);
	text-align: center;
}
.lp-cta__title { margin: 0 auto; max-width: 20ch; }
.lp-cta__text { margin: 1.2rem auto 0; max-width: 42ch; opacity: 0.82; }
.lp-cta__buttons { justify-content: center; margin-top: 2.2rem; }
.lp-cta .wp-block-button.is-style-fill .wp-block-button__link {
	background: var(--lp-accent-contrast);
	color: var(--lp-accent);
}
.lp-cta .wp-block-button.is-style-fill .wp-block-button__link:hover { background: var(--wp--preset--color--contrast); color: var(--wp--preset--color--base); }
.lp-cta .wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent;
	color: var(--lp-accent-contrast);
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--lp-accent-contrast) 55%, transparent);
}
.lp-cta .wp-block-button.is-style-outline .wp-block-button__link:hover {
	box-shadow: inset 0 0 0 1px var(--lp-accent-contrast);
	background: color-mix(in srgb, var(--lp-accent-contrast) 12%, transparent);
}

/* ---- Teilbereich landing hero -------------------------------------------- */
.lp-main--bereich { padding-top: 0; }
.lp-bereich-hero {
	background: var(--lp-accent);
	color: var(--lp-accent-contrast);
	padding-top: clamp(7rem, 16vh, 12rem);
	padding-bottom: clamp(3rem, 8vw, 6rem);
}
.lp-bereich-hero__title { margin: 0; color: inherit; letter-spacing: -0.03em; line-height: 0.94; }
.lp-bereich-hero__lead { margin: 1.5rem 0 0; max-width: 40ch; opacity: 0.85; }
.lp-rule, .lp-footer__rule { border: 0; border-top: 1px solid var(--lp-hairline); margin-block: clamp(2.5rem, 6vw, 4.5rem); }

.lp-leistungen { list-style: none; margin: 0; padding: 0; }
.lp-leistungen li {
	padding: 0.85rem 0;
	border-top: 1px solid var(--lp-hairline);
	font-size: var(--wp--preset--font-size--large);
	font-weight: 400;
}
.lp-leistungen li:last-child { border-bottom: 1px solid var(--lp-hairline); }

/* ---- Footer -------------------------------------------------------------- */
.lp-footer { --lp-hairline: color-mix(in srgb, var(--wp--preset--color--base) 22%, transparent); }
.lp-footer a { color: inherit; }
.lp-footer__top { gap: 1.5rem 3rem; }
.lp-footer__word { margin: 0; line-height: 0.98; letter-spacing: -0.03em; }
.lp-footer__claim { margin: 0; opacity: 0.7; font-family: var(--wp--preset--font-family--fira-code); letter-spacing: 0.04em; }
.lp-footer__rule { margin-block: clamp(2rem, 5vw, 3.5rem); }
.lp-footer__cols { gap: 2rem; }
.lp-footer .lp-kicker { color: color-mix(in srgb, var(--wp--preset--color--base) 60%, transparent); }
.lp-footer__list { margin: 0; padding: 0; list-style: none; line-height: 1.9; opacity: 0.9; }
.lp-footer__list a:hover { opacity: 1; }
.lp-footer .wp-block-shortcode { margin: 0; }
.lp-footer__legal a { display: block; opacity: 0.9; }
.lp-footer__copy { margin: 2.5rem 0 0; opacity: 0.6; font-family: var(--wp--preset--font-family--fira-code); }

/* ---- Generic page ------------------------------------------------------------*/
.lp-page-title { margin-bottom: clamp(1.5rem, 4vw, 2.5rem); max-width: 24ch; }
.lp-main :where(.lp-split) { align-items: start; }

/* ---- News card: overlay with Instagram + profile buttons ---------------- */
/* (rendered by the Lagerpusch Agentur plugin: [lp_aktuelles]) */
.lp-news .lp-news__grid { list-style: none; margin: 0; padding: 0; }
.lp-news__card { position: relative; }
.lp-news__overlay {
	position: absolute;
	inset: 0 0 auto 0;
	aspect-ratio: 4 / 5;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	padding: 0.75rem;
	opacity: 0;
	background: linear-gradient(to top, color-mix(in srgb, var(--wp--preset--color--contrast) 55%, transparent), transparent 45%);
	transition: opacity .25s var(--lp-ease);
	pointer-events: none;
}
.lp-news__card:hover .lp-news__overlay,
.lp-news__card:focus-within .lp-news__overlay { opacity: 1; }
.lp-news__actions { display: flex; gap: 0.5rem; pointer-events: auto; }
.lp-news__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	background: var(--wp--preset--color--base);
	color: var(--wp--preset--color--contrast);
	transition: background .2s var(--lp-ease), color .2s var(--lp-ease);
}
.lp-news__action:hover { background: var(--lp-accent); color: var(--wp--preset--color--base); }
.lp-news__action--instagram:hover { background: var(--wp--preset--color--foto); }
@media (hover: none) { .lp-news__overlay { opacity: 1; position: static; aspect-ratio: auto; padding: 0.6rem 0 0; background: none; justify-content: flex-start; } }

.lp-news__sub {
	margin: 0.15rem 0 0;
	color: var(--wp--preset--color--contrast-2);
	font-size: var(--wp--preset--font-size--small);
}
.lp-news__cat { /* plugin outputs a <span>, not a link */
	font-family: var(--wp--preset--font-family--fira-code);
	font-size: 0.68rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--contrast-2);
	display: inline-flex;
	align-items: center;
}
.lp-news__cat::before {
	content: "";
	width: 0.5rem; height: 0.5rem;
	margin-right: 0.45rem;
	border-radius: 50%;
	background: var(--lp-accent);
}
.lp-news__cat[data-bereich="creative"]::before { background: var(--wp--preset--color--creative); }
.lp-news__cat[data-bereich="foto"]::before     { background: var(--wp--preset--color--foto); }
.lp-news__cat[data-bereich="agentur"]::before  { background: var(--wp--preset--color--primary); }
.lp-news__cat[data-bereich="verlag"]::before   { background: var(--wp--preset--color--verlag); }
.lp-news__cat[data-bereich="konzert"]::before  { background: var(--wp--preset--color--konzert); }

/* Portrait fallback when no image is set (talents + news) ------------------ */
.lp-portrait-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 3 / 4;
	background: var(--lp-accent);
	color: var(--wp--preset--color--base);
	font-family: var(--wp--preset--font-family--fira-code);
	font-size: clamp(2rem, 8vw, 4rem);
}
.lp-news__media .lp-portrait-fallback { aspect-ratio: 4 / 5; }

/* ---- Talents grid ------------------------------------------------------- */
/* (rendered by the plugin: [lp_talents]) */
.lp-talents__group + .lp-talents__group { margin-top: clamp(3rem, 7vw, 5.5rem); }
.lp-talents__group-title {
	font-size: var(--wp--preset--font-size--large);
	font-weight: 500;
	margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--lp-hairline);
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
}
.lp-talents__group-title::before {
	content: "";
	width: 0.5rem; height: 0.5rem;
	border-radius: 50%;
	background: var(--lp-accent);
	align-self: center;
}
.lp-talents__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(var(--lp-talent-cols, 4), 1fr);
	gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2.2vw, 1.75rem);
}
@media (max-width: 900px) { .lp-talents__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .lp-talents__grid { grid-template-columns: repeat(2, 1fr); } }

.lp-talent-card__link { display: flex; flex-direction: column; gap: 0.6rem; }
.lp-talent-card__link:hover { text-decoration: none; }
.lp-talent-card__media {
	display: block;
	overflow: hidden;
	background: var(--wp--preset--color--base-2);
	aspect-ratio: 3 / 4;
}
.lp-talent-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	filter: grayscale(1) contrast(1.02);
	transition: transform .6s var(--lp-ease), filter .4s var(--lp-ease);
}
.lp-talent-card__link:hover .lp-talent-card__media img,
.lp-talent-card__link:focus-visible .lp-talent-card__media img { filter: grayscale(0); transform: scale(1.04); }
.lp-talent-card__name {
	font-size: var(--wp--preset--font-size--medium);
	font-weight: 500;
	letter-spacing: -0.015em;
	line-height: 1.2;
}
.lp-talent-card__link:hover .lp-talent-card__name { color: var(--lp-accent); }
.lp-talent-card__role {
	font-family: var(--wp--preset--font-family--fira-code);
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wp--preset--color--contrast-2);
}
.lp-talents__empty { max-width: 52ch; color: var(--wp--preset--color--contrast-2); }

/* ---- Single talent ---------------------------------------------------------*/
.lp-talent-single__cols { align-items: start; }
.lp-talent-single__photo img { width: 100%; object-fit: cover; }
.lp-talent-facts { margin: 0 0 1.75rem; }
.lp-talent-facts__row {
	display: grid;
	grid-template-columns: 10rem 1fr;
	gap: 0.5rem 1.5rem;
	padding: 0.7rem 0;
	border-top: 1px solid var(--lp-hairline);
}
.lp-talent-facts__row:last-child { border-bottom: 1px solid var(--lp-hairline); }
.lp-talent-facts dt {
	font-family: var(--wp--preset--font-family--fira-code);
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wp--preset--color--contrast-2);
}
.lp-talent-facts dd { margin: 0; }
.lp-talent-links { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 0; }
.lp-talent-links__item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.7rem 1.1rem;
	border: 1px solid var(--lp-hairline);
	font-family: var(--wp--preset--font-family--fira-code);
	font-size: 0.78rem;
	transition: background .2s var(--lp-ease), color .2s var(--lp-ease), border-color .2s var(--lp-ease);
}
.lp-talent-links__item:hover { text-decoration: none; background: var(--lp-accent); color: var(--wp--preset--color--base); border-color: var(--lp-accent); }
.lp-talent-news { margin-top: clamp(3rem, 7vw, 5rem); }
.lp-talent-news .lp-section-title { margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }

/* Respect the fixed header when jumping to in-page anchors */
:target { scroll-margin-top: calc(var(--lp-header-h) + 1.5rem); }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.lp-talent-card__media img { transition: none; }
}

/* =========================================================================
   Homepage rendered by the plugin block  <!-- wp:lagerpusch/home -->
   Sections are plain <section class="lp-sec …"> inside .lp-home-flow.
   ========================================================================= */
.lp-main--home { padding: 0; }
.lp-home-flow > #lp-after-hero { display: contents; }

.lp-home-flow .lp-sec {
	padding-inline: var(--lp-edge, clamp(1.25rem, 0.4rem + 3.4vw, 3.25rem));
	padding-block: var(--wp--preset--spacing--60);
}
.lp-home-flow .lp-inner {
	max-width: var(--wp--style--global--wide-size, 1400px);
	margin-inline: auto;
}

/* Hero */
.lp-home-flow .lp-hero {
	min-height: 90svh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-block: clamp(6rem, 14vh, 10rem) clamp(4rem, 10vh, 7rem);
	position: relative;
}
.lp-hero .lp-inner { max-width: 20ch; }
.lp-hero__tags { display: flex; flex-wrap: wrap; }
.lp-tag a:hover {
	background: var(--wp--preset--color--primary);
	border-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--base);
}

/* Section heads */
.lp-section-head--row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1rem;
}
.lp-news__meta { display: flex; flex-wrap: wrap; justify-content: space-between; }

/* CTA + plain buttons (plugin markup) */
.lp-home-flow .lp-cta,
.lp-sec.lp-cta {
	background: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--base);
	text-align: center;
}
.lp-cta .lp-inner { max-width: 60ch; }
.lp-cta__title { margin: 0 auto; max-width: 20ch; }
.lp-cta__text { margin: 1.2rem auto 0; max-width: 42ch; opacity: 0.82; font-size: var(--wp--preset--font-size--large); }
.lp-cta__btns { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 2.2rem; }
.lp-btn {
	display: inline-block;
	padding: 1rem 2.25rem;
	font-family: var(--wp--preset--font-family--fira-code);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: background 0.2s var(--lp-ease), color 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease);
}
.lp-btn:hover { text-decoration: none; }
.lp-btn--fill { background: var(--wp--preset--color--base); color: var(--wp--preset--color--primary); }
.lp-btn--fill:hover { background: var(--wp--preset--color--contrast); color: var(--wp--preset--color--base); }
.lp-btn--outline {
	color: var(--wp--preset--color--base);
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--wp--preset--color--base) 55%, transparent);
}
.lp-btn--outline:hover { box-shadow: inset 0 0 0 1px var(--wp--preset--color--base); background: color-mix(in srgb, var(--wp--preset--color--base) 12%, transparent); }

/* Footer rendered by <!-- wp:lagerpusch/footer --> */
.lp-footer__cols {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
	gap: 2rem;
}
.lp-footer__top { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem 3rem; }
.lp-footer__word { font-size: var(--wp--preset--font-size--xx-large); }

/* Header behaviour: handled by the plugin's dynamic CSS per setting. */

/* Talent facts sections */
.lp-talent-facts .lp-kicker { margin: 1.4rem 0 0.4rem; }
.lp-talent-facts:first-child .lp-kicker { margin-top: 0; }
