/* ==========================================================================
   Kajakownia Sulejów — żółty & czarny (brand)
   ========================================================================== */

:root {
	--color-ocean: #111111;
	--color-ocean-light: #2a2a2a;
	--color-ocean-dark: #000000;
	--color-white: #ffffff;
	--color-off-white: #fffdf5;
	--color-sand: #f0ead6;
	--color-text: #111111;
	--color-text-muted: #555555;
	--color-accent: #ffcc00;
	--color-accent-hover: #e6b800;
	--color-accent-glow: rgba(255, 204, 0, 0.35);

	--font-display: 'Outfit', system-ui, sans-serif;
	--font-body: 'DM Sans', system-ui, sans-serif;

	--header-height: 96px;
	--container: 1200px;
	--radius: 12px;
	--radius-lg: 20px;
	--shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.14);
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

	--z-header: 1000;
	--z-nav-mobile: 9990;
	--z-lightbox: 9999;
}

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-height);
}

body {
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--color-text);
	background: var(--color-white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition);
}

ul { list-style: none; }

.container {
	width: min(100% - 2rem, var(--container));
	margin-inline: auto;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.15;
	color: var(--color-ocean-dark);
}

.section-eyebrow {
	font-family: var(--font-display);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: 0.75rem;
}

.section-header {
	text-align: center;
	max-width: 640px;
	margin-inline: auto;
	margin-bottom: 3.5rem;
}

.section-header h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	margin-bottom: 1rem;
}

.section-desc {
	color: var(--color-text-muted);
	font-size: 1.0625rem;
}

.section {
	padding: clamp(4rem, 8vw, 6rem) 0;
}

.section-alt {
	background: var(--color-off-white);
}

/* ---- Buttons ---- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.9375rem;
	padding: 0.875rem 1.75rem;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all var(--transition);
	white-space: nowrap;
}

.btn-accent {
	background: var(--color-accent);
	color: var(--color-ocean-dark);
	border-color: var(--color-accent);
	box-shadow: 0 4px 16px var(--color-accent-glow);
}

.btn-accent:hover {
	background: var(--color-accent-hover);
	border-color: var(--color-accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px var(--color-accent-glow);
	color: var(--color-ocean-dark);
}

.btn-outline {
	background: transparent;
	color: var(--color-white);
	border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--color-white);
	color: var(--color-white);
}

.btn-ghost {
	background: transparent;
	color: var(--color-ocean);
	border-color: var(--color-sand);
}

.btn-ghost:hover {
	background: var(--color-sand);
}

.btn-lg {
	padding: 1rem 2rem;
	font-size: 1rem;
}

.btn-sm {
	padding: 0.625rem 1.25rem;
	font-size: 0.875rem;
}

.btn-block {
	width: 100%;
}

/* ---- Header ---- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: var(--z-header);
	height: var(--header-height);
	background: transparent;
	transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	box-shadow: var(--shadow);
}

.site-header.scrolled .nav-list a {
	color: var(--color-text);
}

.site-header.scrolled .nav-list a:hover {
	color: var(--color-accent);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.site-logo img,
.site-logo-img {
	height: 72px;
	width: auto;
	max-width: min(420px, 68vw);
	object-fit: contain;
	transition: height var(--transition);
}

.home .site-header:not(.scrolled) {
	height: 120px;
}

.home .site-header:not(.scrolled) .site-logo img,
.home .site-header:not(.scrolled) .site-logo-img {
	height: 96px;
	max-width: min(480px, 78vw);
}

.site-header.scrolled .site-logo img,
.site-header.scrolled .site-logo-img {
	height: 72px;
	filter: brightness(0);
}

.is-subpage {
	--header-height: 96px;
}

.is-subpage .site-header {
	height: var(--header-height);
}

.is-subpage .site-logo img,
.is-subpage .site-logo-img {
	height: 80px;
	max-width: min(460px, 70vw);
}

/* Czarne logo tylko na sticky (białe tło). U góry podstron zostaje żółte. */
.is-subpage .site-header:not(.scrolled) .site-logo img,
.is-subpage .site-header:not(.scrolled) .site-logo-img {
	filter: none;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-list {
	display: flex;
	gap: 1.75rem;
}

.nav-list a {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.92);
	transition: color var(--transition);
}

.nav-list a:hover {
	color: var(--color-accent);
}

.btn-nav {
	padding: 0.625rem 1.25rem;
	font-size: 0.875rem;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--color-white);
	transition: all var(--transition);
	border-radius: 2px;
}

.site-header.scrolled .nav-toggle span {
	background: var(--color-ocean);
}

/* ---- Hero ---- */
.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
}

.hero-bg-slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	transition: opacity 1.4s ease-in-out;
}

.hero-bg-slide.is-active {
	opacity: 1;
}

.hero-bg-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		135deg,
		rgba(0, 0, 0, 0.78) 0%,
		rgba(0, 0, 0, 0.55) 50%,
		rgba(0, 0, 0, 0.68) 100%
	);
}

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 780px;
	padding: calc(var(--header-height) + 2rem) 1rem 4rem;
}

.hero-eyebrow {
	font-family: var(--font-display);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: 1.25rem;
}

.hero-title {
	font-size: clamp(2.75rem, 8vw, 4.5rem);
	font-weight: 800;
	color: var(--color-white);
	margin-bottom: 1.25rem;
	letter-spacing: -0.02em;
}

.hero-subtitle {
	font-size: clamp(1rem, 2.5vw, 1.25rem);
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 2.5rem;
	max-width: 580px;
	margin-inline: auto;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

.hero-scroll-hint {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.hero-scroll-hint span {
	display: block;
	width: 24px;
	height: 40px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 12px;
	position: relative;
}

.hero-scroll-hint span::after {
	content: '';
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 8px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 2px;
	animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
	0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
	50% { transform: translateX(-50%) translateY(8px); opacity: 0.4; }
}

/* ---- Features ---- */
.features {
	margin-top: -4rem;
	position: relative;
	z-index: 10;
	padding-top: 0;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.feature-card {
	background: var(--color-white);
	padding: 2rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	text-align: center;
	transition: transform var(--transition);
}

.feature-card:hover {
	transform: translateY(-4px);
}

.feature-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-accent);
	color: var(--color-ocean-dark);
	border-radius: 50%;
}

.feature-card h3 {
	font-size: 1.125rem;
	margin-bottom: 0.75rem;
}

.feature-card p {
	color: var(--color-text-muted);
	font-size: 0.9375rem;
}

/* ---- Services ---- */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}

.service-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--color-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.service-card-image {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.service-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
	transform: scale(1.06);
}

.service-card-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 1.75rem;
}

.service-card-body h3 {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

.service-card-body p {
	color: var(--color-text-muted);
	font-size: 0.9375rem;
	margin-bottom: 0;
}

.service-card-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: auto;
	padding-top: 1.5rem;
	text-align: center;
}

.service-price {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.0625rem;
	color: var(--color-ocean);
}

/* ---- Routes ---- */
.routes-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	align-items: stretch;
}

.routes.section .routes-grid {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.route-card {
	display: grid;
	grid-template-rows: auto 1fr auto;
	height: 100%;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--color-white);
	box-shadow: var(--shadow);
	transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.route-card:hover {
	transform: translateY(-4px);
}

.route-card img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	width: 100%;
}

.route-card-body {
	padding: 1.25rem 1.25rem 0;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
}

.route-river {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-accent);
}

.route-card-body h3 {
	font-size: 1.0625rem;
	margin: 0.375rem 0 0.5rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	min-height: 2.45rem;
	line-height: 1.15;
}

.route-card-excerpt {
	flex: 1 1 auto;
	font-size: 0.875rem;
	color: var(--color-text-muted);
	margin-bottom: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	min-height: 4.05rem;
	line-height: 1.65;
}

.route-card.is-expandable {
	cursor: pointer;
}

.route-card.is-expandable img {
	cursor: pointer;
}

.route-card.is-expanded {
	position: relative;
	z-index: 3;
	overflow: visible;
	border: 1px solid var(--color-accent);
	box-shadow: var(--shadow);
	align-self: stretch;
}

.routes-slider-track .route-card.is-expanded {
	flex-basis: calc((100% - (var(--slides-visible) - 1) * var(--slider-gap)) / var(--slides-visible));
}

.route-card.is-expanded .route-card-excerpt {
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible;
	min-height: 0;
}

.route-card.is-expanded .route-card-body h3 {
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible;
	min-height: 0;
}

.route-card-actions {
	display: flex;
	justify-content: center;
	padding: 1.25rem;
}

.routes-slider {
	--slides-visible: 4;
	--slider-gap: 1.5rem;
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 2rem;
}

.river-section .routes-slider {
	margin-top: 0;
}

.routes-slider-viewport {
	flex: 1;
	overflow-x: hidden;
	overflow-y: visible;
	min-width: 0;
	padding: 0.5rem 0 1rem;
}

.routes-slider-track {
	display: flex;
	gap: var(--slider-gap);
	will-change: transform;
	align-items: flex-start;
}

.routes-slider-track .route-card {
	flex: 0 0 calc((100% - (var(--slides-visible) - 1) * var(--slider-gap)) / var(--slides-visible));
	min-width: 0;
	height: auto;
	box-shadow: none;
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.routes-slider-track .route-card:hover {
	transform: none;
	box-shadow: none;
	border-color: rgba(0, 0, 0, 0.14);
}

.routes-slider-btn {
	flex-shrink: 0;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	border: 2px solid var(--color-accent);
	background: var(--color-white);
	color: var(--color-accent);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.routes-slider-btn:hover,
.routes-slider-btn:focus-visible {
	background: var(--color-accent);
	color: var(--color-ocean-dark);
	outline: none;
}

.routes-slider-btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

/* ---- Booking ---- */
.booking-layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 3rem;
	align-items: start;
}

.booking-intro h2 {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	margin-bottom: 1rem;
}

.booking-intro p {
	color: var(--color-text-muted);
	margin-bottom: 1.5rem;
}

.booking-phone {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--color-ocean);
}

.booking-phone:hover {
	color: var(--color-accent);
}

.booking-widget {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	padding: 2rem;
	box-shadow: var(--shadow-lg);
}

.booking-steps {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.booking-step {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.375rem;
	padding: 0.75rem;
	border-radius: var(--radius);
	background: var(--color-off-white);
	opacity: 0.5;
	transition: all var(--transition);
}

.booking-step.active,
.booking-step.completed {
	opacity: 1;
	background: var(--color-ocean-dark);
	color: var(--color-white);
}

.step-num {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.875rem;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
}

.booking-step.active .step-num,
.booking-step.completed .step-num {
	background: var(--color-accent);
	color: var(--color-ocean-dark);
}

.step-label {
	font-size: 0.75rem;
	font-weight: 600;
}

.booking-panel {
	display: none;
}

.booking-panel.active {
	display: block;
	animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

.booking-form label,
.booking-form legend {
	display: block;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.875rem;
	margin-bottom: 0.5rem;
	color: var(--color-ocean-dark);
}

.booking-form legend {
	margin-bottom: 1rem;
}

.booking-form input[type="date"],
.booking-form input[type="text"],
.booking-form input[type="tel"],
.booking-form input[type="email"],
.booking-form input[type="number"],
.booking-form select,
.booking-form textarea {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 2px solid var(--color-sand);
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: 1rem;
	margin-bottom: 1.25rem;
	transition: border-color var(--transition);
	background: var(--color-white);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
	outline: none;
	border-color: var(--color-ocean-light);
}

.booking-form fieldset {
	border: none;
	margin-bottom: 1rem;
}

.radio-card {
	display: block;
	margin-bottom: 0.75rem;
	cursor: pointer;
}

.radio-card input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.radio-card-content {
	display: block;
	padding: 1rem 1.25rem;
	border: 2px solid var(--color-sand);
	border-radius: var(--radius);
	transition: all var(--transition);
}

.radio-card input:checked + .radio-card-content {
	border-color: var(--color-ocean);
	background: rgba(0, 0, 0, 0.04);
}

.radio-card-content strong {
	display: block;
	font-family: var(--font-display);
	margin-bottom: 0.25rem;
}

.radio-card-content small {
	color: var(--color-text-muted);
}

.booking-nav {
	display: flex;
	gap: 1rem;
	margin-top: 0.5rem;
}

.booking-nav .btn {
	flex: 1;
}

.booking-message {
	margin-top: 1rem;
	padding: 1rem;
	border-radius: var(--radius);
	font-size: 0.9375rem;
}

.booking-message.success {
	background: #e8f5e9;
	color: #2e7d32;
}

.booking-message.error {
	background: #ffebee;
	color: #c62828;
}

.booking-route-locked {
	margin: 1rem 0 0;
	padding: 1rem 1.25rem;
	background: var(--color-off-white);
	border-radius: var(--radius);
	border-left: 4px solid var(--color-accent);
	color: var(--color-text);
	font-size: 0.9375rem;
}

.booking-route-locked strong {
	display: block;
	margin-bottom: 0.25rem;
	color: var(--color-text-muted);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* ---- Areas ---- */
.areas-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	align-items: stretch;
}

.area-item {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	background: var(--color-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	transition: transform var(--transition), box-shadow var(--transition);
	color: inherit;
	text-decoration: none;
}

.area-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.area-item-image {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
}

.area-item-body {
	padding: 1.25rem;
	border-left: 4px solid var(--color-accent);
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
}

.area-item h3 {
	font-size: 1.0625rem;
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	min-height: 2.45rem;
	line-height: 1.15;
}

.area-item p {
	flex: 1 1 auto;
	font-size: 0.875rem;
	color: var(--color-text-muted);
	margin-bottom: 0;
	line-height: 1.65;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	min-height: 4.05rem;
}

.area-item .card-read-more {
	margin-top: auto;
	padding-top: 0.625rem;
}

.card-read-more {
	display: inline-block;
	margin-top: 0.625rem;
	font-weight: 600;
	color: var(--color-accent);
	font-size: 0.875rem;
}

/* ---- FAQ ---- */
.faq-layout {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 3rem;
	align-items: start;
}

.faq-intro h2 {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	margin-bottom: 1rem;
}

.faq-intro p {
	color: var(--color-text-muted);
	margin-bottom: 1.5rem;
}

.faq-image {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.accordion-item {
	border-bottom: 1px solid var(--color-sand);
}

.accordion-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 0;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1rem;
	text-align: left;
	color: var(--color-ocean-dark);
	transition: color var(--transition);
}

.accordion-trigger:hover {
	color: var(--color-accent);
}

.accordion-icon {
	flex-shrink: 0;
	transition: transform var(--transition);
}

.accordion-item.open .accordion-icon {
	transform: rotate(180deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.accordion-item.open .accordion-content {
	max-height: 500px;
}

.accordion-content p {
	padding-bottom: 1.25rem;
	color: var(--color-text-muted);
	font-size: 0.9375rem;
	line-height: 1.7;
}

/* ---- Footer ---- */
.site-footer {
	background: var(--color-ocean-dark);
	color: rgba(255, 255, 255, 0.85);
	padding-top: 4rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 2.5rem;
	padding-bottom: 3rem;
}

.footer-brand p {
	font-size: 0.9375rem;
	margin: 0.75rem 0 1.25rem;
	opacity: 0.8;
	max-width: 22rem;
	text-wrap: pretty;
}

.footer-logo-link {
	display: block;
	line-height: 0;
	margin: 0;
}

.footer-logo {
	height: 64px;
	width: auto;
	max-width: 360px;
	object-fit: contain;
	margin: 0;
	display: block;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: var(--color-white);
	transition: all var(--transition);
}

.social-links a:hover {
	background: var(--color-accent);
	color: var(--color-ocean-dark);
	transform: translateY(-2px);
}

/* ---- Floating social (podstrony) ---- */
.floating-social {
	position: fixed;
	right: 1.25rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: calc(var(--z-header) - 100);
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.floating-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: var(--color-accent);
	color: var(--color-ocean-dark);
	box-shadow: var(--shadow-lg);
	transition: transform var(--transition), background var(--transition), color var(--transition);
}

.floating-social-link:hover {
	transform: scale(1.08);
	background: var(--color-accent-hover);
	color: var(--color-ocean-dark);
}

.floating-social-link--facebook {
	background: #1877f2;
	color: var(--color-white);
}

.floating-social-link--facebook:hover {
	background: #166fe0;
	color: var(--color-white);
}

.floating-social-link--phone {
	background: var(--color-ocean-dark);
	color: var(--color-white);
}

.floating-social-link--phone:hover {
	background: var(--color-ocean);
	color: var(--color-white);
}

.floating-social-link--email {
	background: var(--color-white);
	color: var(--color-ocean-dark);
	border: 2px solid var(--color-sand);
}

.floating-social-link--email:hover {
	border-color: var(--color-accent);
}

.footer-col h3 {
	font-family: var(--font-display);
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--color-white);
	margin-bottom: 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.footer-list li {
	margin-bottom: 0.625rem;
}

.footer-list a {
	font-size: 0.9375rem;
	opacity: 0.8;
	transition: opacity var(--transition), color var(--transition);
}

.footer-list a:hover {
	opacity: 1;
	color: var(--color-accent);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.5rem 0;
}

.footer-bottom-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	opacity: 0.6;
}

.footer-tags {
	width: 100%;
	max-width: 720px;
	opacity: 0.75;
	line-height: 1.65;
}

.footer-tagline {
	font-style: italic;
}

/* ---- Page content ---- */
.page-content h1 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	margin-bottom: 1.5rem;
}

.entry-content {
	color: var(--color-text-muted);
	line-height: 1.8;
}

.entry-content p {
	margin-bottom: 1.35rem;
}

.entry-content h2,
.entry-content h3 {
	color: var(--color-text);
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	line-height: 1.25;
}

.entry-content ol,
.entry-content ul,
.entry-content .wp-block-list {
	margin: 1.25rem 0 1.85rem;
	padding-left: 1.35rem;
}

.entry-content li {
	margin-bottom: 0.85rem;
	line-height: 1.75;
	padding-left: 0.25rem;
}

.entry-content li:last-child {
	margin-bottom: 0;
}

/* Blog / archiwum — jak stary jasny layout, czytelne odstępy między wpisami */
.archive .page-content,
.category .page-content,
.blog .page-content,
.search .page-content {
	padding-top: calc(var(--header-height) + 2.5rem);
}

.archive article,
.category article,
.blog article,
.search article {
	margin-bottom: 3.25rem;
	padding-bottom: 2.75rem;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.archive article:last-child,
.category article:last-child,
.blog article:last-child,
.search article:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.archive article h1,
.category article h1,
.blog article h1,
.search article h1 {
	margin-bottom: 1.25rem;
}

.archive-intro {
	margin-bottom: 2.75rem;
}

.archive-title {
	font-size: clamp(1.85rem, 4vw, 2.65rem);
	margin: 0.35rem 0 0;
	color: var(--color-text);
}

.archive-article-title {
	font-size: clamp(1.45rem, 3vw, 1.85rem);
	margin: 0 0 1.25rem;
	line-height: 1.25;
}

.archive-article-title a {
	color: var(--color-text);
	text-decoration: none;
}

.archive-article-title a:hover {
	color: var(--color-accent);
}

/* ---- Reveal animations ---- */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.services-grid,
	.features-grid {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin-inline: auto;
	}

	.routes-grid,
	.areas-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.routes-slider {
		--slides-visible: 2;
	}

	.booking-layout,
	.faq-layout {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	:root {
		--header-height: 80px;
	}

	.site-logo img,
	.site-logo-img {
		height: 56px;
		max-width: min(320px, 72vw);
	}

	.site-header.scrolled .site-logo img,
	.site-header.scrolled .site-logo-img {
		height: 56px;
	}

	.home .site-header:not(.scrolled) {
		height: 88px;
	}

	.home .site-header:not(.scrolled) .site-logo img,
	.home .site-header:not(.scrolled) .site-logo-img {
		height: 72px;
		max-width: min(360px, 80vw);
	}

	.footer-logo {
		height: 52px;
		max-width: 300px;
	}

	.is-subpage {
		--header-height: 80px;
	}

	.is-subpage .site-logo img,
	.is-subpage .site-logo-img {
		height: 60px;
		max-width: min(340px, 74vw);
	}

	.site-header {
		z-index: var(--z-nav-mobile);
	}

	body.nav-open .site-header {
		background: var(--color-white);
		box-shadow: var(--shadow);
	}

	.nav-toggle {
		display: flex;
		position: relative;
		z-index: calc(var(--z-nav-mobile) + 1);
	}

	.primary-nav {
		position: fixed;
		top: var(--header-height);
		left: 0;
		right: 0;
		bottom: 0;
		z-index: var(--z-nav-mobile);
		flex-direction: column;
		background: var(--color-white);
		padding: 2rem;
		gap: 2rem;
		transform: translateX(100%);
		transition: transform var(--transition);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.primary-nav.open {
		transform: translateX(0);
	}

	body.nav-open .floating-social {
		visibility: hidden;
		pointer-events: none;
	}

	.nav-list {
		flex-direction: column;
		gap: 0;
		width: 100%;
	}

	.nav-list a {
		display: block;
		padding: 1rem 0;
		color: var(--color-text);
		font-size: 1.125rem;
		border-bottom: 1px solid var(--color-sand);
	}

	.btn-nav {
		width: 100%;
	}

	.features {
		margin-top: -2rem;
	}

	.routes-grid,
	.areas-grid {
		grid-template-columns: 1fr;
	}

	.routes-slider {
		--slides-visible: 1;
		gap: 0.5rem;
	}

	.routes-slider-btn {
		width: 2.25rem;
		height: 2.25rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

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

	.floating-social {
		top: auto;
		bottom: 1.25rem;
		right: 1rem;
		transform: none;
		flex-direction: row;
	}

	.booking-steps {
		flex-direction: column;
	}

	.booking-step {
		flex-direction: row;
		justify-content: flex-start;
		gap: 0.75rem;
	}
}

@media (max-width: 480px) {
	.section {
		padding: 3rem 0;
	}

	.booking-widget {
		padding: 1.25rem;
	}
}

/* Nav toggle animation */
.nav-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Dropdown nav ---- */
.nav-item-has-children {
	position: relative;
}

.nav-dropdown-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

.nav-chevron {
	transition: transform var(--transition);
}

.nav-item-has-children.open .nav-chevron {
	transform: rotate(180deg);
}

.nav-dropdown {
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 0;
	min-width: 220px;
	background: var(--color-white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	padding: 0.5rem 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all var(--transition);
	z-index: 100;
}

.nav-item-has-children:hover .nav-dropdown,
.nav-item-has-children.open .nav-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-dropdown a {
	display: block;
	padding: 0.625rem 1.25rem;
	font-size: 0.875rem;
	color: var(--color-text);
}

.nav-dropdown a:hover {
	background: var(--color-off-white);
	color: var(--color-accent);
}

.site-header.scrolled .nav-dropdown a,
.is-subpage .nav-dropdown a {
	color: var(--color-text);
}

/* ---- Subpages ---- */
.page-hero {
	background: linear-gradient(135deg, var(--color-ocean-dark) 0%, var(--color-ocean) 100%);
	padding: calc(var(--header-height) + 3rem) 0 3rem;
	text-align: center;
}

.page-hero h1 {
	color: var(--color-white);
	font-size: clamp(2rem, 5vw, 3rem);
}

.content-narrow {
	max-width: 760px;
	margin-inline: auto;
}

.content-narrow h2 {
	margin-bottom: 1rem;
}

.content-narrow > * > h2:first-child,
.content-narrow > h2:first-child {
	margin-top: 0;
}

.content-narrow h2:not(:first-child) {
	margin-top: 2.5rem;
}

.content-narrow h3 {
	margin-top: 2rem;
	margin-bottom: 0.875rem;
}

.content-narrow p,
.entry-content p {
	color: var(--color-text-muted);
	margin-bottom: 1.25rem;
	line-height: 1.75;
}

.about-feature-image {
	margin: 0 0 1.75rem;
	border-radius: var(--radius);
	overflow: hidden;
}

.about-feature-image img {
	display: block;
	width: 100%;
	height: auto;
}

.section-cta {
	text-align: center;
	margin-top: 2.5rem;
}

.callout-box {
	background: var(--color-off-white);
	border-left: 4px solid var(--color-accent);
	border-radius: var(--radius);
	padding: 1.75rem;
	margin-top: 2rem;
}

.callout-box h3 {
	margin-top: 0;
	margin-bottom: 0.75rem;
}

.callout-box--bonfire {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 1.75rem;
	align-items: center;
	padding: 0;
	overflow: hidden;
}

.callout-box-image {
	overflow: hidden;
}

.callout-box-image img {
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
	display: block;
}

.callout-box-body {
	padding: 1.75rem 1.75rem 1.75rem 0;
}

.callout-box--bonfire .callout-box-body {
	padding: 1.75rem 1.75rem 1.75rem 0;
}

@media (max-width: 640px) {
	.callout-box--bonfire {
		grid-template-columns: 1fr;
	}

	.callout-box-body,
	.callout-box--bonfire .callout-box-body {
		padding: 0 1.75rem 1.75rem;
	}

	.callout-box-image img {
		min-height: 200px;
		aspect-ratio: 16 / 10;
	}
}

.spec-list {
	list-style: disc;
	padding-left: 1.25rem;
	margin-top: 0;
	margin-bottom: 1.5rem;
	color: var(--color-text-muted);
}

.spec-list li {
	margin-bottom: 0.5rem;
}

/* Cennik */
.pricing-page .container {
	max-width: 1080px;
}

.pricing-layout {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: 1.75rem;
	align-items: start;
}

.pricing-main-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: var(--color-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.pricing-main-image {
	min-height: 100%;
}

.pricing-main-image img {
	width: 100%;
	height: 100%;
	min-height: 22rem;
	object-fit: cover;
}

.pricing-main-body {
	padding: 2rem;
}

.pricing-main-body h2 {
	margin-top: 0;
	margin-bottom: 0.75rem;
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.pricing-lead {
	color: var(--color-text-muted);
	margin-bottom: 1.25rem;
	line-height: 1.65;
}

.pricing-amount {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 5vw, 3.25rem);
	font-weight: 800;
	color: var(--color-ocean-dark);
	margin-bottom: 1.5rem;
	line-height: 1;
}

.pricing-amount span {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--color-text-muted);
}

.pricing-includes-title {
	font-size: 0.9375rem;
	margin-bottom: 0.75rem;
}

.pricing-includes {
	list-style: none;
	padding: 0;
}

.pricing-includes li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
	color: var(--color-text-muted);
	font-size: 0.9375rem;
	line-height: 1.5;
}

.pricing-includes li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.45rem;
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: var(--color-accent);
}

.pricing-side {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.pricing-side-card {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	box-shadow: var(--shadow);
}

.pricing-side-card--muted {
	background: var(--color-off-white);
	border: 1px solid var(--color-sand);
	box-shadow: none;
}

.pricing-side-card h3 {
	margin-top: 0;
	margin-bottom: 1rem;
	font-size: 1.125rem;
}

.pricing-notes {
	list-style: none;
	padding: 0;
	margin-bottom: 1rem;
}

.pricing-notes li {
	position: relative;
	padding-left: 1.125rem;
	margin-bottom: 0.625rem;
	color: var(--color-text-muted);
	font-size: 0.9375rem;
	line-height: 1.55;
}

.pricing-notes li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--color-accent);
	font-weight: 700;
}

.pricing-side-desc {
	color: var(--color-text-muted);
	font-size: 0.9375rem;
	margin-bottom: 1.25rem;
	line-height: 1.6;
}

.pricing-bonfire {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 2.5rem;
	align-items: center;
	margin-top: 3rem;
	padding-top: 3rem;
	border-top: 1px solid var(--color-sand);
}

.pricing-bonfire-image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.pricing-bonfire-image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.pricing-bonfire-body h2 {
	margin-top: 0;
	margin-bottom: 1rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.pricing-bonfire-body p {
	color: var(--color-text-muted);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

/* Polityka prywatności */
.legal-content .legal-updated {
	font-size: 0.875rem;
	color: var(--color-text-muted);
	margin-bottom: 1rem;
}

.legal-content .legal-intro {
	color: var(--color-text-muted);
	margin-bottom: 2rem;
	line-height: 1.75;
}

.privacy-section {
	margin-bottom: 2rem;
}

.privacy-section h2 {
	font-size: 1.25rem;
	margin-top: 0;
	margin-bottom: 0.75rem;
}

.privacy-section p {
	color: var(--color-text-muted);
	line-height: 1.75;
	margin-bottom: 0;
}

.footer-bottom-inner a {
	color: var(--color-accent);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.footer-bottom-inner a:hover {
	opacity: 1;
}

.booking-consent {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	margin-bottom: 1.25rem;
	font-size: 0.875rem;
	color: var(--color-text-muted);
	line-height: 1.55;
	cursor: pointer;
}

.booking-consent input {
	margin-top: 0.2rem;
	flex-shrink: 0;
	accent-color: var(--color-accent);
}

.booking-consent a {
	color: var(--color-ocean-dark);
	font-weight: 600;
	text-decoration: underline;
}

/* Kontakt */
.contact-page.section {
	padding: clamp(2rem, 4vw, 3rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

.page-hero:has(+ .contact-page) {
	padding-bottom: 2rem;
}

.contact-page .container {
	width: min(100% - 1.5rem, 1280px);
}

.contact-top-row {
	display: grid;
	grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.15fr);
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: center;
	margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.contact-photo {
	margin: 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	background: var(--color-sand);
	max-height: 26rem;
}

.contact-photo img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 26rem;
	object-fit: cover;
	object-position: center;
}

.contact-map-section {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 100%;
}

.contact-info-block h2 {
	margin-bottom: 1rem;
}

.contact-list {
	margin-bottom: 0;
	list-style: none;
	padding: 0;
}

.contact-list-item {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	margin-bottom: 1rem;
}

.contact-list-item:last-child {
	margin-bottom: 0;
}

.contact-list-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: var(--color-accent);
	color: var(--color-ocean-dark);
}

.contact-list-icon svg {
	display: block;
}

.contact-list-content strong {
	display: block;
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--color-text-muted);
	margin-bottom: 0.25rem;
}

.contact-list-content a,
.contact-list-content span {
	display: block;
	line-height: 1.5;
}

.contact-booking-block {
	background: var(--color-off-white);
	border-radius: var(--radius-lg);
	padding: 2rem;
}

.contact-map-block h3 {
	margin-top: 0;
	margin-bottom: 0.5rem;
}

.contact-map-block p {
	color: var(--color-text-muted);
	margin-bottom: 0.75rem;
	line-height: 1.6;
	text-wrap: pretty;
}

.contact-map {
	position: relative;
	width: 100%;
	aspect-ratio: 21 / 9;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	background: var(--color-sand);
}

.contact-map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.contact-map-cta {
	margin-top: 0.25rem;
}

.btn-outline-dark {
	background: transparent;
	color: var(--color-ocean);
	border: 2px solid var(--color-ocean);
}

.btn-outline-dark:hover {
	background: var(--color-ocean);
	color: var(--color-white);
}

/* Okolice */
.areas-page-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.75rem;
	align-items: stretch;
}

.area-page-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--color-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform var(--transition), box-shadow var(--transition);
}

.area-page-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.area-page-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
	color: inherit;
	text-decoration: none;
}

.area-page-card img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	width: 100%;
}

.area-page-card-body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
	padding: 1.5rem;
}

.area-page-card-body h2 {
	font-size: 1.25rem;
	margin: 0 0 0.75rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	min-height: 2.9rem;
	line-height: 1.15;
}

.area-page-card-body p {
	flex: 1 1 auto;
	color: var(--color-text-muted);
	margin: 0;
	line-height: 1.65;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	min-height: 4.95rem;
}

.area-read-more {
	display: block;
	flex-shrink: 0;
	margin-top: auto;
	padding-top: 1rem;
	font-weight: 600;
	color: var(--color-accent);
	font-size: 0.875rem;
}

/* ---- Pojedyncza okolica ---- */
.area-detail {
	max-width: 820px;
}

.area-featured-image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	margin-bottom: 2rem;
}

.area-featured-image img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.area-description {
	margin-bottom: 2rem;
}

.area-description a {
	color: var(--color-accent);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.area-description a:hover {
	color: var(--color-accent-hover);
}

.area-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-bottom: 2rem;
}

.area-gallery-item {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.area-gallery-item img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.area-detail-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

@media (max-width: 768px) {
	.area-gallery {
		grid-template-columns: 1fr;
	}

	.area-detail-actions {
		flex-direction: column;
	}

	.area-detail-actions .btn {
		width: 100%;
	}
}

/* Poradnik */
.guides-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.75rem;
	align-items: stretch;
}

.guides-grid--home {
	grid-template-columns: repeat(4, 1fr);
}

.guide-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--color-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform var(--transition);
}

.guide-card:hover {
	transform: translateY(-4px);
}

.guide-card-link {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	height: 100%;
	min-height: 0;
	color: inherit;
	text-decoration: none;
}

.guide-card img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
	flex-shrink: 0;
}

.guide-card-body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
	padding: 1.25rem;
}

.guide-card-body h2,
.guide-card-body h3 {
	font-size: 1.0625rem;
	margin: 0 0 0.5rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	min-height: 2.45rem;
	line-height: 1.15;
}

.guide-card-body p {
	flex: 1 1 auto;
	font-size: 0.875rem;
	color: var(--color-text-muted);
	margin: 0;
	line-height: 1.65;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	min-height: 4.05rem;
}

.guide-card .card-read-more,
.guide-read-more {
	display: inline-block;
	flex-shrink: 0;
	margin-top: auto;
	padding-top: 0.625rem;
	font-weight: 600;
	color: var(--color-accent);
	font-size: 0.875rem;
}

.guide-featured-image {
	border-radius: var(--radius-lg);
	margin-bottom: 2rem;
	width: 100%;
}

.guide-intro {
	font-size: 1.125rem;
	margin-bottom: 1.5rem;
}

.guide-list {
	list-style: disc;
	padding-left: 1.25rem;
	color: var(--color-text-muted);
}

.guide-list li {
	margin-bottom: 0.75rem;
	line-height: 1.65;
}

.guide-back {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 2.5rem;
}

/* Trasy — pełna strona */
.routes-page.section {
	padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

.routes-gallery {
	position: relative;
	margin-bottom: 2.5rem;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	background: var(--color-ocean-dark);
}

.routes-gallery-viewport {
	position: relative;
	aspect-ratio: 21 / 9;
}

.routes-gallery-slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	transition: opacity 1.4s ease-in-out;
	pointer-events: none;
}

.routes-gallery-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}

.routes-gallery-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.routes-gallery-dots {
	position: absolute;
	left: 50%;
	bottom: 1rem;
	z-index: 2;
	display: flex;
	gap: 0.5rem;
	transform: translateX(-50%);
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(6px);
}

.routes-gallery-dot {
	width: 0.625rem;
	height: 0.625rem;
	border: 0;
	border-radius: 50%;
	padding: 0;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	transition: background 0.3s ease, transform 0.3s ease;
}

.routes-gallery-dot.is-active {
	background: var(--color-accent);
	transform: scale(1.15);
}

.river-section {
	margin-bottom: 3.5rem;
}

.river-title {
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--color-accent);
}

.river-intro {
	max-width: 720px;
	margin: 0 0 1.75rem;
	color: var(--color-text-muted);
	line-height: 1.7;
}

.routes-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.route-card-list {
	display: grid;
	grid-template-columns: minmax(240px, 340px) 1fr;
	gap: 0;
	align-items: stretch;
	background: var(--color-white);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.route-card-list-media {
	min-height: 100%;
	background: var(--color-sand);
}

.route-card-list-media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 240px;
	object-fit: cover;
}

.route-card-list-body {
	display: flex;
	flex-direction: column;
	padding: 1.5rem 1.75rem;
	min-height: 240px;
}

.route-card-list-head {
	margin-bottom: 0.75rem;
}

.route-card-list-title {
	margin: 0 0 0.35rem;
	font-size: 1.375rem;
	line-height: 1.2;
}

.route-card-list-subtitle {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--color-accent);
}

.route-card-list-meta {
	margin: 0.35rem 0 0;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-ocean);
}

.route-card-list-desc {
	flex: 1 1 auto;
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--color-text-muted);
}

.route-card-list-actions {
	margin-top: auto;
	padding-top: 1.25rem;
	display: flex;
	justify-content: flex-end;
}

@media (max-width: 768px) {
	.route-card-list {
		grid-template-columns: 1fr;
	}

	.route-card-list-media img {
		min-height: 200px;
		aspect-ratio: 16 / 10;
	}

	.route-card-list-body {
		min-height: 0;
	}
}

/* ---- Pojedyncza trasa ---- */
.route-detail {
	max-width: 820px;
}

.route-map {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	margin-bottom: 2rem;
	background: var(--color-sand);
}

.route-map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.route-meta {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	list-style: none;
	margin-bottom: 2rem;
	padding: 1.25rem;
	background: var(--color-off-white);
	border-radius: var(--radius-lg);
}

.route-meta li {
	text-align: center;
}

.route-meta-label {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--color-text-muted);
	margin-bottom: 0.375rem;
}

.route-meta-value {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.0625rem;
	color: var(--color-ocean);
}

.route-description {
	margin-bottom: 2rem;
}

.route-milestones {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
}

.route-milestones li {
	position: relative;
	padding: 0.75rem 0 0.75rem 1.25rem;
	border-bottom: 1px solid var(--color-sand);
	color: var(--color-text-muted);
	line-height: 1.65;
	font-size: 0.9375rem;
}

.route-milestones li:last-child {
	border-bottom: none;
}

.route-milestones li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 1.15rem;
	width: 0.4rem;
	height: 0.4rem;
	border-radius: 50%;
	background: var(--color-accent);
}

.route-featured-image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	margin-bottom: 2rem;
}

.route-featured-image img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.route-detail-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

@media (max-width: 768px) {
	.route-meta {
		grid-template-columns: 1fr;
	}

	.route-detail-actions {
		flex-direction: column;
	}

	.route-detail-actions .btn {
		width: 100%;
	}
}

@media (max-width: 1024px) {
	.guides-grid--home {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-top-row {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.contact-photo {
		max-width: none;
		max-height: 20rem;
		margin-inline: 0;
		width: 100%;
	}

	.contact-photo img {
		max-height: 20rem;
	}

	.pricing-layout,
	.pricing-main-card,
	.pricing-bonfire {
		grid-template-columns: 1fr;
	}

	.pricing-main-image img {
		min-height: 16rem;
	}
}

@media (max-width: 768px) {
	.routes-gallery-viewport {
		aspect-ratio: 16 / 10;
	}

	.guides-grid,
	.guides-grid--home,
	.areas-page-grid {
		grid-template-columns: 1fr;
	}

	.nav-dropdown {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: var(--color-off-white);
		border-radius: var(--radius);
		margin-top: 0.5rem;
		display: none;
		padding: 0.25rem 0;
	}

	.nav-item-has-children.open .nav-dropdown {
		display: block;
	}

	.nav-dropdown a {
		padding: 0.75rem 1rem;
		border-bottom: 1px solid var(--color-sand);
	}
}

/* Lightbox — powiększanie zdjęć */
img.is-lightbox {
	cursor: zoom-in;
}

body.lightbox-open {
	overflow: hidden;
}

.image-lightbox {
	position: fixed;
	inset: 0;
	z-index: var(--z-lightbox);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.image-lightbox[hidden] {
	display: none;
}

.image-lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.88);
	cursor: zoom-out;
}

.image-lightbox-figure {
	position: relative;
	z-index: 1;
	max-width: min(1200px, 100%);
	max-height: calc(100vh - 3rem);
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.image-lightbox-image {
	display: block;
	max-width: 100%;
	max-height: calc(100vh - 6rem);
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: var(--radius);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.image-lightbox-caption {
	color: #fff;
	font-size: 0.9375rem;
	text-align: center;
	max-width: 60ch;
	line-height: 1.5;
}

.image-lightbox-caption[hidden] {
	display: none;
}

.image-lightbox-close,
.image-lightbox-nav {
	position: absolute;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.image-lightbox-close:hover,
.image-lightbox-nav:hover {
	background: rgba(255, 255, 255, 0.22);
}

.image-lightbox-close {
	top: 1rem;
	right: 1rem;
}

.image-lightbox-prev {
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
}

.image-lightbox-next {
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
}

.image-lightbox-prev:hover,
.image-lightbox-next:hover {
	transform: translateY(-50%) scale(1.05);
}

@media (max-width: 640px) {
	.image-lightbox {
		padding: 1rem;
	}

	.image-lightbox-prev {
		left: 0.5rem;
	}

	.image-lightbox-next {
		right: 0.5rem;
	}

	.image-lightbox-close {
		top: 0.5rem;
		right: 0.5rem;
	}
}

/* ---- Cookie Notice (brand yellow) ---- */
#cookie-notice {
	font-family: var(--font-body, 'DM Sans', system-ui, sans-serif) !important;
	box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}

#cookie-notice .cookie-notice-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.85rem 1.25rem;
	padding: 1rem 1.5rem;
	font-size: 0.9375rem;
	line-height: 1.5;
}

#cookie-notice .cn-text-container {
	margin: 0;
	max-width: 52rem;
}

#cookie-notice .cn-buttons-container {
	display: inline-flex;
	margin: 0;
}

#cookie-notice .cn-button,
#cookie-notice #cn-accept-cookie {
	background: var(--color-accent) !important;
	background-color: var(--color-accent) !important;
	color: #111 !important;
	border: none !important;
	border-radius: 999px !important;
	font-family: var(--font-display) !important;
	font-weight: 700 !important;
	font-size: 0.875rem !important;
	letter-spacing: 0.02em !important;
	padding: 0.7rem 1.35rem !important;
	margin: 0 !important;
	box-shadow: 0 4px 16px var(--color-accent-glow) !important;
	transition: background 0.2s ease, transform 0.2s ease !important;
}

#cookie-notice .cn-button:hover,
#cookie-notice #cn-accept-cookie:hover {
	background: var(--color-accent-hover) !important;
	background-color: var(--color-accent-hover) !important;
	color: #111 !important;
	transform: translateY(-1px);
}

#cookie-notice .cn-close-icon:before,
#cookie-notice .cn-close-icon:after {
	background-color: rgba(255, 255, 255, 0.75);
}
