/* ==========================================================================
   Wypoczynek nad Tanwią — warstwa wizualna
   Paleta: turkus rzeki / głęboka zieleń / słoneczny akcent / krem
   ========================================================================== */

:root {
	--tw-teal: #0e9488;
	--tw-teal-dark: #0b3d3a;
	--tw-teal-soft: #e6f5f3;
	--tw-sun: #f4a024;
	--tw-sun-dark: #d8860c;
	--tw-cream: #fbf8f1;
	--tw-ink: #14312e;
	--tw-muted: #5b7370;
	--tw-line: rgba(11, 61, 58, 0.12);
	--tw-radius: 18px;
	--tw-shadow: 0 18px 40px -22px rgba(11, 61, 58, 0.45);
	--tw-shadow-lg: 0 32px 64px -28px rgba(11, 61, 58, 0.5);
	--tw-max: 1200px;
	--tw-font-display: "Fraunces", Georgia, "Times New Roman", serif;
	--tw-font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.tw {
	font-family: var(--tw-font-body);
	color: var(--tw-ink);
	line-height: 1.65;
	overflow-x: clip;
}

.tw *,
.tw *::before,
.tw *::after {
	box-sizing: border-box;
}

.tw h1,
.tw h2,
.tw h3,
.tw h4 {
	font-family: var(--tw-font-display);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: var(--tw-teal-dark);
	margin: 0 0 0.4em;
	text-wrap: balance;
}

.tw p {
	margin: 0 0 1.1em;
}

.tw p:last-child {
	margin-bottom: 0;
}

.tw__wrap {
	width: min(100% - 2.5rem, var(--tw-max));
	margin-inline: auto;
}

.tw__section {
	padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.tw__section--cream {
	background: var(--tw-cream);
}

.tw__section--teal {
	background: var(--tw-teal-dark);
	color: #dcefec;
}

.tw__section--teal h2,
.tw__section--teal h3 {
	color: #fff;
}

.tw__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--tw-teal);
	margin-bottom: 1rem;
}

.tw__eyebrow::before {
	content: "";
	width: 28px;
	height: 2px;
	background: var(--tw-sun);
	border-radius: 2px;
}

.tw__section--teal .tw__eyebrow {
	color: var(--tw-sun);
}

.tw__title {
	font-size: clamp(1.9rem, 4vw, 2.9rem);
}

.tw__lead {
	font-size: clamp(1.02rem, 1.6vw, 1.18rem);
	color: var(--tw-muted);
	max-width: 62ch;
}

.tw__section--teal .tw__lead {
	color: #b9d9d4;
}

.tw__head {
	max-width: 46rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tw__head--center {
	margin-inline: auto;
	text-align: center;
}

.tw__head--center .tw__lead {
	margin-inline: auto;
}

/* --- Przyciski ----------------------------------------------------------- */

.tw__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.95rem 1.7rem;
	border-radius: 999px;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.tw__btn--primary {
	background: var(--tw-sun);
	color: #3d2600;
	box-shadow: 0 12px 28px -14px rgba(244, 160, 36, 0.9);
}

.tw__btn--primary:hover {
	background: var(--tw-sun-dark);
	color: #2c1b00;
	transform: translateY(-2px);
}

.tw__btn--ghost {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(6px);
}

.tw__btn--ghost:hover {
	background: #fff;
	color: var(--tw-teal-dark);
	transform: translateY(-2px);
}

.tw__btn--solid {
	background: var(--tw-teal);
	color: #fff;
}

.tw__btn--solid:hover {
	background: var(--tw-teal-dark);
	transform: translateY(-2px);
}

.tw__btn--outline {
	border-color: var(--tw-teal);
	color: var(--tw-teal-dark);
	background: transparent;
}

.tw__btn--outline:hover {
	background: var(--tw-teal);
	color: #fff;
}

.tw__btns {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 1.8rem;
}

/* --- Hero ---------------------------------------------------------------- */

.tw-hero {
	position: relative;
	min-height: clamp(560px, 82vh, 780px);
	display: flex;
	align-items: center;
	isolation: isolate;
	color: #fff;
}

.tw-hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
	overflow: hidden;
}

.tw-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 55%;
}

.tw-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(
		105deg,
		rgba(11, 61, 58, 0.9) 0%,
		rgba(11, 61, 58, 0.72) 42%,
		rgba(11, 61, 58, 0.25) 100%
	);
}

.tw-hero__inner {
	/* Górny odstęp uwzględnia wysokość przyklejonego nagłówka. */
	padding: calc(clamp(4rem, 9vw, 6rem) + 70px) 0 clamp(4rem, 9vw, 6rem);
	max-width: 44rem;
}

.tw-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	background: rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.32);
	backdrop-filter: blur(8px);
	padding: 0.5rem 1.05rem;
	border-radius: 999px;
	font-size: 0.86rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	margin-bottom: 1.5rem;
}

.tw-hero h1 {
	color: #fff;
	font-size: clamp(2.4rem, 6vw, 4.1rem);
	margin-bottom: 1rem;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

.tw-hero__sub {
	font-size: clamp(1.05rem, 2vw, 1.28rem);
	color: rgba(255, 255, 255, 0.94);
	max-width: 40rem;
	text-shadow: 0 1px 14px rgba(0, 0, 0, 0.3);
}

.tw-hero__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.6rem;
	font-size: 1.02rem;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

.tw-hero__phone strong {
	font-size: 1.22rem;
	color: #fff;
}

.tw-hero__phone:hover {
	color: #fff;
}

/* --- Pasek zaufania ------------------------------------------------------ */

.tw-trust {
	background: #fff;
	border-bottom: 1px solid var(--tw-line);
	padding: clamp(1.6rem, 3vw, 2.4rem) 0;
}

.tw-trust__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: clamp(1.2rem, 3vw, 2.4rem);
}

.tw-trust__item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
}

.tw-trust__icon {
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 13px;
	background: var(--tw-teal-soft);
	color: var(--tw-teal);
}

.tw-trust__icon svg {
	width: 23px;
	height: 23px;
}

.tw-trust__item strong {
	display: block;
	font-size: 0.98rem;
	color: var(--tw-teal-dark);
	margin-bottom: 0.15rem;
}

.tw-trust__item span {
	font-size: 0.88rem;
	color: var(--tw-muted);
	line-height: 1.45;
}

/* --- Intro / o nas ------------------------------------------------------- */

.tw-intro__grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.tw-intro__media {
	position: relative;
	border-radius: var(--tw-radius);
	overflow: hidden;
	box-shadow: var(--tw-shadow-lg);
	aspect-ratio: 4 / 3;
}

.tw-intro__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tw-intro__stat {
	position: absolute;
	left: 1.2rem;
	bottom: 1.2rem;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	border-radius: 14px;
	padding: 0.85rem 1.2rem;
	box-shadow: var(--tw-shadow);
}

.tw-intro__stat b {
	display: block;
	font-family: var(--tw-font-display);
	font-size: 1.6rem;
	color: var(--tw-teal);
	line-height: 1;
}

.tw-intro__stat span {
	font-size: 0.8rem;
	color: var(--tw-muted);
}

.tw-intro__list {
	list-style: none;
	margin: 1.6rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.tw-intro__list li {
	position: relative;
	padding-left: 1.9rem;
	color: var(--tw-ink);
}

.tw-intro__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 1.1rem;
	height: 1.1rem;
	border-radius: 50%;
	background: var(--tw-teal-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230e9488'%3E%3Cpath d='M8.1 13.6 4.9 10.4l1.2-1.2 2 2 5-5 1.2 1.2z'/%3E%3C/svg%3E") center / 100% no-repeat;
}

/* --- Karty oferty -------------------------------------------------------- */

.tw-offer__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: clamp(1.2rem, 2.5vw, 1.8rem);
}

.tw-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: var(--tw-radius);
	overflow: hidden;
	box-shadow: var(--tw-shadow);
	text-decoration: none;
	color: inherit;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.tw-card__media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--tw-teal-soft);
}

.tw-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.tw-card:hover .tw-card__media img {
	transform: scale(1.05);
}

.tw-card__body {
	padding: 1.4rem 1.5rem 1.6rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.tw-card__body h3 {
	font-size: 1.28rem;
	margin-bottom: 0.5rem;
}

.tw-card__body p {
	font-size: 0.95rem;
	color: var(--tw-muted);
	flex: 1;
}

.tw-card__more {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 1.1rem;
	font-weight: 700;
	font-size: 0.94rem;
	color: var(--tw-teal);
}

.tw-card:hover .tw-card__more {
	gap: 0.7rem;
}

.tw-card__more svg {
	width: 17px;
	height: 17px;
	transition: transform 0.22s ease;
}

/* --- Trasy: oś rzeki ----------------------------------------------------- */

.tw-river {
	margin-bottom: 1.1rem;
}

.tw-river__flow {
	display: flex;
	justify-content: space-between;
	font-size: 0.76rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #7fb3ac;
	margin-bottom: 0.7rem;
}

.tw-river__track {
	position: relative;
	list-style: none;
	margin: 0;
	/* Miejsce na plakietkę „nasza baza", która wisi pod punktem bazowym. */
	padding: 0 0 2.4rem;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 0;
}

/* Sama rzeka — biegnie przez środek rzędu z kropkami. */
.tw-river__track::before {
	content: "";
	position: absolute;
	left: 7%;
	right: 7%;
	top: 11px;
	height: 4px;
	border-radius: 4px;
	background: linear-gradient(90deg, rgba(20, 190, 175, 0.35), var(--tw-teal) 45%, var(--tw-teal) 55%, rgba(20, 190, 175, 0.35));
}

.tw-river__point {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding-top: 0;
}

.tw-river__dot {
	position: relative;
	z-index: 1;
	width: 26px;
	height: 26px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #0b3d3a;
	border: 3px solid var(--tw-teal);
	color: #3d2600;
	margin-bottom: 0.6rem;
	transition: transform 0.2s ease;
}

.tw-river__point--base .tw-river__dot {
	width: 42px;
	height: 42px;
	margin-top: -8px;
	background: var(--tw-sun);
	border-color: #ffd28a;
	box-shadow: 0 0 0 6px rgba(244, 160, 36, 0.18);
}

.tw-river__point--base .tw-river__dot svg {
	width: 20px;
	height: 20px;
}

.tw-river__place {
	font-size: 0.86rem;
	line-height: 1.25;
	color: #cfe8e4;
	max-width: 11ch;
}

.tw-river__point--base .tw-river__place {
	font-family: var(--tw-font-display);
	font-size: 1.05rem;
	color: #fff;
	max-width: none;
}

.tw-river__base {
	display: inline-block;
	margin-top: 0.3rem;
	padding: 0.12rem 0.55rem;
	border-radius: 999px;
	background: var(--tw-sun);
	color: #3d2600;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	white-space: nowrap;
}

.tw-river__caption {
	font-size: 0.97rem;
	color: #b9d9d4;
	margin: 0 0 2.2rem;
	max-width: 58ch;
}

.tw-river__caption strong {
	color: #fff;
}

/* --- Trasy: lista odcinków ----------------------------------------------- */

.tw-routes__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.tw-routes__row {
	display: grid;
	grid-template-columns: 1fr minmax(120px, 210px);
	grid-template-areas:
		"head bar"
		"tag  bar";
	align-items: center;
	gap: 0.15rem 1.6rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 14px;
	padding: 1rem 1.4rem;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.tw-routes__row:hover {
	background: rgba(255, 255, 255, 0.11);
	border-color: rgba(244, 160, 36, 0.6);
}

.tw-routes__head {
	grid-area: head;
	display: flex;
	align-items: center;
	gap: 0.7rem;
	flex-wrap: wrap;
}

.tw-routes__dir {
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	display: grid;
	place-items: center;
	border-radius: 8px;
	background: rgba(20, 190, 175, 0.22);
	color: #6fe0d2;
}

.tw-routes__dir svg {
	width: 15px;
	height: 15px;
}

.tw-routes__name {
	font-family: var(--tw-font-display);
	font-size: 1.1rem;
	color: #fff;
	line-height: 1.2;
}

.tw-routes__time {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--tw-sun);
	white-space: nowrap;
}

.tw-routes__tag {
	grid-area: tag;
	font-size: 0.84rem;
	color: #9dc7c1;
}

.tw-routes__bar {
	grid-area: bar;
	height: 7px;
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.12);
	overflow: hidden;
}

.tw-routes__bar span {
	display: block;
	height: 100%;
	border-radius: 7px;
	background: linear-gradient(90deg, var(--tw-teal), var(--tw-sun));
}

.tw-routes__note {
	margin-top: 2.6rem;
	font-size: 0.95rem;
	color: #a9cfc9;
}

@media (max-width: 780px) {
	/* Na wąskim ekranie rzeka płynie w pionie — czyta się lepiej niż ściśnięte kolumny. */
	.tw-river__flow {
		display: none;
	}

	.tw-river__track {
		grid-template-columns: 1fr;
		gap: 0.15rem;
	}

	.tw-river__track::before {
		left: 12px;
		right: auto;
		top: 12px;
		bottom: 12px;
		width: 4px;
		height: auto;
		background: linear-gradient(180deg, rgba(20, 190, 175, 0.35), var(--tw-teal) 45%, var(--tw-teal) 55%, rgba(20, 190, 175, 0.35));
	}

	.tw-river__point {
		flex-direction: row;
		align-items: center;
		text-align: left;
		gap: 0.85rem;
		padding: 0.28rem 0;
	}

	.tw-river__dot {
		margin-bottom: 0;
		flex: 0 0 auto;
	}

	.tw-river__point--base .tw-river__dot {
		margin: 0 0 0 -8px;
	}

	.tw-river__place {
		max-width: none;
	}

	.tw-river__base {
		margin: 0 0 0 auto;
	}

	.tw-routes__row {
		grid-template-columns: 1fr;
		grid-template-areas:
			"head"
			"bar"
			"tag";
		gap: 0.5rem;
	}

	.tw-routes__bar {
		width: 100%;
	}
}

/* --- Kroki --------------------------------------------------------------- */

.tw-steps__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: clamp(1.4rem, 3vw, 2.4rem);
	counter-reset: step;
}

.tw-step {
	position: relative;
	padding-top: 3.6rem;
}

.tw-step::before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	top: 0;
	left: 0;
	width: 2.7rem;
	height: 2.7rem;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--tw-sun);
	color: #3d2600;
	font-family: var(--tw-font-display);
	font-size: 1.28rem;
	font-weight: 700;
}

.tw-step h3 {
	font-size: 1.2rem;
	margin-bottom: 0.45rem;
}

.tw-step p {
	color: var(--tw-muted);
	font-size: 0.96rem;
}

/* --- Galeria ------------------------------------------------------------- */

.tw-gallery__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 190px;
	gap: 0.9rem;
}

.tw-gallery__item {
	overflow: hidden;
	border-radius: 14px;
	background: var(--tw-teal-soft);
}

.tw-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.55s ease;
}

.tw-gallery__item:hover img {
	transform: scale(1.06);
}

.tw-gallery__item--wide {
	grid-column: span 2;
}

.tw-gallery__item--tall {
	grid-row: span 2;
}

/* --- FAQ ----------------------------------------------------------------- */

.tw-faq__list {
	max-width: 52rem;
	margin-inline: auto;
	display: grid;
	gap: 0.75rem;
}

.tw-faq__item {
	background: #fff;
	border: 1px solid var(--tw-line);
	border-radius: 14px;
	overflow: hidden;
}

.tw-faq__item summary {
	padding: 1.15rem 3rem 1.15rem 1.4rem;
	font-weight: 700;
	color: var(--tw-teal-dark);
	cursor: pointer;
	position: relative;
	list-style: none;
	font-size: 1.02rem;
}

.tw-faq__item summary::-webkit-details-marker {
	display: none;
}

.tw-faq__item summary::after {
	content: "";
	position: absolute;
	right: 1.3rem;
	top: 50%;
	width: 11px;
	height: 11px;
	border-right: 2.5px solid var(--tw-teal);
	border-bottom: 2.5px solid var(--tw-teal);
	transform: translateY(-70%) rotate(45deg);
	transition: transform 0.22s ease;
}

.tw-faq__item[open] summary::after {
	transform: translateY(-25%) rotate(-135deg);
}

.tw-faq__answer {
	padding: 0 1.4rem 1.35rem;
	color: var(--tw-muted);
	font-size: 0.97rem;
}

/* --- CTA końcowe --------------------------------------------------------- */

.tw-cta {
	position: relative;
	isolation: isolate;
	color: #fff;
	text-align: center;
	padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.tw-cta__media {
	position: absolute;
	inset: 0;
	z-index: -2;
	overflow: hidden;
}

.tw-cta__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tw-cta::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(11, 61, 58, 0.82);
}

.tw-cta h2 {
	color: #fff;
	font-size: clamp(1.9rem, 4.4vw, 3rem);
}

.tw-cta p {
	color: rgba(255, 255, 255, 0.9);
	max-width: 44rem;
	margin-inline: auto;
	font-size: 1.08rem;
}

.tw-cta .tw__btns {
	justify-content: center;
}

/* --- Nagłówek strony ----------------------------------------------------- */

.tw-head {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	font-family: var(--tw-font-body);
	transition: background-color 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
	padding: 0.9rem 0;
	background: var(--tw-teal-dark);
}

/* Nad zdjęciem hero nagłówek jest przezroczysty, z delikatnym przyciemnieniem. */
.tw-head--over:not(.is-stuck) {
	background: linear-gradient(to bottom, rgba(11, 61, 58, 0.55), rgba(11, 61, 58, 0));
	padding: 1.3rem 0;
}

.tw-head.is-stuck {
	background: var(--tw-teal-dark);
	box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.7);
	padding: 0.6rem 0;
}

.tw-head__inner {
	width: min(100% - 2.5rem, var(--tw-max));
	margin-inline: auto;
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.tw-head__logo {
	flex: 0 0 auto;
	display: block;
	line-height: 0;
}

.tw-head__logo img {
	height: clamp(46px, 5vw, 62px);
	width: auto;
	transition: height 0.25s ease;
}

.tw-head.is-stuck .tw-head__logo img {
	height: clamp(40px, 4vw, 50px);
}

.tw-head__wordmark {
	font-family: var(--tw-font-display);
	font-size: 1.2rem;
	color: #fff;
	line-height: 1.1;
}

/* --- Menu ---------------------------------------------------------------- */

.tw-head__nav {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	margin-left: auto;
}

.tw-menu {
	display: flex;
	align-items: center;
	gap: 0.3rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tw-menu li {
	position: relative;
}

.tw-menu a {
	display: block;
	padding: 0.55rem 0.85rem;
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	white-space: nowrap;
	transition: background-color 0.18s ease, color 0.18s ease;
}

.tw-menu a:hover,
.tw-menu .current-menu-item > a,
.tw-menu .current-menu-ancestor > a {
	background: rgba(255, 255, 255, 0.13);
	color: #fff;
}

/* Strzałka przy pozycji z podmenu. */
.tw-menu .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-left: 0.45rem;
	vertical-align: 2px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
	opacity: 0.75;
}

.tw-menu .sub-menu {
	position: absolute;
	top: calc(100% + 0.55rem);
	left: 0;
	min-width: 240px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 24px 48px -20px rgba(11, 61, 58, 0.55);
	padding: 0.5rem;
	list-style: none;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.tw-menu li:hover > .sub-menu,
.tw-menu li:focus-within > .sub-menu,
.tw-menu li.is-expanded > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.tw-menu .sub-menu a {
	color: var(--tw-teal-dark);
	border-radius: 9px;
	font-weight: 500;
	padding: 0.6rem 0.85rem;
	white-space: normal;
}

.tw-menu .sub-menu a:hover {
	background: var(--tw-teal-soft);
	color: var(--tw-teal-dark);
}

/* --- Telefon i CTA ------------------------------------------------------- */

.tw-head__actions {
	display: flex;
	align-items: center;
	gap: 0.9rem;
}

.tw-head__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.95rem;
	white-space: nowrap;
}

.tw-head__phone svg {
	width: 17px;
	height: 17px;
	color: var(--tw-sun);
}

.tw-head__phone:hover {
	color: var(--tw-sun);
}

.tw-head__cta {
	display: inline-flex;
	align-items: center;
	padding: 0.62rem 1.25rem;
	border-radius: 999px;
	background: var(--tw-sun);
	color: #3d2600;
	font-weight: 700;
	font-size: 0.93rem;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.18s ease, transform 0.18s ease;
}

.tw-head__cta:hover {
	background: var(--tw-sun-dark);
	color: #2c1b00;
	transform: translateY(-1px);
}

/* --- Szybkie połączenie (tylko na wąskich ekranach) ---------------------- */

.tw-head__call {
	display: none;
	align-items: center;
	gap: 0.45rem;
	margin-left: auto;
	padding: 0.6rem 1rem;
	min-height: 44px;
	border-radius: 999px;
	background: var(--tw-sun);
	color: #3d2600;
	font-weight: 700;
	font-size: 0.92rem;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 8px 20px -12px rgba(244, 160, 36, 0.9);
}

.tw-head__call svg {
	width: 18px;
	height: 18px;
}

.tw-head__call:active {
	background: var(--tw-sun-dark);
}

/* --- Hamburger ----------------------------------------------------------- */

.tw-head__burger {
	display: none;
	margin-left: 0.5rem;
	width: 44px;
	height: 44px;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 10px;
	flex-direction: column;
	justify-content: space-between;
}

.tw-head__burger span {
	display: block;
	height: 2px;
	width: 100%;
	background: #fff;
	border-radius: 2px;
	transition: transform 0.22s ease, opacity 0.22s ease;
}

.is-open .tw-head__burger span:nth-child(1) {
	transform: translateY(10px) rotate(45deg);
}

.is-open .tw-head__burger span:nth-child(2) {
	opacity: 0;
}

.is-open .tw-head__burger span:nth-child(3) {
	transform: translateY(-10px) rotate(-45deg);
}

/* Treść musi zaczynać się pod nagłówkiem tam, gdzie nie ma zdjęcia hero. */
body.tw-no-hero #main-container > main {
	padding-top: 92px;
}

@media (max-width: 1180px) {
	.tw-menu a {
		padding: 0.5rem 0.6rem;
		font-size: 0.9rem;
	}

	.tw-head__nav {
		gap: 1rem;
	}
}

@media (max-width: 1024px) {
	.tw-head__burger {
		display: flex;
	}

	/* Telefon pod kciukiem — bez wchodzenia w menu. */
	.tw-head__call {
		display: inline-flex;
	}

	/* Przy otwartym menu przycisk chowamy, bo panel ma własny numer. */
	.is-open .tw-head__call {
		opacity: 0;
		pointer-events: none;
	}

	.tw-head__nav {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(360px, 88vw);
		background: var(--tw-teal-dark);
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		padding: 6rem 1.5rem 2rem;
		transform: translateX(100%);
		transition: transform 0.28s ease;
		overflow-y: auto;
		box-shadow: -20px 0 50px -30px rgba(0, 0, 0, 0.8);
	}

	.is-open .tw-head__nav {
		transform: translateX(0);
	}

	.tw-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0.15rem;
	}

	.tw-menu a {
		padding: 0.85rem 1rem;
		font-size: 1.02rem;
		border-radius: 10px;
	}

	.tw-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: rgba(255, 255, 255, 0.06);
		border-radius: 10px;
		margin: 0.2rem 0 0.4rem 0.9rem;
		padding: 0.3rem;
		display: none;
	}

	.tw-menu li.is-expanded > .sub-menu {
		display: block;
	}

	.tw-menu .sub-menu a {
		color: #cfe8e4;
	}

	.tw-menu .sub-menu a:hover {
		background: rgba(255, 255, 255, 0.1);
		color: #fff;
	}

	.tw-head__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 0.7rem;
		margin-top: 1.6rem;
		padding-top: 1.4rem;
		border-top: 1px solid rgba(255, 255, 255, 0.14);
	}

	.tw-head__phone,
	.tw-head__cta {
		justify-content: center;
		padding: 0.85rem 1rem;
	}

	.tw-head__phone {
		border: 1px solid rgba(255, 255, 255, 0.25);
		border-radius: 999px;
	}

	body.tw-no-hero #main-container > main {
		padding-top: 80px;
	}
}

/* Na najwęższych ekranach zostaje sama ikona — logo ma wtedy dość miejsca. */
@media (max-width: 400px) {
	.tw-head__call span {
		display: none;
	}

	.tw-head__call {
		padding: 0.6rem;
		width: 44px;
		justify-content: center;
	}
}

/* --- Nagłówek podstrony -------------------------------------------------- */

.tw-page-hero {
	position: relative;
	isolation: isolate;
	color: #fff;
	/* Górny odstęp uwzględnia wysokość przyklejonego nagłówka. */
	padding: calc(clamp(3.5rem, 8vw, 6rem) + 70px) 0 clamp(2.8rem, 6vw, 4.5rem);
	display: flex;
	align-items: flex-end;
	min-height: clamp(340px, 46vh, 470px);
}

.tw-page-hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
	overflow: hidden;
}

.tw-page-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 55%;
}

.tw-page-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(
		to top,
		rgba(11, 61, 58, 0.94) 0%,
		rgba(11, 61, 58, 0.72) 55%,
		rgba(11, 61, 58, 0.42) 100%
	);
}

.tw-page-hero h1 {
	color: #fff;
	font-size: clamp(2rem, 5vw, 3.3rem);
	margin: 0 0 0.5rem;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.tw-page-hero__lead {
	font-size: clamp(1rem, 1.7vw, 1.15rem);
	color: rgba(255, 255, 255, 0.92);
	max-width: 56ch;
	margin: 0;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

.tw-crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 0.9rem;
}

.tw-crumbs a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

.tw-crumbs a:hover {
	color: var(--tw-sun);
}

/* --- Treść podstrony ----------------------------------------------------- */

/*
 * Część stron jest zbudowana Elementorem — te reguły oswajają jego typografię,
 * żeby stare treści czytały się tak samo jak nowe sekcje.
 */
.tw-prose {
	max-width: 74ch;
	margin-inline: auto;
	font-size: 1.03rem;
	line-height: 1.75;
	color: var(--tw-ink);
}

.tw-prose > .elementor,
.tw-prose .elementor-section,
.tw-prose .elementor-container,
.tw-prose .elementor-widget-wrap {
	padding: 0 !important;
	margin: 0 !important;
}

.tw-prose h2 {
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	margin: 2.2rem 0 0.7rem;
}

.tw-prose h3 {
	font-size: clamp(1.2rem, 2.2vw, 1.45rem);
	margin: 1.8rem 0 0.5rem;
}

.tw-prose p {
	margin: 0 0 1.2em;
}

.tw-prose ul,
.tw-prose ol {
	margin: 0 0 1.4em;
	padding-left: 1.3rem;
}

.tw-prose li {
	margin-bottom: 0.45em;
}

.tw-prose a:not(.tw__btn) {
	color: var(--tw-teal);
	text-underline-offset: 3px;
}

.tw-prose img {
	max-width: 100%;
	height: auto;
	border-radius: var(--tw-radius);
	box-shadow: var(--tw-shadow);
}

.tw-prose table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0 2rem;
	font-size: 0.97rem;
	background: #fff;
	border-radius: var(--tw-radius);
	overflow: hidden;
	box-shadow: var(--tw-shadow);
}

.tw-prose th {
	background: var(--tw-teal-dark);
	color: #fff;
	font-family: var(--tw-font-display);
	font-weight: 600;
	text-align: left;
	padding: 0.85rem 1.1rem;
}

.tw-prose td {
	padding: 0.8rem 1.1rem;
	border-bottom: 1px solid var(--tw-line);
}

.tw-prose tr:last-child td {
	border-bottom: 0;
}

.tw-prose tr:nth-child(even) td {
	background: var(--tw-cream);
}

/* --- Co w cenie ---------------------------------------------------------- */

.tw-incl__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
	gap: clamp(1.2rem, 3vw, 2rem);
}

.tw-incl {
	text-align: center;
	padding: 1.8rem 1.2rem;
	border: 1px solid var(--tw-line);
	border-radius: var(--tw-radius);
	background: #fff;
}

.tw-incl__icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin: 0 auto 1rem;
	border-radius: 16px;
	background: var(--tw-teal-soft);
	color: var(--tw-teal);
}

.tw-incl__icon svg {
	width: 28px;
	height: 28px;
}

.tw-incl h3 {
	font-size: 1.15rem;
	margin-bottom: 0.4rem;
}

.tw-incl p {
	font-size: 0.92rem;
	color: var(--tw-muted);
}

/* --- Mapa tras ----------------------------------------------------------- */

.tw-map {
	margin: 2.4rem 0 0;
	background: #fff;
	padding: 0.9rem;
	border-radius: var(--tw-radius);
	box-shadow: var(--tw-shadow-lg);
	overflow-x: auto;
}

.tw-map img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 10px;
	min-width: 520px;
}

.tw-map figcaption {
	margin-top: 0.7rem;
	text-align: center;
	font-size: 0.85rem;
	color: var(--tw-muted);
}

/* --- Sprzęt -------------------------------------------------------------- */

.tw-kayaks {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: clamp(1.2rem, 3vw, 1.8rem);
	margin-bottom: 2.2rem;
}

.tw-kayak {
	position: relative;
	background: #fff;
	border-radius: var(--tw-radius);
	padding: 1.8rem 1.7rem;
	box-shadow: var(--tw-shadow);
	border-top: 4px solid var(--tw-teal);
}

.tw-kayak__count {
	position: absolute;
	top: 1.3rem;
	right: 1.5rem;
	font-family: var(--tw-font-display);
	font-size: 2.6rem;
	line-height: 1;
	color: var(--tw-teal-soft);
	font-weight: 700;
}

.tw-kayak h3 {
	font-size: 1.25rem;
	margin-bottom: 0.3rem;
}

.tw-kayak__models {
	font-weight: 700;
	color: var(--tw-sun-dark);
	margin-bottom: 0.7rem !important;
	letter-spacing: 0.01em;
}

.tw-kayak p:last-child {
	color: var(--tw-muted);
	font-size: 0.95rem;
}

.tw-features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 0.65rem 1.8rem;
}

.tw-features li {
	position: relative;
	padding-left: 1.75rem;
	font-size: 0.95rem;
	color: var(--tw-ink);
}

.tw-features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.35em;
	width: 1.05rem;
	height: 1.05rem;
	border-radius: 50%;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230e9488'%3E%3Cpath d='M8.1 13.6 4.9 10.4l1.2-1.2 2 2 5-5 1.2 1.2z'/%3E%3C/svg%3E") center / 100% no-repeat;
}

/* --- Planer spływu ------------------------------------------------------- */

.tw-planner__box {
	max-width: 780px;
	margin-inline: auto;
	background: #fff;
	border-radius: var(--tw-radius);
	padding: clamp(1.5rem, 4vw, 2.6rem);
	box-shadow: var(--tw-shadow-lg);
}

.tw-planner__steps {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: none;
}

/* Widoczny jest tylko krok bieżący — mniej decyzji naraz. */
.tw-planner__step {
	display: none;
}

.tw-planner__step.is-active {
	display: block;
	animation: tw-fade 0.28s ease;
}

@keyframes tw-fade {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: none; }
}

.tw-planner__num {
	display: inline-grid;
	place-items: center;
	width: 2.1rem;
	height: 2.1rem;
	border-radius: 50%;
	background: var(--tw-teal-soft);
	color: var(--tw-teal);
	font-family: var(--tw-font-display);
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 0.8rem;
}

.tw-planner__step h3 {
	font-size: clamp(1.2rem, 2.6vw, 1.55rem);
	margin-bottom: 1.2rem;
}

.tw-planner__opts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 0.7rem;
}

.tw-planner__opts button {
	padding: 1rem 1.2rem;
	border: 2px solid var(--tw-line);
	border-radius: 13px;
	background: #fff;
	font-family: var(--tw-font-body);
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--tw-teal-dark);
	text-align: left;
	cursor: pointer;
	transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.tw-planner__opts button:hover {
	border-color: var(--tw-teal);
	background: var(--tw-teal-soft);
	transform: translateY(-2px);
}

.tw-planner__opts button.is-picked {
	border-color: var(--tw-sun);
	background: rgba(244, 160, 36, 0.14);
}

/* --- Wynik --------------------------------------------------------------- */

.tw-planner__result {
	animation: tw-fade 0.3s ease;
}

.tw-planner__badge {
	display: inline-block;
	padding: 0.3rem 0.85rem;
	border-radius: 999px;
	background: var(--tw-sun);
	color: #3d2600;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 0.9rem;
}

.tw-planner__route {
	font-size: clamp(1.5rem, 3.5vw, 2.1rem);
	margin-bottom: 0.25rem;
}

.tw-planner__time {
	font-weight: 700;
	color: var(--tw-sun-dark);
	margin-bottom: 0.9rem !important;
}

.tw-planner__why {
	color: var(--tw-muted);
	font-size: 1rem;
}

.tw-planner__extras {
	list-style: none;
	margin: 1.3rem 0 0;
	padding: 1.3rem 0 0;
	border-top: 1px solid var(--tw-line);
	display: grid;
	gap: 0.55rem;
}

.tw-planner__extras li {
	position: relative;
	padding-left: 1.75rem;
	font-size: 0.95rem;
}

.tw-planner__extras li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.3em;
	width: 1.05rem;
	height: 1.05rem;
	border-radius: 50%;
	background: var(--tw-teal-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230e9488'%3E%3Cpath d='M8.1 13.6 4.9 10.4l1.2-1.2 2 2 5-5 1.2 1.2z'/%3E%3C/svg%3E") center / 100% no-repeat;
}

.tw-planner__note {
	margin-top: 1.2rem;
	font-size: 0.87rem;
	color: var(--tw-muted);
}

/* --- Stan wody ----------------------------------------------------------- */

.tw-water {
	background: linear-gradient(180deg, #f2fbfa 0%, var(--tw-cream) 100%);
}

.tw-water__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: clamp(1.1rem, 2.5vw, 1.8rem);
}

.tw-water__card {
	background: #fff;
	border-radius: var(--tw-radius);
	padding: 1.6rem 1.7rem;
	box-shadow: var(--tw-shadow);
	border-top: 4px solid var(--tw-teal);
}

.tw-water__card--warn {
	border-top-color: var(--tw-sun);
}

.tw-water__card--alarm {
	border-top-color: #c2410c;
}

.tw-water__head h3 {
	font-size: 1.35rem;
	margin-bottom: 0.15rem;
}

.tw-water__note {
	display: block;
	font-size: 0.86rem;
	color: var(--tw-muted);
}

.tw-water__reading {
	display: flex;
	align-items: baseline;
	gap: 0.4rem;
	margin: 1.1rem 0 0.9rem;
	flex-wrap: wrap;
}

.tw-water__reading b {
	font-family: var(--tw-font-display);
	font-size: clamp(2.6rem, 6vw, 3.4rem);
	line-height: 1;
	color: var(--tw-teal-dark);
}

.tw-water__reading > span:not(.tw-water__trend) {
	font-size: 1.05rem;
	color: var(--tw-muted);
	font-weight: 600;
}

.tw-water__trend {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	margin-left: auto;
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
	background: var(--tw-teal-soft);
	color: var(--tw-teal);
	font-size: 0.83rem;
	font-weight: 700;
	align-self: center;
}

.tw-water__trend svg {
	width: 14px;
	height: 14px;
}

.tw-water__status {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	padding: 0.9rem 1rem;
	border-radius: 12px;
	background: var(--tw-teal-soft);
	margin-bottom: 1.1rem;
}

.tw-water__card--warn .tw-water__status {
	background: rgba(244, 160, 36, 0.16);
}

.tw-water__card--alarm .tw-water__status {
	background: rgba(194, 65, 12, 0.12);
}

.tw-water__dot {
	flex: 0 0 auto;
	width: 11px;
	height: 11px;
	margin-top: 0.35em;
	border-radius: 50%;
	background: var(--tw-teal);
	box-shadow: 0 0 0 4px rgba(14, 148, 136, 0.18);
}

.tw-water__card--warn .tw-water__dot {
	background: var(--tw-sun-dark);
	box-shadow: 0 0 0 4px rgba(244, 160, 36, 0.24);
}

.tw-water__card--alarm .tw-water__dot {
	background: #c2410c;
	box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.2);
}

.tw-water__status strong {
	display: block;
	color: var(--tw-teal-dark);
	font-size: 0.98rem;
}

.tw-water__status span {
	font-size: 0.86rem;
	color: var(--tw-muted);
	line-height: 1.45;
}

.tw-water__meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
	gap: 0.8rem;
	margin: 0;
	padding-top: 1rem;
	border-top: 1px solid var(--tw-line);
}

.tw-water__meta dt {
	font-size: 0.76rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--tw-muted);
	margin-bottom: 0.15rem;
}

.tw-water__meta dd {
	margin: 0;
	font-weight: 700;
	color: var(--tw-teal-dark);
	font-size: 0.97rem;
}

.tw-water__source {
	margin-top: 1.8rem;
	text-align: center;
	font-size: 0.88rem;
	color: var(--tw-muted);
}

.tw-water__source a {
	color: var(--tw-teal);
	font-weight: 600;
}

/* --- Liczby -------------------------------------------------------------- */

.tw-stats__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: clamp(1.4rem, 3vw, 2.4rem);
}

.tw-stat {
	text-align: center;
	padding: 0.5rem 0.5rem 0;
	border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.tw-stat:first-child {
	border-left: 0;
}

.tw-stat b {
	display: block;
	font-family: var(--tw-font-display);
	font-size: clamp(2.6rem, 6vw, 3.8rem);
	line-height: 1;
	color: var(--tw-sun);
	margin-bottom: 0.4rem;
}

.tw-stat__label {
	display: block;
	font-weight: 700;
	color: #fff;
	font-size: 1rem;
	margin-bottom: 0.2rem;
}

.tw-stat__note {
	display: block;
	font-size: 0.85rem;
	color: #9dc7c1;
}

@media (max-width: 620px) {
	.tw-stat {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.14);
		padding-top: 1.2rem;
	}

	.tw-stat:first-child {
		border-top: 0;
		padding-top: 0;
	}
}

/* --- Opinie Google ------------------------------------------------------- */

.tw-reviews__widget {
	max-width: 1100px;
	margin-inline: auto;
}

/* Widget Trustindex ma własne style — pilnujemy tylko, żeby się mieścił. */
.tw-reviews__widget img,
.tw-reviews__widget iframe {
	max-width: 100%;
}

.tw-reviews__cta {
	text-align: center;
	margin-top: 1.8rem;
	font-size: 0.97rem;
	color: var(--tw-muted);
}

.tw-reviews__cta a {
	color: var(--tw-teal);
	font-weight: 700;
}

/* --- Kontakt ------------------------------------------------------------- */

.tw-contact__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1.1rem;
}

.tw-contact__card {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: 1.6rem 1.5rem;
	background: #fff;
	border: 1px solid var(--tw-line);
	border-radius: var(--tw-radius);
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

a.tw-contact__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--tw-shadow-lg);
	border-color: var(--tw-teal);
}

.tw-contact__card--accent {
	background: var(--tw-teal-dark);
	border-color: var(--tw-teal-dark);
	color: #fff;
}

.tw-contact__icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 13px;
	background: var(--tw-teal-soft);
	color: var(--tw-teal);
	margin-bottom: 0.8rem;
}

.tw-contact__card--accent .tw-contact__icon {
	background: rgba(244, 160, 36, 0.2);
	color: var(--tw-sun);
}

.tw-contact__icon svg {
	width: 21px;
	height: 21px;
}

.tw-contact__label {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--tw-muted);
}

.tw-contact__card--accent .tw-contact__label {
	color: var(--tw-sun);
}

.tw-contact__value {
	font-family: var(--tw-font-display);
	font-size: 1.35rem;
	line-height: 1.25;
	color: var(--tw-teal-dark);
}

.tw-contact__card--accent .tw-contact__value {
	color: #fff;
}

.tw-contact__value--sm {
	font-size: 1.05rem;
	word-break: break-word;
}

.tw-contact__note {
	font-size: 0.85rem;
	color: var(--tw-muted);
	margin-top: 0.3rem;
}

.tw-contact__card--accent .tw-contact__note {
	color: #9dc7c1;
}

/* --- Formularz i mapa ---------------------------------------------------- */

.tw-contact__split {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: start;
}

.tw-contact__split h2 {
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	margin-bottom: 0.5rem;
}

.tw-contact__intro {
	color: var(--tw-muted);
	margin-bottom: 1.6rem;
	font-size: 0.98rem;
}

/*
 * Formularz przychodzi z Elementora — tutaj dostaje pełną szerokość kolumny
 * i spójne pola, zamiast rozjeżdżać się w wąskiej kolumnie treści.
 */
.tw-prose--form {
	max-width: none;
	margin: 0;
	background: #fff;
	border-radius: var(--tw-radius);
	padding: clamp(1.4rem, 3vw, 2rem);
	box-shadow: var(--tw-shadow);
}

.tw-prose--form .elementor-field-group {
	margin-bottom: 1rem;
}

.tw-prose--form .elementor-field-label {
	font-weight: 600;
	color: var(--tw-teal-dark);
	margin-bottom: 0.35rem;
	display: block;
}

.tw-prose--form input[type="text"],
.tw-prose--form input[type="email"],
.tw-prose--form input[type="tel"],
.tw-prose--form textarea {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1px solid var(--tw-line);
	border-radius: 11px;
	font-family: var(--tw-font-body);
	font-size: 1rem;
	color: var(--tw-ink);
	background: #fff;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.tw-prose--form input:focus,
.tw-prose--form textarea:focus {
	outline: none;
	border-color: var(--tw-teal);
	box-shadow: 0 0 0 3px rgba(14, 148, 136, 0.16);
}

.tw-prose--form textarea {
	min-height: 150px;
	resize: vertical;
}

.tw-prose--form button[type="submit"],
.tw-prose--form .elementor-button {
	width: 100%;
	padding: 0.95rem 1.5rem;
	border: 0;
	border-radius: 999px;
	background: var(--tw-sun);
	color: #3d2600;
	font-family: var(--tw-font-body);
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.18s ease, transform 0.18s ease;
}

.tw-prose--form button[type="submit"]:hover,
.tw-prose--form .elementor-button:hover {
	background: var(--tw-sun-dark);
	transform: translateY(-1px);
}

.tw-contact__map {
	border-radius: var(--tw-radius);
	overflow: hidden;
	box-shadow: var(--tw-shadow);
	aspect-ratio: 4 / 3;
	background: var(--tw-teal-soft);
}

.tw-contact__map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.tw-contact__route {
	margin-top: 1.1rem;
	width: 100%;
}

@media (max-width: 900px) {
	.tw-contact__split {
		grid-template-columns: 1fr;
	}
}

/* --- „Zobaczcie też" ----------------------------------------------------- */

.tw-more__title {
	font-size: clamp(1.4rem, 2.6vw, 1.9rem);
	text-align: center;
	margin-bottom: 1.8rem;
}

.tw-more__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.1rem;
}

.tw-more__item {
	display: block;
	text-decoration: none;
	color: inherit;
	border-radius: var(--tw-radius);
	overflow: hidden;
	background: #fff;
	box-shadow: var(--tw-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.tw-more__thumb {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--tw-teal-soft);
}

.tw-more__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tw-more__label {
	display: block;
	padding: 0.95rem 1.1rem;
	font-family: var(--tw-font-display);
	font-size: 1.05rem;
	color: var(--tw-teal-dark);
}

.tw-cta--slim {
	padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.tw-cta--slim h2 {
	font-size: clamp(1.6rem, 3.4vw, 2.3rem);
}

/* --- Stopka -------------------------------------------------------------- */

.tw-footer {
	background: var(--tw-teal-dark);
	color: #b9d9d4;
	font-family: var(--tw-font-body);
	font-size: 0.95rem;
	line-height: 1.6;
	padding: clamp(3rem, 6vw, 4.5rem) 0 0;
	position: relative;
}

/* Delikatna fala oddzielająca stopkę od treści nad nią. */
.tw-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--tw-teal), var(--tw-sun), var(--tw-teal));
	opacity: 0.75;
}

.tw-footer a {
	color: inherit;
	text-decoration: none;
	transition: color 0.18s ease;
}

.tw-footer a:hover {
	color: var(--tw-sun);
}

.tw-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
	gap: clamp(1.8rem, 4vw, 3.2rem);
	padding-bottom: clamp(2.2rem, 4vw, 3.2rem);
}

.tw-footer__logo {
	display: block;
	font-family: var(--tw-font-display);
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.15;
	color: #fff;
	margin-bottom: 0.9rem;
}

.tw-footer__brand p {
	margin: 0 0 1.2rem;
	max-width: 34ch;
	color: #9dc7c1;
}

.tw-footer__social {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.6rem 1.1rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 600;
	color: #dcefec;
}

.tw-footer__social svg {
	width: 18px;
	height: 18px;
}

.tw-footer__social:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--tw-sun);
}

.tw-footer__col h2 {
	font-family: var(--tw-font-display);
	font-size: 1.02rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 1rem;
	letter-spacing: 0.01em;
}

.tw-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}

.tw-footer__col li a {
	color: #9dc7c1;
	font-size: 0.92rem;
}

.tw-footer__contact address {
	font-style: normal;
	display: grid;
	gap: 0.85rem;
}

.tw-footer__line {
	display: grid;
	grid-template-columns: 20px 1fr;
	gap: 0.7rem;
	align-items: start;
	color: #cfe8e4;
}

.tw-footer__line svg {
	width: 18px;
	height: 18px;
	margin-top: 0.2em;
	color: var(--tw-teal);
}

.tw-footer__line a {
	color: #cfe8e4;
	font-weight: 600;
}

.tw-footer__season {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.1rem;
	padding: 0.45rem 0.9rem;
	border-radius: 999px;
	background: rgba(244, 160, 36, 0.14);
	color: var(--tw-sun);
	font-size: 0.85rem;
	font-weight: 700;
}

.tw-footer__season svg {
	width: 16px;
	height: 16px;
}

.tw-footer__bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 0.6rem;
	padding: 1.3rem 0 1.6rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.85rem;
	color: #7fb3ac;
}

.tw-footer__bar p {
	margin: 0;
}

.tw-footer__credit a {
	color: #9dc7c1;
	font-weight: 600;
}

@media (max-width: 900px) {
	.tw-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tw-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	.tw-footer__grid {
		grid-template-columns: 1fr;
	}

	.tw-footer__bar {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* --- Responsywność ------------------------------------------------------- */

@media (max-width: 900px) {
	.tw-intro__grid {
		grid-template-columns: 1fr;
	}

	.tw-intro__media {
		order: -1;
	}

	.tw-gallery__grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 155px;
	}
}

@media (max-width: 560px) {
	.tw-hero {
		min-height: 0;
		padding-block: 1rem;
	}

	.tw__btns .tw__btn {
		flex: 1 1 100%;
	}

	.tw-gallery__item--tall {
		grid-row: span 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tw *,
	.tw *::before,
	.tw *::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}

/* --- Mapa tras (Leaflet) ------------------------------------------------- */

.tw-map2__wrap {
	display: grid;
	grid-template-columns: 290px 1fr;
	gap: 1.2rem;
	background: #fff;
	border-radius: var(--tw-radius);
	padding: 1rem;
	box-shadow: var(--tw-shadow-lg);
}

.tw-map2__picker {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	max-height: 460px;
	overflow-y: auto;
}

.tw-map2__picker button {
	display: block;
	width: 100%;
	text-align: left;
	padding: 0.7rem 0.9rem;
	border: 1px solid var(--tw-line);
	border-radius: 11px;
	background: #fff;
	font-family: var(--tw-font-body);
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--tw-teal-dark);
	cursor: pointer;
	transition: border-color 0.16s ease, background-color 0.16s ease;
}

.tw-map2__picker button span {
	display: block;
	font-weight: 500;
	font-size: 0.82rem;
	color: var(--tw-muted);
	margin-top: 0.1rem;
}

.tw-map2__picker button:hover {
	border-color: var(--tw-teal);
	background: var(--tw-teal-soft);
}

.tw-map2__picker button.is-active {
	border-color: var(--tw-sun);
	background: rgba(244, 160, 36, 0.14);
}

.tw-map2__canvas {
	height: 460px;
	border-radius: 12px;
	overflow: hidden;
	background: var(--tw-teal-soft);
	z-index: 0; /* niżej niż przyklejony nagłówek */
}

.tw-map2__note {
	margin-top: 1rem;
	text-align: center;
	font-size: 0.85rem;
	color: var(--tw-muted);
}

.tw-map2__note a {
	color: var(--tw-teal);
	font-weight: 600;
}

@media (max-width: 860px) {
	.tw-map2__wrap {
		grid-template-columns: 1fr;
	}

	/* Na telefonie lista tras jedzie poziomo nad mapą. */
	.tw-map2__picker {
		flex-direction: row;
		max-height: none;
		overflow-x: auto;
		padding-bottom: 0.4rem;
	}

	.tw-map2__picker button {
		width: auto;
		white-space: nowrap;
		flex: 0 0 auto;
	}

	.tw-map2__canvas {
		height: 400px;
	}
}

/* Cena przy trasie */
.tw-routes__price {
	margin-left: auto;
	padding: 0.22rem 0.7rem;
	border-radius: 999px;
	background: var(--tw-sun);
	color: #3d2600;
	font-size: 0.88rem;
	font-weight: 700;
	white-space: nowrap;
}

@media (max-width: 780px) {
	.tw-routes__price {
		margin-left: 0;
	}
}

/* --- Cennik -------------------------------------------------------------- */

.tw-price__note {
	display: flex;
	gap: 0.9rem;
	align-items: flex-start;
	max-width: 800px;
	margin: 0 auto 1.8rem;
	padding: 1.1rem 1.3rem;
	background: var(--tw-teal-soft);
	border-radius: var(--tw-radius);
}

.tw-price__note svg {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	color: var(--tw-teal);
	margin-top: 0.15em;
}

.tw-price__note p {
	margin: 0;
	font-size: 0.97rem;
	color: var(--tw-ink);
}

.tw-price {
	width: 100%;
	max-width: 800px;
	margin-inline: auto;
	border-collapse: collapse;
	background: #fff;
	border-radius: var(--tw-radius);
	overflow: hidden;
	box-shadow: var(--tw-shadow);
}

.tw-price th[scope="col"] {
	background: var(--tw-teal-dark);
	color: #fff;
	font-family: var(--tw-font-display);
	font-weight: 600;
	text-align: left;
	padding: 0.9rem 1.2rem;
	font-size: 0.95rem;
}

.tw-price th[scope="row"] {
	text-align: left;
	font-weight: 600;
	color: var(--tw-teal-dark);
}

.tw-price td,
.tw-price th[scope="row"] {
	padding: 0.85rem 1.2rem;
	border-bottom: 1px solid var(--tw-line);
	font-size: 0.97rem;
}

.tw-price tr:last-child td,
.tw-price tr:last-child th {
	border-bottom: 0;
}

.tw-price tbody tr:nth-child(even) td,
.tw-price tbody tr:nth-child(even) th {
	background: var(--tw-cream);
}

.tw-price__val {
	font-family: var(--tw-font-display);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--tw-sun-dark);
	white-space: nowrap;
}

.tw-price__extra {
	max-width: 800px;
	margin: 1.4rem auto 0;
	text-align: center;
	font-size: 0.95rem;
	color: var(--tw-muted);
}

.tw-price__extra a {
	color: var(--tw-teal);
	font-weight: 700;
}

/* --- Dmuchańce ----------------------------------------------------------- */

.tw-bouncy__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.2rem;
}

.tw-bouncy {
	background: #fff;
	border-radius: var(--tw-radius);
	padding: 1.6rem 1.7rem;
	box-shadow: var(--tw-shadow);
	border-top: 4px solid var(--tw-sun);
}

.tw-bouncy__tag {
	display: inline-block;
	padding: 0.2rem 0.7rem;
	border-radius: 999px;
	background: var(--tw-teal-soft);
	color: var(--tw-teal);
	font-size: 0.78rem;
	font-weight: 700;
	margin-bottom: 0.7rem;
}

.tw-bouncy h3 {
	font-size: 1.35rem;
	margin-bottom: 0.7rem;
}

.tw-bouncy ul {
	list-style: none;
	margin: 0 0 1.1rem;
	padding: 0;
	display: grid;
	gap: 0.35rem;
	font-size: 0.93rem;
	color: var(--tw-muted);
}

.tw-bouncy__price {
	margin: 0;
	font-family: var(--tw-font-display);
	font-size: 1.7rem;
	font-weight: 700;
	color: var(--tw-teal-dark);
}

.tw-bouncy__price span {
	font-family: var(--tw-font-body);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--tw-muted);
}

@media (max-width: 560px) {
	.tw-price th[scope="col"]:nth-child(2),
	.tw-price td:nth-child(2) {
		display: none; /* na wąskim ekranie zostają trasa i cena */
	}
}

.tw-routes__price small {
	font-size: 0.78em;
	font-weight: 600;
	opacity: 0.75;
}

.tw-bouncy { padding-top: 0; overflow: hidden; }
.tw-bouncy__media {
	margin: -0px -1.7rem 1.2rem;
	aspect-ratio: 16 / 11;
	overflow: hidden;
	background: var(--tw-teal-soft);
}
.tw-bouncy__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tw-bouncy > .tw-bouncy__tag { margin-top: 0; }

/* Zdjęcie transportu przy sekcji sprzętu */
.tw-transport {
	margin: 0 0 2.2rem;
	border-radius: var(--tw-radius);
	overflow: hidden;
	background: #fff;
	box-shadow: var(--tw-shadow);
}
.tw-transport img { width: 100%; height: auto; display: block; }
.tw-transport figcaption {
	padding: 0.9rem 1.3rem;
	font-size: 0.92rem;
	color: var(--tw-muted);
	text-align: center;
}
