/*
Theme Name: ProWheel Serwis
Theme URI: https://prowheel.local
Author: ProWheel
Description: Hub Warsztat/Serwis, dwa landingi (Gutenberg), ciemny styl automotive, CTA telefon, WhatsApp, bloki motywu.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: prowheel
*/

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

:root {
	--pw-bg: #0c0e12;
	--pw-bg-elevated: #141820;
	--pw-surface: #1a1f2a;
	--pw-text: #e8eaef;
	--pw-muted: #9aa3b5;
	--pw-accent: #ff6a00;
	--pw-accent-soft: rgba(255, 106, 0, 0.15);
	--pw-accent-glow: rgba(255, 106, 0, 0.45);
	--pw-line: rgba(255, 255, 255, 0.08);
	--pw-success: #2ee59d;
	--pw-font-head: 'Oswald', system-ui, sans-serif;
	--pw-font-body: 'Barlow', system-ui, sans-serif;
	--pw-radius: 14px;
	--pw-header-h: 72px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--pw-bg);
	color: var(--pw-text);
	font-family: var(--pw-font-body);
	font-size: 17px;
	line-height: 1.6;
	overflow-x: hidden;
}

body.admin-bar {
	--pw-admin-offset: 32px;
}

@media (max-width: 782px) {
	body.admin-bar {
		--pw-admin-offset: 46px;
	}
}

a {
	color: var(--pw-accent);
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
	color: #ff944d;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ——— Site header ——— */
.pw-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: linear-gradient(180deg, rgba(12, 14, 18, 0.98) 0%, rgba(12, 14, 18, 0.92) 100%);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--pw-line);
}

body.pw-is-hub .pw-site-header {
	background: rgba(10, 12, 15, 0.55);
	border-bottom-color: rgba(255, 255, 255, 0.06);
}

.admin-bar .pw-site-header {
	top: var(--pw-admin-offset, 0px);
}

.pw-header-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	height: var(--pw-header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.pw-logo {
	display: flex;
	align-items: center;
	color: var(--pw-text);
	line-height: 1;
}

.pw-logo-mark {
	width: 42px;
	height: 42px;
	flex-shrink: 0;
}

.pw-logo-img {
	width: clamp(132px, 16vw, 190px);
	height: auto;
	max-height: 58px;
	object-fit: contain;
	filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.pw-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	align-items: center;
	justify-content: center;
}

.pw-nav a {
	color: var(--pw-muted);
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.pw-nav a:hover {
	color: var(--pw-text);
}

.pw-header-tel {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 999px;
	background: var(--pw-accent);
	color: #111 !important;
	font-family: var(--pw-font-head);
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.06em;
	box-shadow: 0 0 0 0 var(--pw-accent-glow);
	animation: pw-pulse-ring 2.4s ease-out infinite;
	white-space: nowrap;
}

.pw-header-tel:hover {
	filter: brightness(1.08);
	color: #111 !important;
}

@keyframes pw-pulse-ring {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.45);
	}
	70% {
		box-shadow: 0 0 0 14px rgba(255, 106, 0, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
	}
}

@media (max-width: 900px) {
	.pw-nav {
		display: none;
	}
}

/* ——— Main ——— */
#site-content {
	min-height: 40vh;
}

/* ——— Reveal animations ——— */
.pw-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.pw-reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* ——— Shared section chrome ——— */
.pw-section {
	padding: clamp(56px, 10vw, 110px) 20px;
	position: relative;
}

.pw-section-inner {
	max-width: 1140px;
	margin: 0 auto;
}

.pw-kicker {
	font-family: var(--pw-font-head);
	font-size: 0.8rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--pw-accent);
	margin: 0 0 10px;
}

.pw-h2 {
	font-family: var(--pw-font-head);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 16px;
	line-height: 1.15;
}

.pw-lead {
	color: var(--pw-muted);
	font-size: 1.05rem;
	max-width: 640px;
	margin: 0 0 32px;
}

/* ——— Sticky mobile call bar ——— */
.pw-sticky-call {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 200;
	padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
	background: linear-gradient(180deg, transparent, rgba(12, 14, 18, 0.95));
	pointer-events: none;
}

.pw-sticky-call a {
	pointer-events: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 14px 20px;
	border-radius: var(--pw-radius);
	background: var(--pw-accent);
	color: #111;
	font-family: var(--pw-font-head);
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
	animation: pw-wiggle 4s ease-in-out infinite;
}

@keyframes pw-wiggle {
	0%,
	88%,
	100% {
		transform: rotate(0deg);
	}
	90% {
		transform: rotate(-1.2deg);
	}
	92% {
		transform: rotate(1.2deg);
	}
	94% {
		transform: rotate(-0.8deg);
	}
	96% {
		transform: rotate(0.8deg);
	}
}

@media (max-width: 768px) {
	.pw-sticky-call {
		display: block;
	}
	body {
		padding-bottom: 88px;
	}
}

/* ——— Footer ——— */
.pw-site-footer {
	border-top: 1px solid var(--pw-line);
	padding: 32px 20px 100px;
	text-align: center;
	color: var(--pw-muted);
	font-size: 0.9rem;
}

.pw-site-footer strong {
	color: var(--pw-text);
}

/* ——— Block: editor SSR placeholder ——— */
.prowheel-block-ssr-placeholder {
	padding: 12px;
	color: var(--pw-muted);
	font-size: 13px;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.skip-link:focus {
	position: fixed;
	left: 12px;
	top: 12px;
	z-index: 99999;
	width: auto;
	height: auto;
	padding: 12px 16px;
	background: var(--pw-accent);
	color: #111;
	clip: auto;
}

.pw-text-center {
	text-align: center;
}

/* ——— Hero ——— */
.pw-hero {
	position: relative;
	min-height: min(92vh, 900px);
	display: flex;
	align-items: stretch;
	overflow: hidden;
}

.pw-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.06);
	animation: pw-hero-zoom 18s ease-in-out infinite alternate;
}

@keyframes pw-hero-zoom {
	from {
		transform: scale(1.04);
	}
	to {
		transform: scale(1.12);
	}
}

.pw-hero-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, rgba(12, 14, 18, 0.92) 0%, rgba(12, 14, 18, 0.55) 55%, rgba(12, 14, 18, 0.25) 100%);
}

.pw-hero-inner {
	position: relative;
	z-index: 2;
	align-self: center;
	width: 100%;
	padding-top: clamp(32px, 6vw, 72px);
	padding-bottom: clamp(48px, 8vw, 96px);
}

.pw-hero-title {
	font-family: var(--pw-font-head);
	font-size: clamp(2.4rem, 6vw, 4rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin: 0 0 16px;
	max-width: 16ch;
	line-height: 1.05;
}

.pw-hero-sub {
	font-size: clamp(1rem, 2.2vw, 1.2rem);
	color: var(--pw-muted);
	max-width: 36rem;
	margin: 0 0 28px;
}

.pw-hero-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.pw-hero-tel {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 16px 22px;
	border-radius: var(--pw-radius);
	background: var(--pw-accent);
	color: #111 !important;
	box-shadow: 0 12px 40px rgba(255, 106, 0, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pw-hero-tel:hover {
	transform: translateY(-2px);
	color: #111 !important;
}

.pw-hero-tel-label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	opacity: 0.85;
}

.pw-hero-tel-num {
	font-family: var(--pw-font-head);
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	font-weight: 700;
	letter-spacing: 0.06em;
}

.pw-hero-scroll {
	display: inline-flex;
	align-items: center;
	padding: 14px 20px;
	border-radius: 999px;
	border: 1px solid var(--pw-line);
	color: var(--pw-text) !important;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.78rem;
}

.pw-hero-scroll:hover {
	border-color: var(--pw-accent);
	color: #fff !important;
}

.pw-hero-whatsapp {
	display: inline-flex;
	align-items: center;
	padding: 14px 20px;
	border-radius: 999px;
	background: rgba(46, 229, 157, 0.12);
	border: 1px solid rgba(46, 229, 157, 0.45);
	color: #dfffee !important;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	font-size: 0.78rem;
}

.pw-hero-whatsapp:hover {
	background: rgba(46, 229, 157, 0.2);
	color: #fff !important;
	transform: translateY(-2px);
}

/* ——— Services ——— */
.pw-services {
	background: var(--pw-bg-elevated);
}

.pw-lp--serwis .pw-services:nth-of-type(odd) {
	background:
		radial-gradient(circle at 16% 20%, rgba(255, 106, 0, 0.12), transparent 28%),
		var(--pw-bg);
}

.pw-lp--serwis .pw-services:nth-of-type(even) {
	background:
		linear-gradient(135deg, rgba(255, 106, 0, 0.06), transparent 42%),
		var(--pw-bg-elevated);
}

.pw-lp--serwis .pw-services .pw-card {
	box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.pw-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}

.pw-card {
	position: relative;
	background: var(--pw-surface);
	border: 1px solid var(--pw-line);
	border-radius: var(--pw-radius);
	padding: 24px 22px 26px;
	overflow: hidden;
}

.pw-card-accent {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--pw-accent), #ff944d);
}

.pw-card-title {
	font-family: var(--pw-font-head);
	font-size: 1.15rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0 0 10px;
}

.pw-card-text {
	margin: 0;
	color: var(--pw-muted);
	font-size: 0.95rem;
}

/* ——— Service showcase ——— */
.pw-service-showcase {
	position: relative;
	padding: clamp(46px, 7vw, 86px) 20px;
	background:
		radial-gradient(circle at 8% 16%, rgba(255, 106, 0, 0.22), transparent 28%),
		linear-gradient(180deg, #080a0e 0%, #111620 48%, #080a0e 100%);
	overflow: hidden;
}

.pw-service-showcase-head {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: clamp(18px, 3.5vw, 40px);
	align-items: center;
	margin-bottom: clamp(24px, 4vw, 42px);
	padding-top: max(0px, env(safe-area-inset-top, 0px));
}

.pw-service-showcase-brand {
	flex-shrink: 0;
}

.pw-service-showcase-logo {
	display: block;
	width: clamp(72px, 14vw, 120px);
	height: auto;
	aspect-ratio: 1;
	object-fit: contain;
	filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
}

.pw-service-showcase-copy {
	min-width: 0;
}

.pw-service-showcase-title {
	font-family: var(--pw-font-head);
	font-size: clamp(1.35rem, 2.4vw, 2.35rem);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 0;
	max-width: 42rem;
}

.pw-service-showcase-lead {
	margin: 10px 0 0;
	color: rgba(232, 234, 239, 0.72);
	font-size: clamp(0.95rem, 1.35vw, 1.05rem);
	line-height: 1.55;
	max-width: 40rem;
}

.pw-service-showcase-stack {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: clamp(24px, 4vw, 52px);
	max-width: 1380px;
	margin: 0 auto;
}

.pw-service-shot {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.52fr) minmax(280px, 1.1fr);
	align-items: stretch;
	min-height: clamp(520px, 54vw, 720px);
	border-radius: clamp(22px, 2.8vw, 42px);
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(255, 106, 0, 0.08), transparent 42%),
		#10151d;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 32px 110px rgba(0, 0, 0, 0.48);
	isolation: isolate;
}

.pw-service-shot:nth-child(even) {
	grid-template-columns: minmax(280px, 1.1fr) minmax(0, 0.52fr);
}

.pw-service-shot:nth-child(even) .pw-service-shot-content {
	order: 2;
}

.pw-service-shot:nth-child(even) .pw-service-shot-media {
	order: 1;
}

.pw-service-shot:nth-child(1) .pw-service-shot-img {
	object-position: 58% center;
}

.pw-service-shot:nth-child(2) .pw-service-shot-img {
	object-position: 56% center;
}

.pw-service-shot:nth-child(3) .pw-service-shot-img {
	object-position: 54% center;
}

.pw-service-shot-media {
	position: relative;
	min-height: 100%;
	margin: 0;
	overflow: hidden;
	background: #090c11;
}

.pw-service-shot-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.02);
	transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.75s ease;
}

.pw-service-shot-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(8, 10, 14, 0.86) 0%, rgba(8, 10, 14, 0.18) 58%, transparent 100%),
		linear-gradient(135deg, rgba(255, 106, 0, 0.22), transparent 38%);
	mix-blend-mode: screen;
	opacity: 0.48;
}

.pw-service-shot:nth-child(even) .pw-service-shot-overlay {
	background:
		linear-gradient(270deg, rgba(8, 10, 14, 0.86) 0%, rgba(8, 10, 14, 0.18) 58%, transparent 100%),
		linear-gradient(225deg, rgba(255, 106, 0, 0.2), transparent 38%);
}

.pw-service-shot-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	max-width: 100%;
	padding: clamp(28px, 4.2vw, 58px);
	padding-inline-end: clamp(20px, 3vw, 48px);
	overflow-wrap: anywhere;
	hyphens: auto;
}

.pw-service-shot-kicker {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-bottom: 14px;
	padding: 8px 12px;
	border-left: 3px solid var(--pw-accent);
	background: rgba(255, 106, 0, 0.1);
	color: #ffb27a;
	font-family: var(--pw-font-head);
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	line-height: 1;
	text-transform: uppercase;
}

.pw-service-shot-title {
	font-family: var(--pw-font-head);
	font-size: clamp(1.65rem, 3.2vw, 3.25rem);
	line-height: 1.08;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 14px;
	max-width: 100%;
	text-wrap: balance;
	overflow-wrap: anywhere;
	hyphens: auto;
}

.pw-service-shot-text {
	max-width: 31rem;
	margin: 0 0 18px;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1rem, 1.45vw, 1.2rem);
	line-height: 1.5;
}

.pw-service-shot-bullets {
	display: grid;
	gap: 10px;
	max-width: 31rem;
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
	color: rgba(255, 255, 255, 0.76);
}

.pw-service-shot-bullets li {
	position: relative;
	padding-left: 22px;
}

.pw-service-shot-bullets li::before {
	content: '';
	position: absolute;
	top: 0.72em;
	left: 0;
	width: 9px;
	height: 2px;
	background: var(--pw-accent);
}

.pw-service-shot-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 17px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff !important;
	font-family: var(--pw-font-head);
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	backdrop-filter: blur(14px);
}

.pw-service-shot-link::after {
	content: '→';
	color: var(--pw-accent);
	font-size: 1rem;
	transition: transform 0.2s ease;
}

.pw-service-shot:hover .pw-service-shot-img {
	transform: scale(1.065);
	filter: saturate(1.08) contrast(1.05);
}

.pw-service-shot:hover .pw-service-shot-link::after {
	transform: translateX(4px);
}

.pw-lp--serwis .pw-services {
	background:
		linear-gradient(180deg, rgba(8, 10, 14, 0.96), rgba(18, 22, 30, 0.98)),
		var(--pw-bg-elevated);
}

.pw-lp--serwis .pw-services .pw-section-inner {
	max-width: 1040px;
}

.pw-lp--serwis .pw-services .pw-services-grid {
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

@media (max-width: 980px) {
	.pw-service-showcase-head {
		grid-template-columns: 1fr;
		justify-items: start;
		gap: 16px;
	}

	.pw-service-showcase-brand {
		order: -1;
	}

	.pw-service-shot,
	.pw-service-shot:nth-child(even) {
		grid-template-columns: 1fr;
		min-height: unset;
	}

	.pw-service-shot-content,
	.pw-service-shot:nth-child(even) .pw-service-shot-content {
		order: 2;
	}

	.pw-service-shot-media,
	.pw-service-shot:nth-child(even) .pw-service-shot-media {
		order: 1;
		min-height: min(58vh, 500px);
	}

	.pw-service-shot-overlay,
	.pw-service-shot:nth-child(even) .pw-service-shot-overlay {
		background: linear-gradient(180deg, transparent 0%, rgba(8, 10, 14, 0.74) 58%, rgba(8, 10, 14, 0.94) 100%);
		mix-blend-mode: normal;
		opacity: 1;
	}
}

@media (max-width: 620px) {
	.pw-service-showcase {
		padding-inline: 14px;
	}

	.pw-service-shot {
		min-height: 500px;
		border-radius: 20px;
	}

	.pw-service-shot-content {
		padding: 22px;
	}

	.pw-service-shot-title {
		font-size: clamp(1.5rem, 6.2vw, 2.6rem);
		line-height: 1.1;
	}

	.pw-service-shot-text,
	.pw-service-shot-bullets {
		font-size: 0.95rem;
	}
}

/* ——— Brands ——— */
.pw-brands-marquee {
	margin-top: 28px;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.pw-brands-marquee-track {
	display: flex;
	width: max-content;
	animation: pw-marquee 38s linear infinite;
}

.pw-brands-marquee:hover .pw-brands-marquee-track {
	animation-play-state: paused;
}

@keyframes pw-marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.pw-brands-marquee-list {
	list-style: none;
	margin: 0;
	padding: 0 12px 0 0;
	display: flex;
	flex-wrap: nowrap;
	gap: 14px;
}

.pw-brand-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 100px;
	min-width: 132px;
	padding: 16px;
	background: var(--pw-surface);
	border: 1px solid var(--pw-line);
	border-radius: var(--pw-radius);
	text-align: center;
	flex-shrink: 0;
}

.pw-brand-tire {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 3px solid var(--pw-muted);
	box-shadow: inset 0 0 0 4px var(--pw-bg), 0 0 0 2px var(--pw-accent-soft);
	position: relative;
}

.pw-brand-tire::after {
	content: '';
	position: absolute;
	inset: 10px;
	border-radius: 50%;
	border: 2px dashed rgba(255, 255, 255, 0.12);
}

.pw-brand-name {
	font-family: var(--pw-font-head);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--pw-text);
}

/* ——— Gallery ——— */
.pw-gallery {
	background: var(--pw-bg);
}

.pw-gallery-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-auto-rows: 140px;
	gap: 10px;
	margin-top: 28px;
}

@media (max-width: 900px) {
	.pw-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 160px;
	}
}

.pw-gallery-item {
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--pw-line);
	grid-column: span 2;
	grid-row: span 2;
}

.pw-gallery-item--wide {
	grid-column: span 3;
	grid-row: span 2;
}

@media (max-width: 900px) {
	.pw-gallery-item,
	.pw-gallery-item--wide {
		grid-column: span 1;
		grid-row: span 1;
	}
}

.pw-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.pw-gallery-item:hover img {
	transform: scale(1.05);
}

/* ——— Booking ——— */
.pw-booking {
	background: linear-gradient(180deg, var(--pw-bg-elevated), var(--pw-bg));
}

.pw-booking-infographic {
	margin: 8px 0 36px;
	border-radius: var(--pw-radius);
	overflow: hidden;
	border: 1px solid var(--pw-line);
	background: var(--pw-surface);
}

.pw-infographic-img {
	width: 100%;
	height: auto;
	display: block;
}

.pw-steps {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
	display: grid;
	gap: 18px;
}

@media (min-width: 768px) {
	.pw-steps {
		grid-template-columns: repeat(3, 1fr);
	}
}

.pw-step {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 20px;
	background: var(--pw-surface);
	border-radius: var(--pw-radius);
	border: 1px solid var(--pw-line);
}

.pw-step-num {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--pw-accent);
	color: #111;
	font-family: var(--pw-font-head);
	font-weight: 700;
}

.pw-step-title {
	font-family: var(--pw-font-head);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0 0 6px;
}

.pw-step-text {
	margin: 0;
	color: var(--pw-muted);
	font-size: 0.92rem;
}

.pw-booking-hint {
	color: var(--pw-muted);
	max-width: 52rem;
	margin: 0 0 18px;
}

.pw-mega-tel {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 18px;
	padding: 18px 26px;
	border-radius: var(--pw-radius);
	background: var(--pw-accent);
	color: #111 !important;
	font-family: var(--pw-font-head);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	box-shadow: 0 16px 50px rgba(255, 106, 0, 0.4);
	animation: pw-pulse-ring 2.4s ease-out infinite;
}

.pw-mega-tel:hover {
	color: #111 !important;
	filter: brightness(1.05);
}

.pw-mega-tel--compact {
	animation: none;
	box-shadow: 0 8px 28px rgba(255, 106, 0, 0.3);
	margin-top: 8px;
}

.pw-mega-tel-num {
	font-size: clamp(1.2rem, 3vw, 1.6rem);
}

.pw-btn-outline {
	display: inline-block;
	padding: 12px 20px;
	border-radius: 999px;
	border: 1px solid var(--pw-line);
	color: var(--pw-text) !important;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
}

.pw-btn-outline:hover {
	border-color: var(--pw-accent);
	color: #fff !important;
}

/* ——— Contact ——— */
.pw-contact-grid {
	display: grid;
	gap: clamp(24px, 4vw, 36px);
	align-items: start;
}

.pw-contact-primary {
	min-width: 0;
}

.pw-contact-maplink {
	margin-top: 20px;
	margin-bottom: 0;
}

.pw-contact-aside {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
}

.pw-contact-workshop {
	margin: 0;
	border-radius: var(--pw-radius);
	overflow: hidden;
	border: 1px solid var(--pw-line);
	background: #0c0f14;
}

.pw-contact-workshop img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.pw-contact-map {
	position: relative;
	border-radius: var(--pw-radius);
	overflow: hidden;
	border: 1px solid var(--pw-line);
	background: #0c0f14;
	min-height: 220px;
}

.pw-contact-map-frame {
	display: block;
	width: 100%;
	height: clamp(220px, 32vw, 300px);
	border: 0;
}

.pw-contact-aside .pw-contact-card {
	margin-top: 0;
}

@media (min-width: 880px) {
	.pw-contact-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.pw-contact-address {
	font-size: 1.1rem;
	line-height: 1.65;
	color: var(--pw-text);
}

.pw-contact-hours,
.pw-contact-name {
	color: var(--pw-muted);
}

.pw-checklist {
	margin: 12px 0 0;
	padding-left: 1.1rem;
	color: var(--pw-muted);
}

.pw-checklist li {
	margin-bottom: 8px;
}

/* ——— Stats ——— */
.pw-stats {
	background: var(--pw-bg);
	border-block: 1px solid var(--pw-line);
}

.pw-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 20px;
	margin-top: 8px;
}

.pw-stat {
	text-align: center;
	padding: 20px 12px;
	background: var(--pw-surface);
	border-radius: var(--pw-radius);
	border: 1px solid var(--pw-line);
}

.pw-stat-value {
	display: inline-flex;
	align-items: baseline;
	justify-content: center;
	gap: 2px;
	font-family: var(--pw-font-head);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	color: var(--pw-accent);
	line-height: 1;
}

.pw-stat-suffix {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--pw-accent);
}

.pw-stat-label {
	display: block;
	margin-top: 12px;
	font-size: 0.88rem;
	color: var(--pw-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* ——— CTA band ——— */
.pw-cta-band {
	background: linear-gradient(90deg, #1a1510 0%, #2a1c12 40%, #1f160f 100%);
	border-block: 1px solid rgba(255, 106, 0, 0.35);
	padding: clamp(28px, 5vw, 44px) 20px;
}

.pw-cta-band-inner {
	max-width: 1140px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.pw-cta-band-title {
	font-family: var(--pw-font-head);
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 8px;
}

.pw-cta-band-sub {
	margin: 0;
	color: var(--pw-muted);
	max-width: 36rem;
	font-size: 1rem;
}

.pw-cta-band-tel {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 16px 24px;
	border-radius: var(--pw-radius);
	background: var(--pw-accent);
	color: #111 !important;
	box-shadow: 0 8px 32px rgba(255, 106, 0, 0.35);
	animation: pw-pulse-ring 2.4s ease-out infinite;
}

.pw-cta-band-tel:hover {
	color: #111 !important;
}

.pw-cta-band-tel-label {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	opacity: 0.9;
}

.pw-cta-band-tel-num {
	font-family: var(--pw-font-head);
	font-size: clamp(1.25rem, 2.8vw, 1.65rem);
	font-weight: 700;
	letter-spacing: 0.06em;
}

/* ——— Visual row ——— */
.pw-visual-row {
	padding-top: clamp(58px, 8vw, 104px);
	padding-bottom: 0;
	background:
		radial-gradient(circle at 82% 16%, rgba(255, 106, 0, 0.12), transparent 28%),
		#080a0e;
}

.pw-visual-row-head {
	padding-bottom: clamp(22px, 4vw, 38px);
}

.pw-visual-row-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	overflow: hidden;
}

@media (max-width: 1100px) {
	.pw-visual-row-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.pw-visual-cell {
	position: relative;
	min-height: clamp(200px, 26vw, 420px);
	overflow: hidden;
}

.pw-visual-cell img {
	width: 100%;
	height: 100%;
	min-height: clamp(200px, 26vw, 420px);
	object-fit: cover;
	filter: saturate(1.02) contrast(1.05) brightness(0.92);
	transition: transform 0.6s ease;
}

.pw-visual-cell:hover img {
	transform: scale(1.06);
}

@media (max-width: 768px) {
	.pw-visual-row-strip {
		grid-template-columns: 1fr 1fr;
	}

	.pw-visual-cell {
		min-height: 180px;
	}
}

/* ——— Testimonials ——— */
.pw-testimonials {
	background: var(--pw-bg-elevated);
}

.pw-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
	margin-top: 8px;
}

.pw-quote {
	margin: 0;
	padding: 22px;
	background: var(--pw-surface);
	border: 1px solid var(--pw-line);
	border-radius: var(--pw-radius);
	position: relative;
}

.pw-quote-stars {
	color: var(--pw-accent);
	font-size: 0.95rem;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.pw-quote-text {
	margin: 0 0 16px;
	font-size: 0.98rem;
	color: var(--pw-text);
	line-height: 1.55;
}

.pw-quote-meta {
	font-size: 0.85rem;
	color: var(--pw-muted);
}

.pw-quote-name {
	font-style: normal;
	font-weight: 700;
	color: var(--pw-text);
}

.pw-quote-role {
	display: block;
	margin-top: 4px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.72rem;
}

/* ——— Prep infographic ——— */
.pw-prep {
	background:
		linear-gradient(135deg, rgba(255, 106, 0, 0.07), transparent 42%),
		var(--pw-bg);
}

.pw-prep-grid {
	display: grid;
	gap: 32px;
	align-items: center;
}

@media (min-width: 900px) {
	.pw-prep-grid {
		grid-template-columns: 1fr 1.1fr;
	}
}

.pw-prep-list {
	display: grid;
	gap: 12px;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
	color: var(--pw-muted);
	line-height: 1.65;
}

.pw-prep-list li {
	margin: 0;
	padding: 16px 18px;
	border-radius: var(--pw-radius);
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.pw-prep-svg {
	border-radius: var(--pw-radius);
	overflow: hidden;
	border: 1px solid rgba(255, 106, 0, 0.18);
	background:
		linear-gradient(145deg, rgba(255, 106, 0, 0.1), transparent 44%),
		var(--pw-surface);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

/* ——— FAQ ——— */
.pw-faq {
	background:
		radial-gradient(circle at 12% 4%, rgba(46, 229, 157, 0.08), transparent 30%),
		var(--pw-bg-elevated);
}

.pw-faq-inner {
	max-width: 800px;
}

.pw-faq-list {
	margin-top: 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pw-faq-item {
	border: 1px solid var(--pw-line);
	border-radius: var(--pw-radius);
	background: var(--pw-surface);
	overflow: hidden;
}

.pw-faq-q {
	padding: 16px 20px;
	cursor: pointer;
	font-family: var(--pw-font-head);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	list-style: none;
	position: relative;
}

.pw-faq-q::-webkit-details-marker {
	display: none;
}

.pw-faq-q::after {
	content: '+';
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--pw-accent);
	font-size: 1.4rem;
	line-height: 1;
}

details[open] > .pw-faq-q::after {
	content: '–';
}

.pw-faq-a {
	padding: 0 20px 18px;
	color: var(--pw-muted);
	font-size: 0.95rem;
	line-height: 1.6;
	border-top: 1px solid var(--pw-line);
}

.pw-nav a {
	font-size: 0.78rem;
}

/* ——— Hub 50/50 ——— */
.pw-front-hub {
	padding-top: 0;
}

.pw-hub-split {
	padding: 0;
	min-height: calc(100svh - var(--pw-header-h));
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	background:
		radial-gradient(circle at 50% 0%, rgba(255, 106, 0, 0.18), transparent 34%),
		#07090c;
}

.pw-hub-split-intro {
	position: absolute;
	left: 50%;
	top: calc(var(--pw-header-h) + clamp(18px, 4vw, 38px));
	z-index: 5;
	transform: translateX(-50%);
	text-align: center;
	width: min(720px, calc(100vw - 40px));
	margin: 0 auto;
	padding: clamp(14px, 2.5vw, 20px) clamp(18px, 3vw, 26px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(8, 10, 14, 0.52);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.pw-hub-headline {
	font-family: var(--pw-font-head);
	font-size: clamp(1.28rem, 3vw, 2rem);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 6px;
	line-height: 1.12;
}

.pw-hub-sub {
	color: rgba(232, 234, 239, 0.86);
	font-size: clamp(0.88rem, 1.3vw, 1.02rem);
	margin: 0;
}

.pw-hub-phone-line {
	margin: 8px 0 0;
	font-size: 0.9rem;
}

.pw-hub-phone-sep {
	margin: 0 10px;
	color: var(--pw-muted);
}

.pw-hub-tel {
	color: var(--pw-text);
	font-weight: 700;
}

.pw-hub-wa-inline {
	font-weight: 600;
}

.pw-hub-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	flex: 1;
	min-height: calc(100svh - var(--pw-header-h));
	max-width: none;
	margin: 0;
	width: 100%;
	padding: 0;
	border-radius: 0;
	overflow: hidden;
	border: 0;
}

.pw-hub-panel {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: clamp(28px, 5vw, 64px);
	min-height: calc(100svh - var(--pw-header-h));
	color: var(--pw-text);
	background: #090b0f;
	overflow: hidden;
	transition: flex 0.35s ease, box-shadow 0.25s ease;
}

.pw-hub-panel:hover {
	flex: 1.08;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.pw-hub-grid:has(.pw-hub-panel:hover) .pw-hub-panel:not(:hover),
.pw-hub-grid:has(.pw-hub-panel:focus-within) .pw-hub-panel:not(:focus-within) {
	box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.32);
}

.pw-hub-cta:focus-visible {
	outline: 3px solid var(--pw-accent);
	outline-offset: 3px;
}

.pw-hub-panel--left {
	border-right: 1px solid var(--pw-line);
}

.pw-hub-panel--right {
	border-left: 1px solid var(--pw-line);
}

.pw-hub-panel-media {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(180deg, rgba(4, 6, 9, 0.18) 0%, rgba(4, 6, 9, 0.55) 54%, rgba(4, 6, 9, 0.88) 100%),
		linear-gradient(105deg, rgba(255, 106, 0, 0.24), transparent 45%),
		var(--pw-hub-image, linear-gradient(145deg, #171d27, #07090c));
	background-size: cover;
	background-position: center;
	transform: scale(1.02);
	transition: transform 0.55s ease, filter 0.55s ease;
}

.pw-hub-panel--right .pw-hub-panel-media {
	background:
		linear-gradient(180deg, rgba(4, 6, 9, 0.18) 0%, rgba(4, 6, 9, 0.55) 54%, rgba(4, 6, 9, 0.88) 100%),
		linear-gradient(255deg, rgba(46, 229, 157, 0.22), transparent 45%),
		var(--pw-hub-image, linear-gradient(145deg, #171d27, #07090c));
	background-size: cover;
	background-position: center;
}

.pw-hub-panel::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 42px 42px;
	opacity: 0.28;
	pointer-events: none;
}

.pw-hub-panel:hover .pw-hub-panel-media {
	transform: scale(1.08);
	filter: saturate(1.08) contrast(1.05);
}

.pw-hub-grid:has(.pw-hub-panel:hover) .pw-hub-panel:not(:hover) .pw-hub-panel-media,
.pw-hub-grid:has(.pw-hub-panel:focus-within) .pw-hub-panel:not(:focus-within) .pw-hub-panel-media {
	filter: brightness(0.46) saturate(0.72);
}

.pw-hub-grid:has(.pw-hub-panel:hover) .pw-hub-panel:not(:hover) .pw-hub-panel-inner,
.pw-hub-grid:has(.pw-hub-panel:focus-within) .pw-hub-panel:not(:focus-within) .pw-hub-panel-inner {
	opacity: 0.68;
}

.pw-hub-panel-inner {
	position: relative;
	z-index: 1;
	max-width: 560px;
	padding: clamp(20px, 3vw, 32px);
	border-radius: var(--pw-radius);
	background: rgba(8, 10, 14, 0.44);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.pw-hub-kicker {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--pw-accent);
	margin: 0 0 10px;
	font-weight: 700;
}

.pw-hub-panel-title {
	font-family: var(--pw-font-head);
	font-size: clamp(2rem, 5vw, 4.25rem);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 12px;
	line-height: 0.98;
}

.pw-hub-panel-text {
	color: rgba(232, 234, 239, 0.9);
	margin: 0 0 16px;
	font-size: clamp(1rem, 1.6vw, 1.15rem);
	line-height: 1.55;
}

.pw-hub-trust {
	margin: 0 0 20px;
	padding-left: 1.1rem;
	color: var(--pw-text);
	font-size: 0.9rem;
	line-height: 1.45;
}

.pw-hub-trust li {
	margin-bottom: 6px;
}

.pw-hub-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 999px;
	background: var(--pw-accent);
	color: #111 !important;
	font-family: var(--pw-font-head);
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-top: auto;
	align-self: flex-start;
}

.pw-hub-panel--right .pw-hub-cta {
	background: var(--pw-success);
	color: #0a1210 !important;
}

@media (max-width: 768px) {
	.pw-hub-split-intro {
		position: relative;
		left: auto;
		top: auto;
		transform: none;
		width: auto;
		margin: 16px 16px 0;
		border-radius: var(--pw-radius);
	}

	.pw-hub-grid {
		grid-template-columns: 1fr;
		min-height: unset;
		margin-top: 16px;
	}

	.pw-hub-panel--left {
		border-right: none;
		border-bottom: 1px solid var(--pw-line);
	}

	.pw-hub-panel--right {
		border-left: none;
	}

	.pw-hub-panel {
		min-height: min(72svh, 620px);
		padding: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pw-hub-panel {
		transition: none;
	}

	.pw-hub-panel:hover {
		flex: 1;
	}

	.pw-hub-grid:has(.pw-hub-panel:hover) .pw-hub-panel:not(:hover),
	.pw-hub-grid:has(.pw-hub-panel:focus-within) .pw-hub-panel:not(:focus-within) {
		box-shadow: none;
	}

	.pw-hub-panel-media {
		transition: none;
	}

	.pw-hub-panel:hover .pw-hub-panel-media {
		transform: scale(1.02);
		filter: none;
	}

	.pw-hub-grid:has(.pw-hub-panel:hover) .pw-hub-panel:not(:hover) .pw-hub-panel-media,
	.pw-hub-grid:has(.pw-hub-panel:focus-within) .pw-hub-panel:not(:focus-within) .pw-hub-panel-media {
		filter: none;
	}

	.pw-hub-grid:has(.pw-hub-panel:hover) .pw-hub-panel:not(:hover) .pw-hub-panel-inner,
	.pw-hub-grid:has(.pw-hub-panel:focus-within) .pw-hub-panel:not(:focus-within) .pw-hub-panel-inner {
		opacity: 1;
	}
}

/* ——— Serwis rolniczy ——— */
.pw-serwis-rol {
	position: relative;
	background:
		radial-gradient(circle at 84% 8%, rgba(255, 106, 0, 0.18), transparent 30%),
		linear-gradient(180deg, #0a0d12 0%, #151914 58%, #090b0f 100%);
	padding: clamp(58px, 8vw, 104px) 0 0;
	border-top: 1px solid rgba(255, 106, 0, 0.18);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.pw-serwis-rol-head {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.55fr);
	gap: clamp(22px, 5vw, 70px);
	align-items: start;
	padding-bottom: clamp(30px, 5vw, 58px);
}

.pw-serwis-rol-body {
	max-width: 560px;
	margin: 0;
	color: rgba(232, 234, 239, 0.72);
	font-size: 1.06rem;
	line-height: 1.65;
}

.pw-serwis-rol-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	width: 100%;
	margin: 0;
	padding: 0;
}

.pw-serwis-rol-cell {
	margin: 0;
	position: relative;
	overflow: hidden;
}

.pw-serwis-rol-cell::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.48));
	pointer-events: none;
}

.pw-serwis-rol-cell img {
	width: 100%;
	height: min(58vh, 560px);
	object-fit: cover;
	display: block;
	filter: saturate(1.04) contrast(1.03);
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.pw-serwis-rol-cell:hover img {
	transform: scale(1.06);
}

@media (max-width: 900px) {
	.pw-serwis-rol-head {
		grid-template-columns: 1fr;
	}

	.pw-serwis-rol-gallery {
		grid-template-columns: repeat(2, 1fr);
	}

	.pw-serwis-rol-cell img {
		height: min(38vh, 360px);
	}
}

@media (max-width: 520px) {
	.pw-serwis-rol-gallery {
		grid-template-columns: 1fr;
	}
}

/* ——— WhatsApp FAB ——— */
.pw-wa-fab {
	position: fixed;
	right: max(16px, env(safe-area-inset-right));
	bottom: max(20px, env(safe-area-inset-bottom));
	z-index: 9500;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px 12px 14px;
	border-radius: 999px;
	background: #25d366;
	color: #fff !important;
	font-family: var(--pw-font-head);
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pw-wa-fab:hover {
	color: #fff !important;
	filter: brightness(1.06);
	transform: scale(1.03);
}

.pw-wa-fab:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

.pw-wa-fab-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.15);
	font-size: 1.1rem;
	font-weight: 800;
}

.pw-wa-fab-label {
	padding-right: 4px;
}

@media (max-width: 768px) {
	body.pw-has-wa-fab {
		padding-bottom: calc(88px + 72px + env(safe-area-inset-bottom));
	}

	.pw-wa-fab {
		bottom: calc(88px + max(12px, env(safe-area-inset-bottom)));
	}
}

@media (prefers-reduced-motion: reduce) {
	.pw-wa-fab {
		transition: none;
	}

	.pw-wa-fab:hover {
		transform: none;
	}
}

.pw-lp--warsztat .pw-hero,
.pw-lp--serwis .pw-hero {
	min-height: min(72vh, 720px);
}

/* Landing Warsztat — rhythm + equipment grid (scoped; Serwis bez zmian). */
.pw-lp--warsztat #wyposazenie .pw-services-grid {
	gap: clamp(1rem, 2vw, 1.35rem);
}

.pw-lp--warsztat #wyposazenie .pw-card-text {
	max-width: 42ch;
}

.pw-lp--warsztat #warsztat-wizual.pw-visual-row {
	padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.pw-lp--warsztat .pw-service-showcase-lead {
	max-width: 52ch;
}

