/* CP Czyste Powietrze — baza (legacy: primary #2ecc40, secondary #7fdbff) */
:root {
	--cp-primary: #2ecc40;
	--cp-secondary: #7fdbff;
	--cp-text: #222;
	--cp-muted: #555;
	--cp-border: #e0e0e0;
}
*,
*::before,
*::after { box-sizing: border-box; }
body {
	margin: 0;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, sans-serif;
	color: var(--cp-text);
	line-height: 1.5;
}
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid var(--cp-border);
	box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.site-header .inner,
.site-footer .inner,
.content-inner {
	max-width: 960px;
	margin: 0 auto;
	padding: 1rem 1.25rem;
}
.site-title {
	margin: 0;
	font-size: 1.15rem;
}
.site-title a {
	color: inherit;
	text-decoration: none;
}
.menu {
	list-style: none;
	margin: 0.5rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
}
.menu a {
	color: var(--cp-text);
	text-decoration: none;
	font-weight: 600;
}
.menu a:hover { color: var(--cp-primary); }
.cp-gradient {
	background: linear-gradient(180deg, rgba(127, 219, 255, 0.35) 0%, #fff 100%);
	border-bottom: 1px solid var(--cp-border);
}
.hero-inner {
	padding: 2rem 1.25rem 2.5rem;
	text-align: center;
}
.hero-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.5rem, 4vw, 2rem);
}
.hero-lead {
	margin: 0;
	color: var(--cp-muted);
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
}
.section-booking,
.section-page-content {
	margin: 2rem 0;
}
.site-footer {
	margin-top: 3rem;
	border-top: 1px solid var(--cp-border);
	background: #fafafa;
	font-size: 0.9rem;
	color: var(--cp-muted);
}
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
.skip-link:focus {
	clip: auto !important;
	height: auto;
	width: auto;
	padding: 0.5rem 1rem;
	background: #fff;
	z-index: 9999;
}
