:root {
	--white: rgb(255, 255, 255);
	--footer: rgb(199, 5, 57);
	--crimson: rgb(186, 12, 47);
	--cyan-dark: rgb(36, 177, 209);
	--text: rgb(52, 58, 71);
	--muted: rgb(104, 115, 132);
	--soft-line: rgb(226, 233, 240);
	--bg: rgb(240, 240, 240);
	--card: rgb(255, 255, 255);
	--shadow: 0 24px 60px rgba(16, 28, 48, 0.14);
	--container: 1240px;
	--hero-overlay: linear-gradient(
		90deg,
		rgba(30, 26, 22, 0.76) 0%,
		rgba(30, 26, 22, 0.53) 35%,
		rgba(30, 26, 22, 0.18) 100%
	);
	--danger-bg: rgba(199, 5, 57, 0.08);
	--danger-line: rgba(199, 5, 57, 0.16);
	--gray-50: rgb(249, 249, 249);
	--gray-100: rgb(240, 240, 240);
	--gray-200: rgb(224, 224, 224);
	--gray-300: rgb(192, 192, 192);
	--gray-500: rgb(158, 158, 158);
	--gray-600: rgb(117, 117, 117);
	--gray-800: rgb(66, 66, 66);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family:
		Inter,
		Segoe UI,
		Roboto,
		Arial,
		sans-serif;
	background: radial-gradient(circle at top right, rgba(144, 153, 155, 0.18), transparent 20%), var(--bg);
	color: var(--text);
}

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

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

button,
input {
	font: inherit;
}

.container {
	width: min(var(--container), calc(100% - 32px));
	margin: 0 auto;
}

.site-header {
	position: fixed;
	width: 100%;
	z-index: 30;
	transition:
		top 0.25s ease,
		background 0.25s ease,
		backdrop-filter 0.25s ease,
		border-color 0.25s ease;
}

.site-header--overlay {
	top: 18px;
	left: 0;
	background: transparent;
	border-bottom: 1px solid transparent;
}

.site-header--solid {
	top: 0;
	background: rgba(255, 255, 255, 0.94);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(226, 233, 240, 0.9);
	overflow: visible;
}

.header-container {
	padding: 0;
}

.site-header--solid .header-container {
	padding: 12px 0;
}

.nav-shell {
	position: relative;
	background: var(--white);
	border-radius: 28px 28px 28px 28px;
	box-shadow: 0 18px 40px rgba(15, 27, 45, 0.12);
	min-height: 86px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 0 22px 0 360px;
	overflow: visible;
}

.logo-panel {
	position: absolute;
	left: 0;
	top: -16px;
	width: 340px;
	height: 116px;
	background: var(--white);
	border-radius: 0 0 28px 28px;
	box-shadow: 0 18px 40px rgba(15, 27, 45, 0.12);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 14px 18px;
	z-index: 1;
}

.site-header--solid .logo-panel {
	top: -8px;
}

.logo-panel::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 0 0 28px 28px;
	clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%);
	border: 1px solid rgba(0, 0, 0, 0.02);
	pointer-events: none;
}

.brand {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}

.brand-logo {
	width: 100%;
	max-width: 275px;
	height: auto;
	object-fit: contain;
	display: block;
}
.menu {
	display: flex;
	align-items: center;
	gap: 26px;
	flex-wrap: wrap;
	justify-content: center;
}

.menu a {
	color: var(--text);
	font-weight: 700;
	position: relative;
	opacity: 0.88;
}

.menu a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 2px;
	transform: scaleX(0);
	transform-origin: left;
	background: linear-gradient(90deg, var(--footer), var(--crimson));
	transition: transform 0.22s ease;
}

.menu a:hover::after,
.menu a:focus-visible::after,
.menu a.is-active::after {
	transform: scaleX(1);
}

.menu a.is-active {
	opacity: 1;
}

.menu-right {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

.lang-pill,
.login-pill {
	min-height: 42px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 16px;
	border: 1px solid var(--soft-line);
	background: var(--white);
	font-weight: 800;
}

.lang-pill {
	cursor: pointer;
	font-family: inherit;
}

.lang-switcher {
	position: relative;
}

.lang-switcher__menu {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	min-width: 100%;
	background: var(--white);
	border: 1px solid var(--soft-line);
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(15, 27, 45, 0.14);
	z-index: 110;
	overflow: hidden;
}

.lang-switcher.is-open .lang-switcher__menu {
	display: block;
}

.lang-switcher__option {
	display: block;
	width: 100%;
	padding: 9px 16px;
	background: none;
	border: none;
	font-weight: 800;
	font-size: inherit;
	font-family: inherit;
	color: var(--text);
	cursor: pointer;
	text-align: center;
}

.lang-switcher__option:hover {
	background: rgba(15, 27, 45, 0.06);
}

.login-pill {
	color: azure;
	background: linear-gradient(135deg, var(--footer), rgb(231, 72, 115));
}

.hero {
	position: relative;
	min-height: 760px;
	padding-top: 150px;
	background:
		var(--hero-overlay),
		url('../img/0008_LUZ_Lublin_BW1_8801-1536x1025.webp') center center / cover no-repeat;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 36px;
	align-items: start;
	padding-top: 34px;
}

.hero-copy {
	color: var(--white);
	max-width: 680px;
	padding-top: 25px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--crimson);
	text-shadow: 0 0 1px rgba(240, 223, 223, 0.527);
}

.eyebrow::before {
	content: '';
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--crimson);
	box-shadow: 0 0 0 6px rgb(251, 253, 253);
}

.hero h1 {
	margin: 16px 0 14px;
	font-size: clamp(2.3rem, 4vw, 4rem);
	line-height: 0.85;
	letter-spacing: -0.06em;
}

.hero p {
	margin: 0;
	max-width: 60ch;
	font-size: 1.06rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92);
}

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.hero-badges span {
	padding: 12px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: var(--white);
	font-weight: 700;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.hero-side {
	display: flex;
	justify-content: flex-end;
	padding-top: 18px;
}

.glass-card {
	width: 100%;
	max-width: 430px;
	border-radius: 30px;
	padding: 22px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.22);
	box-shadow: var(--shadow);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	color: var(--white);
}

.mini-kicker {
	color: var(--crimson);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.glass-card h3 {
	margin: 10px 0;
	font-size: 1.8rem;
	line-height: 1.02;
	letter-spacing: -0.05em;
}

.glass-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
}

.glass-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 18px;
}

.glass-stat {
	padding: 16px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-stat strong {
	display: block;
	font-size: 1.45rem;
	margin-bottom: 5px;
	letter-spacing: -0.04em;
}

.glass-stat span {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
}

.search-section {
	position: relative;
	z-index: 5;
	margin-top: -120px;
}

.search-card {
	background: var(--white);
	border-radius: 34px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(222, 230, 237, 0.9);
	overflow: hidden;
}

.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-bottom: 1px solid var(--soft-line);
	border-radius: 14px;
	background: linear-gradient(180deg, #f9f9f9 0%, #efefef 50%, #f9f9f9 100%);
}

.step {
	min-height: 104px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	border-right: 1px solid var(--soft-line);
}

.step:last-child {
	border-right: 0;
}

.step-no {
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background-color: rgb(241 223 228);
	color: var(--gray-800);
	display: grid;
	place-items: center;
	font-size: 1.35rem;
	font-weight: 900;
	flex: 0 0 auto;
}

.step.active .step-no {
	background: linear-gradient(135deg, var(--footer), rgb(231, 72, 115));
	color: var(--white);
	box-shadow: 0 14px 28px rgba(199, 5, 57, 0.18);
}

.step-title {
	font-weight: 800;
	line-height: 1.3;
}
/* ─── step navigation ─── */

.step--back {
	cursor: pointer;
	transition: background 0.18s;
}

.step--back:hover .step-no {
	background: linear-gradient(135deg, var(--footer), rgb(231, 72, 115));
	color: var(--white);
}

.search-body {
	padding: 28px;
}

.search-topline {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 18px;
	flex-wrap: wrap;
}

.section-kicker {
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--crimson);
}

.search-head h2,
.section-head h2,
.panel-head h1,
.form-card h1 {
	margin: 10px 0;
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	letter-spacing: -0.05em;
	line-height: 1.02;
}

.search-head p {
	margin: 10px 0 0;
	color: var(--muted);
	line-height: 1.7;
	max-width: 70ch;
}

.availability-pill {
	padding: 10px 14px;
	border-radius: 999px;
	background: rgb(241 223 228);
	color: var(--crimson);
	font-weight: 800;
	white-space: nowrap;
}

.booking-form {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	align-items: end;
	margin-top: 30px;
}

.booking-form--compact {
	margin-top: 18px;
}

.field {
	display: grid;
	gap: 8px;
}

.field label {
	font-size: 0.92rem;
	font-weight: 800;
	color: var(--muted);
}

.input {
	width: 100%;
	min-height: 58px;
	border-radius: 16px;
	border: 1px solid rgb(222, 230, 237);
	background: rgb(252, 253, 255);
	padding: 0 16px;
	color: var(--text);
	outline: none;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.input:focus {
	border-color: rgba(115, 225, 245, 0.8);
	box-shadow: 0 0 0 4px rgba(115, 225, 245, 0.18);
	transform: translateY(-1px);
}

select.input {
	-webkit-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' fill='none' stroke='%23425466' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
	cursor: pointer;
}

.btn {
	min-height: 58px;
	border: 0;
	border-radius: 18px;
	padding: 0 20px;
	cursor: pointer;
	font-weight: 900;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		opacity 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.btn:hover {
	transform: translateY(-2px);
}

.btn:disabled {
	cursor: default;
	transform: none;
	opacity: 0.8;
}

.btn-primary {
	color: var(--white);
	background: linear-gradient(135deg, var(--footer), rgb(231, 72, 115));
}

.btn-secondary {
	color: var(--text);
	background: var(--white);
	border: 1px solid var(--soft-line);
	box-shadow: none;
}

.summary {
	margin-top: 16px;
	padding: 16px 18px;
	border-radius: 18px;
	background: linear-gradient(180deg, #f9f9f9 0%, #efefef 50%, #f9f9f9 100%);
	border: 1px solid rgb(225, 232, 239);
	color: var(--muted);
	line-height: 1.65;
}

.summary strong {
	color: var(--text);
}

.main,
.page-shell {
	padding: 135px 0 70px;
}

.section {
	margin-top: 30px;
}

.section-head {
	margin-bottom: 20px;
}

.section-head p {
	margin: 0;
	color: var(--muted);
	line-height: 1.72;
	/* max-width: 72ch; */
}

.map-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
}

.card,
.panel,
.summary-card,
.form-card,
.confirmation-card {
	background: var(--card);
	border: 1px solid rgb(226, 233, 240);
	border-radius: 28px;
	box-shadow: var(--shadow);
}

.panel {
	padding: 24px;
}

.panel-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 16px;
	flex-wrap: wrap;
}

.muted {
	color: var(--muted);
	line-height: 1.7;
}

.map-card {
	padding: 16px;
	overflow: hidden;
}

.map-card img {
	width: 100%;
	border-radius: 20px;
	background: rgb(248, 250, 252);
}

.map-aside {
	padding: 24px;
	display: grid;
	gap: 16px;
	align-content: start;
}

.aside-box {
	padding: 18px;
	border-radius: 20px;
	background: rgb(247, 250, 253);
	border: 1px solid rgb(226, 233, 240);
}

.aside-box h3 {
	margin: 0 0 8px;
	font-size: 1.14rem;
	letter-spacing: -0.03em;
}

.aside-box p {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 22px;
}

.info-card {
	padding: 24px;
}

.info-icon {
	width: 56px;
	height: 56px;
	border-radius: 18px;
	display: grid;
	place-items: center;
	margin-bottom: 14px;
	background: linear-gradient(135deg, rgba(115, 225, 245, 0.24), rgba(199, 5, 57, 0.08));
	color: var(--text);
	font-weight: 900;
	font-size: 1.2rem;
}

.info-card h3 {
	margin: 0 0 10px;
	font-size: 1.18rem;
	letter-spacing: -0.03em;
}

.info-card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.72;
}

.results-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	margin-top: 18px;
}

.parking-card {
	overflow: hidden;
}

.parking-top {
	padding: 22px;
	background: linear-gradient(180deg, rgb(247, 250, 253), rgb(241, 246, 250));
	border-bottom: 1px solid rgb(226, 233, 240);
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 14px;
	align-items: center;
}

.parking-symbol {
	width: 62px;
	height: 62px;
	border-radius: 18px;
	display: grid;
	place-items: center;
	color: var(--white);
	font-size: 1.9rem;
	font-weight: 900;
	letter-spacing: -0.05em;
}

.parking-symbol.a {
	background: linear-gradient(135deg, var(--footer), rgb(231, 72, 115));
}

.parking-symbol.b {
	background: linear-gradient(135deg, var(--cyan-dark), rgb(115, 225, 245));
}

.parking-top h3 {
	margin: 0;
	font-size: 1.9rem;
	letter-spacing: -0.05em;
	line-height: 1;
}

.parking-top p {
	margin: 8px 0 0;
	color: var(--muted);
	font-weight: 700;
}

.tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 12px;
	border-radius: 999px;
	font-size: 0.84rem;
	font-weight: 900;
	white-space: nowrap;
}

.tag.same-price {
	background: rgba(115, 225, 245, 0.14);
	color: var(--cyan-dark);
}

.parking-body {
	padding: 22px;
}

.parking-body > p {
	margin: 0 0 16px;
	color: var(--muted);
	line-height: 1.7;
}

.feature-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.feature-list li {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 10px;
	color: var(--text);
	align-items: start;
	line-height: 1.5;
}

.feature-list li span:first-child {
	width: 28px;
	height: 28px;
	border-radius: 10px;
	background: rgb(241, 246, 250);
	display: grid;
	place-items: center;
	color: var(--cyan-dark);
	font-weight: 900;
}

.parking-footer {
	margin-top: 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.meta {
	display: grid;
	gap: 5px;
}

.meta strong {
	font-size: 1rem;
	text-decoration-line: underline;
}

.meta span {
	color: var(--muted);
}

.parking-card.is-recommended {
	outline: 3px solid rgba(199, 5, 57, 0.14);
}

.parking-card.is-secondary {
	outline: 3px solid rgba(115, 225, 245, 0.24);
}

.state-card {
	margin-top: 18px;
	padding: 18px 20px;
	border-radius: 20px;
	background: var(--white);
	border: 1px solid rgb(226, 233, 240);
	box-shadow: var(--shadow);
	color: var(--muted);
	line-height: 1.7;
}

.state-card strong {
	color: var(--text);
}

.state-card--error {
	background: var(--danger-bg);
	border-color: var(--danger-line);
	color: var(--footer);
	box-shadow: none;
}

.state-card--loading {
	background: linear-gradient(180deg, rgb(250, 252, 254), rgb(245, 248, 251));
}

.is-hidden {
	display: none !important;
}

.checkout-layout {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 24px;
}

.summary-card,
.form-card,
.confirmation-card {
	padding: 24px;
}

.summary-card h2 {
	margin: 10px 0 12px;
	font-size: 1.8rem;
	letter-spacing: -0.04em;
}

.summary-list {
	display: grid;
	gap: 12px;
	margin-top: 18px;
}

.summary-item {
	padding: 14px 16px;
	border-radius: 18px;
	background: linear-gradient(180deg, rgb(246, 250, 253), rgb(241, 246, 250));
	border: 1px solid rgb(225, 232, 239);
}

.summary-item strong {
	display: block;
	margin-bottom: 6px;
}

.checkout-form {
	margin-top: 20px;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.radio-group {
	margin: 22px 0 16px;
	padding: 18px;
	border-radius: 20px;
	border: 1px solid rgb(226, 233, 240);
	background: rgb(250, 252, 254);
	display: grid;
	gap: 12px;
}

.radio-group-title {
	font-weight: 900;
	color: var(--text);
}

.radio-option {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
}

.checkbox-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 12px;
	color: var(--muted);
	line-height: 1.6;
}

.form-actions {
	margin-top: 24px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.confirmation-card {
	max-width: 920px;
	margin: 0 auto;
}

.success-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 40px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(115, 225, 245, 0.14);
	color: var(--cyan-dark);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.78rem;
}

.confirmation-card h1 {
	margin: 18px 0 12px;
	font-size: clamp(2rem, 3.5vw, 3rem);
	letter-spacing: -0.05em;
	line-height: 1.02;
}

.confirmation-code {
	margin: 22px 0;
	padding: 18px 20px;
	border-radius: 20px;
	background: linear-gradient(180deg, rgb(246, 250, 253), rgb(241, 246, 250));
	border: 1px solid rgb(225, 232, 239);
}

.confirmation-code strong {
	display: block;
	margin-top: 8px;
	font-size: 1.9rem;
	letter-spacing: 0.06em;
}

.confirmation-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 22px;
}

.confirmation-box {
	padding: 16px 18px;
	border-radius: 18px;
	background: rgb(250, 252, 254);
	border: 1px solid rgb(226, 233, 240);
}

.confirmation-box strong {
	display: block;
	margin-bottom: 6px;
}
/* ─── apcoa redirect ─── */
.apcoa-redirect-card {
	text-align: center;
	padding-top: 40px;
}

.apcoa-redirect-loader {
	display: flex;
	justify-content: center;
	margin: 0 auto 28px;
}

.apcoa-redirect-spinner {
	width: 64px;
	height: 64px;
	border: 5px solid var(--soft-line);
	border-top-color: var(--crimson);
	border-radius: 50%;
	animation: apcoa-spin 0.9s linear infinite;
}

@keyframes apcoa-spin {
	to {
		transform: rotate(360deg);
	}
}

.apcoa-redirect-pill {
	background: rgba(199, 5, 57, 0.08);
	color: var(--crimson);
	margin: 0 auto 18px;
}

/* confirmation grid */
.apcoa-redirect-card .confirmation-grid {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.apcoa-redirect-card .form-actions {
	justify-content: center;
}

.footer {
	margin-top: 42px;
	background: url('../img/Footer-bg.png') center center / cover no-repeat;
}

.footer-top-accent {
	display: none;
}

.footer-main {
	padding: 48px 40px 36px;
}

.footer-columns {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 190px;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-column h3 {
	margin: 0 0 14px;
	font-size: 1.05rem;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.footer-column a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	line-height: 1.35;
	transition:
		opacity 0.2s ease,
		color 0.2s ease;
}

.footer-column a:hover {
	color: #fff;
	opacity: 1;
}

.footer-bottom {
	background: rgba(10, 15, 28, 0.45);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
	min-height: 72px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	color: rgb(255, 255, 255);
}

.footer-cookie,
.footer-copy {
	color: rgb(255, 255, 255);
	font-size: 0.95rem;
}

@media (max-width: 1140px) {
	.hero-grid,
	.map-layout,
	.info-grid,
	.results-grid,
	.checkout-layout {
		grid-template-columns: 1fr;
	}

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

	.booking-form .field:last-child {
		grid-column: 1 / -1;
	}

	.hero-side {
		justify-content: flex-start;
	}
}

@media (max-width: 1100px) {
	.footer-columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px;
	}
}

@media (max-width: 700px) {
	.container {
		width: min(var(--container), calc(100% - 20px));
	}

	/* mobile crop */
	.hero {
		background:
			var(--hero-overlay),
			url('../img/newBgForm1-mobile.webp') center top / cover no-repeat;
	}
	.hero-grid {
		gap: 26px;
		padding-top: 10px;
	}

	.hero {
		min-height: auto;
		padding-top: 72px;
		padding-bottom: 110px;
	}

	.hero-copy {
		/* padding-top: 8px; */
	}

	.hero h1 {
		font-size: 2.2rem;
		padding-top: 16px;
		padding-bottom: 20px;
		max-width: 200px;
	}
	.hero p {
		font-size: 1rem;
		line-height: 1.4;
	}

	.eyebrow {
		gap: 8px;
		padding: 10px 14px;
		font-size: 0.74rem;
		font-weight: 900;
		text-transform: uppercase;
		letter-spacing: 0.1em;
	}
	.booking-form,
	.steps,
	.footer-columns {
		grid-template-columns: 1fr;
	}

	.step {
		min-height: 84px;
	}

	.search-body,
	.panel,
	.map-aside,
	.info-card,
	.parking-body,
	.summary-card,
	.form-card,
	.confirmation-card {
		padding: 18px;
	}

	.parking-top {
		grid-template-columns: auto 1fr;
	}

	.parking-top .tag {
		grid-column: 1 / -1;
		justify-self: start;
	}

	.logo-panel {
		height: 95px;
		padding: 10px 14px;
	}

	.brand-logo {
		max-width: 205px;
	}
	.main,
	.page-shell {
		padding: 40px 0 20px;
	}
	.footer-main {
		padding: 26px 0 22px;
	}

	.footer-bottom-inner {
		min-height: 78px;
		align-items: flex-start;
	}

	.form-actions {
		flex-direction: column;
	}

	.form-actions .btn {
		width: 100%;
	}
}

/* ─── apcoa api — dynamic card elements ─── */

/* availability badge */
.apcoa-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.apcoa-badge--ok {
	background: rgba(34, 197, 94, 0.1);
	color: rgb(21, 128, 61);
	border: 1px solid rgba(34, 197, 94, 0.22);
}

.apcoa-badge--full {
	background: var(--danger-bg);
	color: var(--crimson);
	border: 1px solid var(--danger-line);
}

/* dynamic price label */
.apcoa-dynamic-price {
	font-size: 0.75rem;
	color: var(--muted);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	line-height: 1.2;
	margin-bottom: 2px;
}

/* price tag */
.tag--price {
	background: rgba(199, 5, 57, 0.08);
	color: var(--crimson);
	border: 1px solid rgba(199, 5, 57, 0.18);
	font-size: 1.05rem;
	font-weight: 900;
	padding: 6px 14px;
	border-radius: 999px;
	white-space: nowrap;
}

/* unavailable tag */
.tag--unavailable {
	background: rgb(245, 245, 245);
	color: var(--muted);
	border: 1px solid var(--soft-line);
	font-size: 0.85rem;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: 999px;
}

/* available card */
.parking-card.apcoa-available {
	outline: 2px solid rgba(34, 197, 94, 0.18);
}

/* unavailable card */
.parking-card.apcoa-unavailable {
	opacity: 0.72;
	outline: 1px solid var(--soft-line);
}

/* skeleton */
.parking-card--loading .apcoa-loading-bar {
	animation: apcoa-pulse 1.4s ease-in-out infinite;
}

@keyframes apcoa-pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.4;
	}
}

.tag--skeleton {
	background: var(--soft-line);
	border-radius: 999px;
	color: transparent;
	min-width: 80px;
	animation: apcoa-pulse 1.4s ease-in-out infinite;
}

/* parking footer */
.parking-footer {
	flex-wrap: wrap;
	gap: 10px;
}

.parking-footer .apcoa-badge {
	flex-basis: 100%;
}

/* ─── mobile navigation ─── */

/* hidden on desktop */
.nav-mobile-bar {
	display: none;
}
.nav-drawer {
	display: none;
}

/* hamburger button */
.hamburger-btn {
	width: 44px;
	height: 44px;
	border: none;
	background: transparent;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 0;
	flex-shrink: 0;
}

.hamburger-btn span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition:
		transform 0.22s ease,
		opacity 0.18s ease;
	transform-origin: center;
}

.hamburger-btn.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.is-open span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}
.hamburger-btn.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* mobile language toggle */
.nav-mobile-lang {
	height: 36px;
	border-radius: 8px;
	border: 1px solid var(--soft-line);
	background: var(--white);
	font-weight: 800;
	font-size: 0.88rem;
	padding: 0 10px;
	cursor: pointer;
	color: var(--text);
	font-family: inherit;
}

/* ─── mobile breakpoint ─── */
@media (max-width: 992px) {
	.nav-shell {
		min-height: auto;
		padding: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		overflow: visible;
		padding-top: 0;
		background: transparent;
		border-radius: 0;
		box-shadow: none;
	}

	.logo-panel {
		display: none;
	}

	/* hide desktop menu + APCOA */
	.nav-shell > nav.menu,
	.nav-shell > .menu-right,
	.nav-shell > div:has(.header__logo) {
		display: none !important;
	}

	/* mobile bar — kompaktowy pasek 56px */
	.nav-mobile-bar {
		display: flex;
		align-items: center;
		height: 61px;
		padding: 0 14px;
		gap: 8px;
		background: var(--white);
		border-bottom: 1px solid var(--soft-line);
		box-shadow: 0 2px 12px rgba(15, 27, 45, 0.08);
		position: relative;
		z-index: 10;
	}

	.mob-brand {
		display: flex;
		align-items: center;
		flex-shrink: 0;
	}

	.mob-brand img {
		height: 40px;
		width: auto;
		display: block;
	}

	.mob-apcoa {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.mob-apcoa img {
		height: 18px;
		width: auto;
		display: block;
		padding-top: 3px;
	}

	/* lang switcher w szufladzie */
	.drawer-lang-row {
		padding: 12px 20px 56px;
		border-top: 1px solid var(--soft-line);
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.drawer-lang-row .nav-mobile-lang {
		height: 36px;
		border-radius: 8px;
		border: 1px solid var(--soft-line);
		background: var(--white);
		font-weight: 800;
		font-size: 0.88rem;
		padding: 0 14px;
		cursor: pointer;
		color: var(--text);
		font-family: inherit;
	}

	/* drawer */
	.nav-drawer {
		display: block;
		overflow: hidden;
		max-height: 0;
		transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
		background: var(--white);
		border-top: 1px solid var(--soft-line);
		position: relative;
		z-index: 10;
	}

	.nav-drawer.is-open {
		max-height: 400px;
	}

	.nav-drawer a {
		display: block;
		padding: 14px 20px;
		font-weight: 700;
		font-size: 1rem;
		color: var(--text);
		border-bottom: 1px solid var(--soft-line);
		opacity: 0.88;
		transition:
			color 0.15s,
			opacity 0.15s;
	}

	.nav-drawer a:last-child {
		border-bottom: none;
	}

	.nav-drawer a:hover,
	.nav-drawer a.is-active {
		opacity: 1;
		color: var(--crimson);
	}

	.nav-drawer .drawer-login {
		display: block;
		margin: 10px 16px 14px;
		padding: 12px;
		text-align: center;
		background: linear-gradient(135deg, var(--footer), rgb(231, 72, 115));
		color: white !important;
		border-radius: 12px;
		font-weight: 800;
		opacity: 1 !important;
		border: none;
	}

	/* overflow visible for drawer; overlay bez offsetu na mobile */
	.site-header--solid,
	.site-header--overlay {
		overflow: visible;
	}

	.site-header--overlay {
		top: 12px;
	}

	/* responsive steps */
	.steps-box {
		padding-top: 50px;
	}
	.steps {
		grid-template-columns: repeat(2, 1fr);
	}
	.step {
		border-right: 0;
		border-bottom: 1px solid var(--soft-line);
	}
}
/* ─── back to top ─── */

.back-to-top {
	position: fixed;
	bottom: 45px;
	right: 28px;
	z-index: 50;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: none;
	background: var(--crimson);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 16px rgba(186, 12, 47, 0.38);
	opacity: 0;
	transform: translateY(12px);
	pointer-events: none;
	transition:
		opacity 0.25s ease,
		transform 0.25s ease,
		background 0.18s;
}

.back-to-top.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.back-to-top:hover {
	background: rgb(160, 8, 38);
}

.back-to-top:active {
	transform: scale(0.93);
}

.back-to-top svg {
	width: 20px;
	height: 20px;
	stroke: #fff;
	stroke-width: 2.5;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}
/* ─── map modal ─── */

/* map card */
.map-card--zoomable {
	position: relative;
	cursor: zoom-in;
	overflow: hidden;
}

/* zoom icon */
.map-zoom-icon {
	position: absolute;
	bottom: 14px;
	right: 14px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 2px 12px rgba(15, 27, 45, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0.85);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
	pointer-events: none;
}

.map-zoom-icon svg {
	width: 22px;
	height: 22px;
	stroke: var(--crimson);
}

.map-card--zoomable:hover .map-zoom-icon {
	opacity: 1;
	transform: scale(1);
}

.map-card--zoomable img {
	transition: filter 0.2s ease;
}

.map-card--zoomable:hover img {
	filter: brightness(0.95);
}

.map-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.map-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}

/* backdrop */
.map-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 15, 28, 0.82);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	cursor: zoom-out;
}

/* content */
.map-modal__content {
	position: relative;
	z-index: 1;
	max-width: min(1568px, 94vw);
	max-height: 99vh;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 32px 80px rgba(10, 15, 28, 0.48);
	transform: scale(0.94);
	transition: transform 0.28s cubic-bezier(0.34, 1.26, 0.64, 1);
}

.map-modal.is-open .map-modal__content {
	transform: scale(1);
}

.map-modal__content img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 90vh;
	object-fit: contain;
}

/* close button */
.map-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 2px 10px rgba(15, 27, 45, 0.18);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition:
		background 0.15s,
		transform 0.15s;
}

.map-modal__close:hover {
	background: var(--white);
	transform: scale(1.08);
}

.map-modal__close svg {
	width: 18px;
	height: 18px;
	stroke: var(--text);
}

@media (max-width: 700px) {
	.back-to-top {
		bottom: 38px;
		right: 16px;
		width: 44px;
		height: 44px;
	}
}
@media (max-width: 540px) {
	.steps {
		grid-template-columns: 1fr;
	}
	.step {
		min-height: 64px;
		padding: 14px 16px;
	}
	.step-no {
		width: 40px;
		height: 40px;
	}

	.hero-badges {
		gap: 6px;
		margin: 20px 0 20px;
	}
	.hero-badges span {
		padding: 6px 10px;
		font-size: 0.75rem;
	}
}

/* ─── cookie consent ─── */

.cookie-consent {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 900;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	background: rgba(10, 15, 28, 0.96);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent--visible {
	transform: translateY(0);
}

.cookie-consent__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 16px 0;
}

.cookie-consent__text {
	flex: 1;
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.5;
	margin: 0;
}

.cookie-consent__actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.cookie-btn {
	height: 40px;
	border-radius: 999px;
	padding: 0 22px;
	font-size: 0.88rem;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	white-space: nowrap;
	transition:
		background 0.18s,
		opacity 0.18s;
}

.cookie-btn--primary {
	background: var(--crimson);
	color: #fff;
	border: none;
}

.cookie-btn--primary:hover {
	background: rgb(160, 8, 38);
}

.cookie-btn--outline {
	background: transparent;
	color: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn--outline:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.cookie-consent__close {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	padding: 6px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.18s;
}

.cookie-consent__close:hover {
	color: #fff;
}

@media (max-width: 700px) {
	.cookie-consent__inner {
		flex-wrap: wrap;
		position: relative;
		padding: 16px 0;
	}

	.cookie-consent__close {
		position: absolute;
		top: 12px;
		right: 0;
	}

	.cookie-consent__text {
		padding-right: 36px;
	}

	.cookie-consent__actions {
		width: 100%;
	}

	.cookie-btn {
		flex: 1;
	}
}
