@charset "UTF-8";
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body {
	font-family: 'Nunito', sans-serif;
	font-size: 1.6rem;
	background-color: #fff;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease,
		text-decoration-color 0.2s ease;
}

.section-heading {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	text-align: center;
	gap: 2rem;
	color: black;
	font-size: 3.5rem;
	margin-bottom: 0.5em;
}
.section-heading::before,
.section-heading::after {
	content: '';
	flex: 1;
	height: 2px;
	background-color: #006633;
}

/* NAVIGATION */

.navbar {
	position: fixed;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
	justify-content: space-between;
	font-family: 'Nunito', sans-serif;
	width: 100%;
	background-color: #fff;
	z-index: 1000;
}
.navbar__topbar {
	padding: 0.5em;
	display: flex;
	justify-content: space-evenly;
	width: 100%;
	background-color: #000;
	color: #fff;
}
.navbar__topbar a,
.navbar__topbar a:active,
.navbar__topbar a:visited {
	text-decoration: none;
	color: #fff;
	font-weight: bold;
}

.navbar__topbar a:hover {
	color: #5b6676;
}

.navbar.open {
	transform: translateY(0);
}
.navbar__wrapper {
	display: flex;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	align-items: center;
	justify-content: space-between;
}
.navbar__logo img {
	padding: 1em 0 0.2em 0.5em;
	height: auto;
	width: 250px;
}
.navbar__menu {
	display: flex;
	list-style: none;
	color: #000;
	font-weight: bold;
	gap: 1.5em;
}
.navbar__link {
	padding: 1em;
	font-size: 1.4rem;
	text-decoration: none;
	letter-spacing: 1px;
	transition: color 0.3s;
	color: #000;
}
.navbar__link:hover {
	color: #006633;
}

.navbar__link.is-active {
	color: #006633;
}

.dropdown {
	position: relative;
}
.dropdown:hover .dropdown__menu,
.dropdown:focus-within .dropdown__menu {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
	pointer-events: auto;
}
.dropdown.open .dropdown__menu {
	display: block;
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
	pointer-events: auto;
}

.dropdown__menu {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fff;
	list-style: none;
	padding: 0;
	min-width: 200px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	opacity: 0;
	transform: translateY(-10px);
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.dropdown__menu li {
	padding: 0.5em;
}
.dropdown__menu .dropdown__link {
	font-size: 1.4rem;
	letter-spacing: 1px;
	text-decoration: none;
	color: #000;
	display: block;
	padding: 0.5em 1em;
	transition: color 0.3s;
}
.dropdown__menu .dropdown__link:hover {
	color: #006633;
}

.dropdown__menu .dropdown__link.is-active {
	color: #006633;
}

/* HAMBURGER */

.navbar__toggle {
	display: none;
	position: relative;
	width: 32px;
	height: 24px;
	background: none;
	border: 0;
	cursor: pointer;
	margin-left: auto;
	padding: 0;
}
.navbar__toggle .bar {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 2px;
	background: #333;
	transition: transform 0.3s, opacity 0.3s, top 0.3s, bottom 0.3s;
}

.navbar__toggle .bar:nth-child(1) {
	top: 4px;
}
.navbar__toggle .bar:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}
.navbar__toggle .bar:nth-child(3) {
	bottom: 4px;
}

/* stan otwarty */
.navbar__toggle.is-open .bar:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}
.navbar__toggle.is-open .bar:nth-child(2) {
	opacity: 0;
}
.navbar__toggle.is-open .bar:nth-child(3) {
	top: 50%;
	bottom: auto;
	transform: translateY(-50%) rotate(-45deg);
}

/* MENU – desktop domyślnie */
.navbar__menu {
	display: flex;
	align-items: center;
	gap: 20px;
}

/* DROPDOWN – desktop hover */
.dropdown {
	position: relative;
}
.dropdown__menu {
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 220px;
	background: #fff;
	border: 1px solid #eee;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	display: none;
	z-index: 50;
}
.dropdown:hover > .dropdown__menu {
	display: block;
}

/* MOBILE */
@media (max-width: 992px) {
	.navbar__toggle {
		display: flex;
		position: relative;
		width: 30px;
		height: 30px;
		background: none;
		border: 0;
		cursor: pointer;
		margin-left: 16px;
		margin-right: 25px;
		padding: 0;
		align-items: center;
		justify-content: center;
	}
	.navbar__menu {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: #fff;
		border-top: 1px solid #eee;
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		display: none;
	}
	.navbar__topbar {
		display: none;
	}
	.navbar__menu.is-open {
		display: flex;
	}
	.navbar__menu > li {
		border-bottom: 1px solid #f2f2f2;
	}
	.navbar__menu a {
		display: block;
		padding: 14px 18px;
	}
	/* Dropdown na mobile – rozwijany kliknięciem */
	.dropdown__menu {
		position: static;
		display: none;
		border: 0;
		box-shadow: none;
	}
	.dropdown.is-open > .dropdown__menu {
		display: block;
	}
	.dropdown__trigger::after {
		content: '▾';
		float: right;
	}
}

/*          HEADER           */

.header {
	padding: 20px;
	position: relative;
	height: 60vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 15px;
	background-image: url('../img/parkiety_slider.webp');
	background-size: cover;
	background-position: center;
}
.header__heading {
	display: inline-block;
	align-self: flex-start;
	font-family: 'Lato', sans-serif;
	letter-spacing: 1px;
	padding: 0.2em;
	font-size: 3.5rem;
	background-color: #000;
	color: #fff;
}
.header__text {
	display: inline-block;
	align-self: flex-start;
	font-family: 'Lato', sans-serif;
	letter-spacing: 1px;
	padding: 0.15em;
	font-size: 3.5rem;
	background-color: #fff;
	color: #000;
}
.header__btn {
	display: inline-block;
	align-self: flex-start;
	text-decoration: none;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 0.4em 0.8em;
	border-radius: 5px;
	background-color: #6dab3c;
	color: #fff;
	transition: background-color 0.3s;
}
.header__btn:hover {
	background-color: #006633;
	color: #fff;
}

/*          CATEGORIES         */

.categories {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	padding: 4em 1em;
	text-align: center;
	background-color: #fff;
}
.categories__title {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	text-align: center;
	gap: 2rem;
	color: black;
	font-size: 3.5rem;
	margin-bottom: 1em;
}
.categories__title::before,
.categories__title::after {
	content: '';
	flex: 1;
	height: 2px;
	background-color: #006633;
}
.categories__description {
	display: inline-block;
	margin-bottom: 4em;
	max-width: 1200px;
	color: black;
}
.categories__box {
	display: flex;
	justify-content: center;
	gap: 2em;
}
.categories__category {
	flex: 1;
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease-in-out;
}
.categories__category:hover {
	transform: scale(1.05);
}
.categories__content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	background-color: #fff;
	min-height: 250px;
	width: auto;
}
.categories__content p {
	padding: 0.5em;
	flex-grow: 1;
	font-size: 1.5rem;
	color: black;
}
.categories__image {
	margin: 0;
}
.categories img {
	display: block;
	width: 100%;
}
.categories h3 {
	margin-bottom: 1em;
	padding-top: 1em;
	color: black;
	letter-spacing: 1px;
	font-size: 2rem;
}
.categories__btn {
	display: inline-block;
	align-self: center;
	margin: 1em 0;
	padding: 0.5em 1em;
	background-color: #6dab3c;
	font-size: 1.5rem;
	color: white;
	text-transform: uppercase;
	text-decoration: none;
	transition: background-color 0.3s;
}
.categories__btn:hover {
	background-color: #006633;
}

.benefits {
	padding: 4em 1em;
	background-color: #f9f9f9;
}
.benefits-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}
.benefits__title {
	margin-bottom: 1em;
}
.benefits__description {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
}
.benefits h3 {
	margin-bottom: 0.5em;
}
.benefits ul {
	display: inline-block;
	margin: 0 auto;
}

.benefits li {
	text-align: left;
	list-style-position: inside;
	line-height: 1.7;
}

/* === WhyUs (benefits) === */
.whyus {
	padding: 56px 0;
	background: #f9f9f9;
}
.whyus__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
}
.whyus__header {
	text-align: center;
	margin-bottom: 28px;
}
.whyus .eyebrow {
	color: #006633;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 12px;
	margin: 0 0 6px;
}
.whyus__header h2 {
	margin: 0 0 6px;
	font-size: clamp(22px, 2.6vw, 30px);
}
.whyus__header .lead {
	margin: 0;
	color: #5a6472;
}

.whyus__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}
@media (max-width: 1024px) {
	.whyus__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 640px) {
	.whyus__grid {
		grid-template-columns: 1fr;
	}
}

.whyus__item {
	background: #fff;
	border-radius: 14px;
	padding: 18px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	height: 100%;
}
.whyus__item:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.whyus__icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	background: #e8f2ec;
	display: grid;
	place-items: center;
	margin-bottom: 10px;
}
.whyus__item h3 {
	margin: 0 0 6px;
	font-size: 18px;
}
.whyus__item p {
	margin: 0;
	color: #5a6472;
	line-height: 1.55;
}

.shop {
	padding: 4em 1em;
	max-width: 1200px;
	margin: 0 auto;
}
.shop__title {
	margin-bottom: 1em;
	font-size: 2.2rem;
	text-align: center;
}
.shop__description {
	margin-bottom: 2em;
	font-size: 1.6rem;
	text-align: center;
}
.shop img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto 2rem;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.shop__gallery {
	overflow-x: auto;
	white-space: nowrap;
	padding: 1em 0;
	margin: 0 auto;
	max-width: 100%;
}
.shop__gallery .gallery-scroll {
	display: inline-block;
	padding: 0 1em;
}
.shop__gallery .gallery-scroll img {
	height: 180px;
	width: auto;
	margin-right: 10px;
	border-radius: 8px;
	display: inline-block;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shop__gallery .gallery-scroll img:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.shop__info {
	margin: 2em auto 0 auto;
	font-size: 1.6rem;
	max-width: 1200px;
}
.shop p {
	padding: 0.5em 0;
}
.shop .shop-subtitle {
	font-size: 3rem;
}

.sanding {
	padding: 4em 1em;
	background-color: #f9f9f9;
}
.sanding .wpb_wrapper {
	max-width: 1200px;
	margin: 0 auto;
}

/* --- Before/After --- */
.before-after {
	padding: 60px 0;
}
.before-after .section-header {
	text-align: center;
	margin-bottom: 24px;
}
.before-after .section-header h2 {
	font-size: clamp(22px, 2.5vw, 32px);
	margin-bottom: 6px;
}

.ba-wrapper {
	position: relative;
	max-width: min(100%, 900px);
	margin: 0 auto 40px;
	aspect-ratio: 16 / 9; /* zachowaj proporcje; możesz zmienić */
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	background: #f4f6f8;
}

.ba-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ba-img--before {
	z-index: 1;
}
.ba-img--after {
	z-index: 2;
}

/* półprzezroczysta zasłona nad częścią BEFORE, żeby kontrast linii był czytelny */
.ba-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0) 30%);
	z-index: 3;
	mix-blend-mode: multiply;
	opacity: 0.35;
}

/* Klucz: wycinamy obrazek "po" poprzez maskowanie szerokości */
.ba-wrapper::before,
.ba-wrapper::after {
	position: absolute;
	top: 12px;
	z-index: 5;
	font-size: 12px;
	line-height: 1;
	letter-spacing: 0.02em;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	padding: 6px 10px;
	border-radius: 999px;
	user-select: none;
	pointer-events: none;
}
.ba-wrapper::before {
	content: attr(data-label-before);
	left: 12px;
}
.ba-wrapper::after {
	content: attr(data-label-after);
	right: 12px;
}

.ba-handle {
	position: absolute;
	inset: 0 auto 0 50%;
	transform: translateX(-50%);
	width: 2px;
	border: 0;
	background: currentColor;
	color: #16a34a; /* zielony akcent */
	z-index: 4;
	cursor: ew-resize;
	outline: none;
}
.ba-handle:focus-visible {
	box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.25);
}

.ba-handle .ba-grip {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18), inset 0 0 0 2px currentColor;
}
.ba-handle .ba-grip::before {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z'/%3E%3Cpath fill='%23000' d='m14 6-6 6 6 6 1.41-1.41L10.83 12 15.41 7.41z'/%3E%3C/svg%3E")
		center / contain no-repeat;
	background: currentColor;
}

/* maska szerokości "po" – sterowana przez zmienną --ba-pos (0–100) */
.ba-img--after {
	clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0);
}
.ba-overlay {
	clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0);
}

@media (max-width: 640px) {
	.ba-wrapper {
		border-radius: 10px;
	}
	.ba-handle .ba-grip {
		width: 40px;
		height: 40px;
	}
}

.faq {
	padding: 4em 1em;
	background-color: #f9f9f9;
}
.faq .faq-wrapper {
	max-width: 1200px;
	margin: 0 auto;
}
.faq__title {
	font-size: 35px;
	margin-bottom: 1.5rem;
	text-align: left;
	font-weight: bold;
}
.faq__item {
	border-bottom: 1px solid #ddd;
	padding: 1rem 0;
}
.faq__item .faq__question {
	background: none;
	border: none;
	font-size: 1.6rem;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0;
	color: #111; /* wymuszony kolor */
	-webkit-appearance: none; /* usuwa styl Safari/iOS */
	appearance: none;
}
.faq__item .faq__question:focus,
.faq__item .faq__question:active {
	color: #111; /* ten sam kolor przy focus/active */
	outline: none; /* usuń ramkę focus */
}

.faq__item .faq__question .faq__icon {
	margin-left: 1rem;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.8rem;
	height: 1.8rem;
	color: #333;
	transition: background 0.3s ease, color 0.3s ease;
}
.faq__item .faq__answer {
	max-height: 0; /* Domyślnie ukryte */
	overflow: hidden;
	/* Zwiększ czas przejścia, żeby było wyraźnie widać animację */
	transition: max-height 0.3s ease-out, opacity 0.4s ease-out;
	opacity: 0; /* Domyślnie niewidoczne */
	font-size: 1.6rem;
	line-height: 1.5;
	margin-top: 0.5rem;
	color: #006633;
}
.faq__item .faq__answer p,
.faq__item .faq__answer ul {
	margin: 0;
	padding-left: 1rem;
}
.faq__item.active .faq__answer {
	opacity: 1;
}
.faq__item.active .faq__icon {
	font-size: 3rem;
}

.exotic-wood {
	padding: 4em 1em;
}
.exotic-wood .wpb_wrapper {
	max-width: 1200px;
	margin: 0 auto;
}

/* --- HERO --- */
.products-hero {
	padding: 90px 0 32px;
}

.products-hero__inner {
	margin: 0 auto;
	padding: 24px 20px 0;
	position: relative;
	z-index: 2;
}

.products-hero__inner h1 {
	color: #fff;
	font-size: 44px;
	line-height: 1.15;
	margin: 0 0 6px;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
	position: absolute;
	left: 47px;
	top: 150px;
}

.breadcrumb {
	position: absolute;
	left: 50px;
	top: 210px;
	color: #e6e8ec;
	font-size: 14px;
	letter-spacing: 0.02em;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.breadcrumb span {
	margin: 0 6px;
	color: #ffdde2;
}

.products-hero__media {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.products-hero__media::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	pointer-events: none;
}

.products-hero__media img {
	display: block;
	width: 100%;
	height: 250px;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: 50% 80%;
	object-position: 50% 80%;
}
@media (max-width: 1250px) {
	.products-hero__inner h1 {
		top: 160px;
		font-size: 30px;
	}
}

@media (max-width: 991px) {
	.products-hero {
		padding: 50px 0 32px;
	}
	.products-hero__inner h1 {
		top: 160px;
		font-size: 25px;
	}
}

@media (max-width: 768px) {
	.header__heading {
		font-size: 30px;
	}
	.header__text {
		font-size: 25px;
	}
	.header__btn {
		font-size: 15px;
	}
	.categories__box {
		flex-direction: column;
	}
	.categories__category {
		padding: 3em;
		width: 100%;
	}
	.products-hero__inner h1 {
		top: 150px;
		font-size: 25px;
	}
}

@media (max-width: 576px) {
	.header__heading {
		font-size: 25px;
	}
	.header__text {
		font-size: 20px;
	}
	.header__btn {
		font-size: 13px;
	}
	.products-hero__inner h1 {
		top: 130px;
	}
}

/*              CTA             */

.cta {
	position: relative;
	background-image: url('../img/parkiet.webp');
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 350px;
}
.cta__content {
	max-width: 1000px;
	margin: 0 auto;
	padding: 2em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}
.cta__title {
	font-size: 4rem;
	margin-bottom: 1em;
}
.cta__btn {
	margin: 20px auto;
	display: inline-block;
	align-self: flex-start;
	text-decoration: none;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 0.4em 0.8em;
	border-radius: 5px;
	background-color: #6dab3c;
	color: #fff;
	transition: background-color 0.3s;
}
.cta__btn:hover {
	background-color: #006633;
	color: #fff;
}
.partners {
	padding: 5em 2em;
	background-color: #fff;
	text-align: center;
}
.partners__slider {
	overflow: hidden;
	width: 100%;
	position: relative;
}
.partners__track {
	display: flex;
	gap: 8rem;
	animation: scrollLogos 20s linear infinite;
	padding: 2rem 0;
	width: -moz-max-content;
	width: max-content;
}
.partners__track img {
	max-height: 120px;
	-o-object-fit: contain;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: filter 0.3s, opacity 0.3s;
}
.partners__track img:hover {
	filter: grayscale(0%);
	opacity: 1;
}

@keyframes scrollLogos {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}
.footer {
	background-color: #392c24;
	padding: 2em 1em;
	text-align: center;
}
.footer__container {
	display: flex;
	justify-content: space-between;
	gap: 1em;
	max-width: 1200px;
	margin: 0 auto;
	flex-wrap: wrap;
}
.footer__column {
	flex: 1;
	min-width: 200px;
	text-align: center;
	padding: 1em;
}
.footer__column p {
	color: #aaa;
}

.footer__column a {
	color: #aaa;
	font-weight: bold;
	text-decoration: none;
	transition: color 0.3s;
}
.footer__column a:hover {
	color: #fff;
}

.footer__logo {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.footer__logo img {
	width: 200px;
	margin-bottom: 0.5em;
}
.footer__logo p {
	font-size: 1.5rem;
	color: #aaa;
}
.footer__title {
	margin-bottom: 1em;
	font-size: 1.2rem;
	color: #fff;
}
.footer__links {
	list-style: none;
}
.footer__links li {
	margin: 5px 0;
	color: #aaa;
}
.footer__links li a {
	color: #aaa;
	text-decoration: none;
	transition: color 0.3s;
}
.footer__links li a:hover {
	color: #fff;
}
.footer__bottom {
	margin-top: 20px;
	border-top: 1px solid #555;
	padding-top: 10px;
	font-size: 1.5rem;
	color: #888;
}

.footer__bottom a {
	padding-left: 10px;
	text-decoration: none;
	color: #aaa;
}

.footer__bottom a:hover {
	color: #fff;
}

@media (max-width: 768px) {
	.footer__container {
		flex-direction: column;
		align-items: center;
	}
	.footer__column {
		margin-bottom: 20px;
	}
}

/* GALLERY */
.gallery {
	padding: 32px 0 80px;
}

.gallery-grid {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.g-item {
	position: relative;
	cursor: zoom-in;
	display: block;
	overflow: hidden;
	aspect-ratio: 1/1;
	background: #04080d;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.g-item img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.g-item:hover img {
	transform: scale(1.05);
}

/* Overlay */
.g-overlay {
	position: absolute;
	inset: 0;
	background: #006633;
	color: #fff;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.g-item:hover .g-overlay {
	opacity: 1;
}

.g-tag {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 6px;
	opacity: 0.9;
}

.g-overlay h3 {
	padding: 0 20px;
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
}

/* — Widok pojedynczego projektu: zero podświetlenia/animacji — */
.gallery--project .g-item:hover img {
	transform: none !important;
	filter: none !important;
}

.gallery--project .g-item .g-overlay {
	opacity: 0 !important;
	pointer-events: none; /* nie klikaj w overlay */
	transition: none !important;
}

/* Na wszelki wypadek wyłącz transform również na stanie normalnym */
.gallery--project .g-item img {
	transform: none !important;
	filter: none !important;
	transition: none !important;
}

/* ===== Lightbox ===== */
.lb-overlay {
	position: fixed;
	inset: 0;
	display: none; /* ukryty domyślnie */
	align-items: center;
	justify-content: center;
	z-index: 9999;
}
.lb-overlay.is-open {
	display: flex;
}

.lb-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
}

.lb-figure {
	position: relative;
	max-width: min(92vw, 1200px);
	max-height: 88vh;
	margin: 0;
	padding: 0;
	z-index: 1;
	display: grid;
	grid-template-rows: 1fr auto;
	gap: 0.5rem;
}

.lb-img {
	max-width: 100%;
	max-height: 80vh;
	object-fit: contain;
	border-radius: 10px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.lb-caption {
	color: #fff;
	text-align: center;
	font-size: 0.95rem;
	line-height: 1.4;
	min-height: 1.2em;
}

.lb-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	color: #111;
	font-size: 28px;
	line-height: 44px;
	text-align: center;
	cursor: pointer;
	user-select: none;
}

.lb-prev {
	left: -56px;
}
.lb-next {
	right: -56px;
}
.lb-close {
	top: -56px;
	right: -8px;
	transform: none;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 26px;
}

/* RWD */
@media (max-width: 1100px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}
@media (max-width: 600px) {
	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.lb-prev,
	.lb-next {
		display: none;
	}
}
/* BLOG */
.blog-page {
	padding: 32px 0 80px;
}

.blog-wrap {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
}

/* Featured post */

.post-card {
	background: #fff;
	border: 1px solid #eaecf0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	position: relative;
	margin-bottom: 32px;
}

.post-media {
	position: relative;
}

.post-media img {
	width: 100%;
	height: 400px;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}

.post-date {
	position: absolute;
	left: 16px;
	bottom: -16px;
	background: #6dab3c;
	color: #fff;
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 10px 14px;
	clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}

.post-body {
	padding: 22px 22px 0;
}

.post-title {
	margin: 12px 0 10px;
	font-size: 30px;
	line-height: 1.25;
	color: #04080d;
	font-weight: 600;
}

.post-excerpt {
	margin: 0 0 18px;
	padding: 0 0 70px 0;
	color: #5a6472;
	line-height: 1.7;
}

.post-excerpt2 {
	margin: 0 0 15px;
	color: #5a6472;
	line-height: 1.5;
	list-style-position: inside;
}
.post-img {
	margin-bottom: 10px;
	width: 100%;
}

.blog-subtitle {
	margin-bottom: 10px;
}

.post-meta {
	display: flex;
	gap: 16px;
	color: #8a97a6;
	font-size: 14px;
	border-top: 1px solid #eef0f3;
	margin-top: 16px;
	padding: 12px 0 60px;
}

.post-more {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 72px;
	height: 56px;
	background: #6dab3c;
	transition: background 0.3s;
}

.post-more::after {
	content: '→';
	color: #fff;
	position: absolute;
	right: 38%;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 700;
}

.post-more:hover {
	background: #006633;
}

.post-card:hover {
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.post-back {
	margin: 0 0 18px;
	color: #5a6472;
	line-height: 1.7;
}

.post-back a:hover {
	color: #6dab3c;
}

/* RWD */
@media (max-width: 1000px) {
	.blog-wrap {
		grid-template-columns: 1fr;
	}
	.post-media img {
		height: 360px;
	}
}
@media (max-width: 600px) {
	.post-media img {
		height: 260px;
	}
	.post-title {
		font-size: 26px;
	}
}
.blog {
	background: #f2f4f7;
	padding: 56px 0 80px;
}

.blog-head {
	max-width: 1200px;
	margin: 0 auto 24px;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 16px 24px;
	align-items: center;
}

.blog-eyebrow {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #7f8284;
	position: relative;
}

.blog-title-xl {
	margin: 0;
	font-size: 44px;
	line-height: 1.15;
	color: #04080d;
	font-weight: 800;
}

/* Kafelki */
.blog-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.blog-card {
	background: #fff;
	border: 1px solid #eaecf0;
	border-radius: 6px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s;
	position: relative;
}

.blog-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Obraz */
.blog-card > img {
	width: 100%;
	height: 220px;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}

/* Treść */
.blog-card .blog-title {
	margin: 18px 18px 10px;
	font-size: 22px;
	line-height: 1.3;
	color: #04080d;
	font-weight: 800;
}

.blog-card .blog-text {
	margin: 0 18px 22px;
	color: #5b6676;
	line-height: 1.7;
	font-size: 15px;
}

/* RWD */
@media (max-width: 1100px) {
	.blog-container {
		grid-template-columns: repeat(2, 1fr);
	}
	.blog-title-xl {
		font-size: 36px;
	}
}
@media (max-width: 700px) {
	.blog-head {
		grid-template-columns: 1fr;
	}
	.blog-container {
		grid-template-columns: 1fr;
		gap: 22px;
	}
	.blog-card > img {
		height: 200px;
	}
	.blog-card .date {
		top: 172px;
	}
}

/* SERVICE PAGES */

.about-us,
.floorboards,
.laying,
.varnishing,
.renovation {
	max-width: 1200px;
	margin: 0 auto;
}

.about-us .content-text,
.floorboards .content-text,
.laying .content-text,
.varnishing .content-text,
.renovation .content-text {
	padding: 20px;
}

.about-us .content-text p,
.floorboards .content-text p,
.laying .content-text p,
.varnishing .content-text p,
.renovation .content-text p {
	font-size: 17px;
	line-height: 1.5;
	margin-bottom: 15px;
	color: #676b6d;
}

.about-us .content-text ul,
.floorboards .content-text ul,
.laying .content-text ul,
.renovation .content-text ul {
	font-size: 17px;
	margin-bottom: 10px;
	color: #676b6d;
	list-style-position: inside;
}

.floorboards h2,
.laying h2 {
	margin-bottom: 10px;
	font-size: 36px;
}

.content-text img {
	width: 100%;
	height: auto;
}

.content-text .patterns {
	padding: 20px;
}

.sanding p,
.exotic-wood p {
	margin-bottom: 15px;
	line-height: 1.5;
}

.sanding ul,
.exotic-wood ul {
	list-style-position: inside;
	line-height: 1.7;
	margin-bottom: 10px;
}

/* gallery */

.project-gallery {
	padding: 24px;
}
.pg-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.pg-grid img {
	width: 100%;
	height: 220px; /* możesz zmienić np. na 240px */
	object-fit: cover;
	display: block;
	border-radius: 6px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s ease;
}
.pg-grid img:hover {
	transform: scale(1.015);
}

/* ===== RWD ===== */
@media (max-width: 1100px) {
	.project-hero img {
		height: 460px;
	}
}
@media (max-width: 900px) {
	.project-meta {
		grid-template-columns: 1fr 1fr;
	}
	.pg-grid {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
}
@media (max-width: 600px) {
	.project-hero img {
		height: 320px;
	}
	.project-meta {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.pg-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

.gallery-wrapper {
	max-width: 1200px;
	margin: 0 auto;
}

.gallery-wrapper h2 {
	padding: 24px;
	font-size: 36px;
}

.gallery-wrapper p {
	padding: 0 0 0 24px;
}

/* KONTAKT */
/* PAGE */
.contact-page {
	padding: 32px 0 80px;
}

.contact-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1.2fr 1fr;
	gap: 32px;
	align-items: start;
}

/* LEFT */
.eyebrow {
	margin: 0 0 10px;
	color: #8a97a6;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	position: relative;
}

.contact-title {
	margin: 6px 0 22px;
	font-size: 48px;
	line-height: 1.1;
	color: #0f1b2d;
	font-weight: 700;
}

.contact-info .info-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin: 20px 0;
}

.contact-info .info-item p {
	margin: 4px 0 0;
	padding: 10px 0;
	color: #5a6472;
}

.contact-info a {
	color: #04080d;
	text-decoration: none;
	border-bottom: 1px solid transparent;
}

.contact-info a:hover {
	border-bottom-color: #0f1b2d;
}

/* CENTER CARD */
.card {
	background: #fff;
	border: 1px solid #eaecf0;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	padding: 26px;
}

.contact-form h2 {
	margin: 0 0 18px;
	font-size: 26px;
	line-height: 1.35;
	color: #04080d;
	font-weight: 700;
}

/* FORM */
.form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.form-row {
	display: flex;
	gap: 16px;
}

.form-row.two > * {
	flex: 1;
}

.field {
	position: relative;
	display: block;
	width: 100%;
}

.field input,
.field textarea {
	width: 100%;
	border: 1px solid #e5e7eb;
	background: #f3f4f6;
	border-radius: 4px;
	padding: 14px 44px 14px 14px;
	font-size: 16px;
	color: #04080d;
	outline: none;
}

.field textarea {
	resize: vertical;
}

.field input::-moz-placeholder,
.field textarea::-moz-placeholder {
	color: #9aa3af;
}

.field input::placeholder,
.field textarea::placeholder {
	color: #9aa3af;
}

.field input:focus,
.field textarea:focus {
	border-color: #cfd6de;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(225, 25, 55, 0.08);
}

/* input icons (right) */
.field-ico {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	opacity: 0.5;
	background-repeat: no-repeat;
	background-size: 20px;
}

.field-ico.person {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%230f1b2d' d='M12 12a5 5 0 10-5-5 5 5 0 005 5zm0 2c-4.42 0-8 2.24-8 5v1h16v-1c0-2.76-3.58-5-8-5z'/%3E%3C/svg%3E");
}

.field-ico.mail {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%230f1b2d' d='M20 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V6a2 2 0 00-2-2zm0 4l-8 5-8-5V6l8 5 8-5z'/%3E%3C/svg%3E");
}

.field-ico.phone {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%230f1b2d' d='M6.6 10.8a15.3 15.3 0 006.6 6.6l2.2-2.2a1 1 0 011.1-.2 11.6 11.6 0 003.6 1.1 1 1 0 01.9 1v3.5a1 1 0 01-1 1A18 18 0 013 5a1 1 0 011-1h3.5a1 1 0 011 .9 11.6 11.6 0 001.1 3.6 1 1 0 01-.2 1.1z'/%3E%3C/svg%3E");
}

.field-ico.chat {
	top: auto;
	bottom: 12px;
	transform: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%230f1b2d' d='M20 2H4a2 2 0 00-2 2v14l4-4h14a2 2 0 002-2V4a2 2 0 00-2-2z'/%3E%3C/svg%3E");
}

/* === Google Reviews === */

.google-reviews .section-header {
	text-align: center;
	margin-bottom: 20px;
}
.google-reviews .section-header h2 {
	font-size: clamp(22px, 2.6vw, 32px);
	margin: 0 0 6px;
}
.google-reviews .muted {
	color: #5a6472;
}
.google-reviews .center {
	text-align: center;
}

/* --- Karuzela --- */
.carousel-section {
	margin: 0 auto;
	max-width: 1200px;
	padding: 4em 1em;
	position: relative;
}
.reviews-carousel {
	position: relative;
	--car-gutter: 22px;
	--car-bottom: 18px;
}
.carousel-viewport {
	overflow-x: auto; /* poziomy scroll */
	overflow-y: visible; /* pozwól cieniom wychodzić na dół */
	scroll-behavior: smooth;
	padding: 0 24px 24px; /* oddechy: lewa/prawa + dół na cień */
	margin: 0 -24px -24px; /* kompensacja, by layout trzymał szerokość */
	scrollbar-width: none; /* Firefox – ukryj pasek */
	scroll-snap-type: x mandatory;
}

.carousel-viewport::-webkit-scrollbar {
	display: none;
}

.carousel-track {
	display: flex;
	gap: 20px;
	padding: 0;
}

/* item – pełna szer. na mobile, 2/3 kolumny na szerszych */
.review-slide {
	flex: 0 0 100%;
	scroll-snap-align: start;
}
@media (min-width: 768px) {
	.review-slide {
		flex-basis: 50%;
	}
}
@media (min-width: 1100px) {
	.review-slide {
		flex-basis: 33.3333%;
	}
}

/* wyłącz natywne punktorów w liście (żeby nie było czarnych kropek ::marker) */
.reviews-carousel ul,
.reviews-carousel li {
	list-style: none;
	margin: 0;
	padding: 0;
}
.reviews-carousel li::marker {
	content: '';
}

/* strzałki */
.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	font-size: 24px;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
	z-index: 2;
}
.carousel-btn.prev {
	left: 8px;
}
.carousel-btn.next {
	right: 8px;
}

/* kropki */
.carousel-dots {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 50px;
}
.carousel-dots button {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 0;
	background: #cfd6de;
	cursor: pointer;
	opacity: 0.6;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.carousel-dots button.is-active {
	background: #006633;
	opacity: 1;
	transform: scale(1.1);
}

/* mobil: przewijanie palcem, brak strzałek */
@media (max-width: 767px) {
	.carousel-btn {
		display: none;
	}
	.carousel-viewport {
		padding: 20px;
		overflow-x: auto;
		overflow-y: visible;
		-webkit-overflow-scrolling: touch; /* iOS */
		touch-action: pan-x; /* podpowiedz dla przeglądarki */
		scrollbar-width: none; /* ukryj pasek (Firefox) */
	}
	.carousel-viewport::-webkit-scrollbar {
		display: none;
	} /* ukryj pasek (WebKit) */
}

/* --- Karta opinii --- */
.review-card {
	background: #fff;
	border-radius: 14px;
	padding: 16px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	height: 100%;
	display: flex;
	flex-direction: column;
}
.review-head {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 10px;
}
.review-head .avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	background: #eee;
}
.review-head .who {
	display: flex;
	flex-direction: column;
}
.review-head .who .meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: #5a6472;
}

.stars .star {
	font-size: 16px;
	line-height: 1;
}
.star--full,
.star--half {
	color: #f2b01e;
}
.star--empty {
	color: #d5dbe1;
}

.review-text {
	padding: 10px;
	color: #2a2f36;
	line-height: 1.55;
	margin: 6px 0 0;
}

.reviews-cta {
	text-align: center;
	margin-top: 18px;
}

/* Consent */
.consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	color: #5a6472;
	font-size: 14px;
	line-height: 1.5;
}

.consent a {
	color: #04080d;
	text-decoration: none;
	border-bottom: 1px solid #04080d;
}

.consent a:hover {
	opacity: 0.8;
}

.captcha-placeholder {
	height: 78px;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #8a97a6;
	margin-top: 4px;
}

/* Actions */
.form-actions {
	display: flex;
	justify-content: flex-end;
}

.btn-submit {
	background: #6dab3c;
	color: #fff;
	border: 0;
	border-radius: 5px;
	padding: 15px 30px;
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: background 0.3s;
}

.btn-submit:hover {
	background: #006633;
}

.btn-submit span {
	transition: transform 0.2s;
}

.btn-submit:hover span {
	transform: translateX(3px);
}

.form-alert {
	padding: 12px;
	border-radius: 8px;
	margin-bottom: 12px;
}
.form-alert.error {
	background: #ffe9e9;
	color: #8a1f1f;
}
.form-alert.success {
	background: #e8f7ec;
	color: #1f7a3a;
}
.g-recaptcha {
	margin: 10px 0;
}

.map-section {
	width: 100%;
	height: 700px;
	margin: 0;
	padding: 0;
}

.map-section iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.contact-image {
	max-width: 100%;
	height: auto;
}

/* RWD */
@media (max-width: 1000px) {
	.contact-wrap {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.contact-title {
		font-size: 34px;
	}
	.contact-form h2 {
		font-size: 22px;
	}
}
/* C2A */
.c2a {
	background: #dd042b;
	padding: 40px 0;
}

.c2a-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr; /* lewa szersza */
	gap: 40px;
	align-items: center;
	color: #fff;
}

.c2a-contact {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.c2a-contact .c2a-icon {
	width: 70px;
	height: 70px;
}

.c2a-contact p {
	margin: 0;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.5;
}

.konfigurator h3 {
	margin: 0;
	font-size: 30px;
	font-weight: 700;
	color: #1b2027;
	text-align: end;
	transition: color 0.2s;
}

.konfigurator a {
	text-decoration: none;
}

.konfigurator h3:hover {
	color: #fff;
}

/* RWD*/
@media (max-width: 800px) {
	.c2a-container {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.c2a-contact {
		flex-direction: column;
		align-items: center;
	}
} /*# sourceMappingURL=style.css.map */
