/*
Theme Name: PCOI
Theme URI: https://pcoi.pl
Author: Klikon Media
Author URI: https://klikonmedia.pl
Description: Motyw autorski dla Pomorskie Centrum Obsługi Inwestycji Sp. z o.o. – firma geodezyjna.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pcoi
*/

/* ==========================================================================
   PCOI – Zmienne globalne (Branding)
   ========================================================================== */
:root {
	--primary: #b29151;
	--secondary: #4a3728;
	--bg-light: #f9f9f9;
	--text-dark: #1a1a1a;
	--text-muted: #666;
	--white: #fff;
	--border-color: #e0e0e0;
	--font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--font-serif: Georgia, "Times New Roman", Times, serif;
	--container-max: 1200px;
	--spacing-unit: 1rem;
	--header-height: 80px;
	--transition-base: 0.2s ease;
	/* Jednolite przyciski na stronie */
	--btn-padding-y: 0.6rem;
	--btn-padding-x: 1.5rem;
	--btn-min-height: 42px;
	--btn-font-size: 1rem;
	--btn-font-weight: 600;
	--btn-border-radius: 6px;
}

/* ==========================================================================
   Reset CSS
   ========================================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}

body {
	min-height: 100vh;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--bg-light);
	font-family: var(--font-sans);
	font-size: 1rem;
	overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
}

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

a:hover {
	text-decoration: underline;
}

ul,
ol {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ==========================================================================
   Animacje wejścia / wyjścia (scroll)
   ========================================================================== */
.pcoi-animate {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.pcoi-animate.pcoi-animate--in {
	opacity: 1;
	transform: translateY(0);
}

/* Opóźnienia (stagger) dla elementów w listach */
.pcoi-animate--delay-1 { transition-delay: 0.08s; }
.pcoi-animate--delay-2 { transition-delay: 0.16s; }
.pcoi-animate--delay-3 { transition-delay: 0.24s; }
.pcoi-animate--delay-4 { transition-delay: 0.32s; }
.pcoi-animate--delay-5 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
	.pcoi-animate {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.pcoi-animate--delay-1,
	.pcoi-animate--delay-2,
	.pcoi-animate--delay-3,
	.pcoi-animate--delay-4,
	.pcoi-animate--delay-5 {
		transition-delay: 0s;
	}
}

/* ==========================================================================
   Typografia
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	color: var(--text-dark);
	font-weight: 600;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4, h5, h6 { font-size: 1.125rem; }

p {
	margin-bottom: var(--spacing-unit);
	color: var(--text-dark);
}

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

/* ==========================================================================
   Layout – kontener
   ========================================================================== */
.pcoi-container {
	width: 100%;
	max-width: var(--container-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--spacing-unit);
	padding-right: var(--spacing-unit);
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.pcoi-breadcrumbs {
	padding: var(--spacing-unit) 0;
	font-size: 0.875rem;
	color: var(--text-muted);
}

.pcoi-breadcrumbs.pcoi-container {
	padding-left: var(--spacing-unit);
	padding-right: var(--spacing-unit);
}

.pcoi-breadcrumbs a {
	color: var(--primary);
}

/* RWD – Mobile */
@media (max-width: 767px) {
	.pcoi-breadcrumbs {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}

	.pcoi-breadcrumbs.pcoi-container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

/* ==========================================================================
   Scroll to Top
   ========================================================================== */
.pcoi-scroll-top {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 99;
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary);
	color: var(--white);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base);
}

.pcoi-scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
}

.pcoi-scroll-top:hover {
	transform: scale(1.05);
	background: var(--secondary);
}

.pcoi-scroll-top:focus {
	outline: 2px solid var(--primary);
	outline-offset: 2px;
}

/* ==========================================================================
   Header – Top Bar + Main Header (BEM)
   ========================================================================== */
.c-header {
	position: static;
	z-index: 100;
	width: 100%;
	overflow: visible;
}

.c-header__topbar {
	background: var(--secondary);
	color: var(--white);
	padding: 0.5rem 0;
	font-size: 0.875rem;
	transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
	overflow: hidden;
	max-height: 100px;
}

.c-header.is-sticky .c-header__topbar {
	opacity: 0;
	transform: translateY(-100%);
	max-height: 0;
	padding: 0;
	margin: 0;
	visibility: hidden;
}

.c-header__main {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--white);
	border-bottom: 1px solid var(--border-color);
	box-shadow: 0 1px 0 var(--border-color);
	transition: box-shadow var(--transition-base), background-color var(--transition-base);
	width: 100%;
	display: block;
	margin: 0;
	left: 0;
	right: 0;
}

.c-header.is-sticky .c-header__main {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	background-color: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(8px);
	width: 100%;
	max-width: 100%;
}

.c-header__placeholder {
	display: none;
	width: 100%;
	visibility: hidden;
}

/* Uwzględnij WordPress admin bar */
.admin-bar .c-header__main {
	top: 32px;
}

.admin-bar .c-header.is-sticky .c-header__main {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .c-header__main {
		top: 46px;
	}
	
	.admin-bar .c-header.is-sticky .c-header__main {
		top: 46px;
	}
}

/* Upewnij się że sticky działa - brak overflow na rodzicach */
html,
body {
	overflow-x: hidden;
	overflow-y: auto;
}

.c-header,
.c-header__topbar {
	overflow: visible;
}

.c-header__topbar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.c-header__company {
	flex-shrink: 0;
}

.c-header__company-name {
	color: var(--white);
	font-size: 0.875rem;
	font-weight: 500;
}

.c-header__contact {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	flex-wrap: wrap;
}

.c-header__contact-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--white);
	text-decoration: none;
	transition: color var(--transition-base);
}

.c-header__contact-item:hover {
	color: var(--primary);
	text-decoration: none;
}

.c-header__icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.c-header__main-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--header-height);
	gap: 2rem;
}

.c-header__logo {
	flex-shrink: 0;
}

.c-header__logo-link {
	display: block;
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 600;
	font-size: 1.25rem;
}

.c-header__logo-img {
	max-height: 50px;
	width: auto;
	display: block;
}

.c-header__logo-text {
	color: var(--text-dark);
}

.c-header__nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

/* Ukryj elementy menu mobilnego na desktopie */
.c-header__nav-contact,
.c-header__nav-cta {
	display: none;
}

.c-header__menu {
	display: flex;
	gap: 2rem;
	align-items: center;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.c-header__menu a {
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 500;
	transition: color var(--transition-base);
	padding: 0.5rem 0;
	display: block;
}

.c-header__menu a:hover,
.c-header__menu .current-menu-item > a {
	color: var(--primary);
	text-decoration: none;
}

.c-header__cta {
	flex-shrink: 0;
}

.c-header__cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--btn-min-height);
	padding: var(--btn-padding-y) var(--btn-padding-x);
	background: var(--primary);
	color: var(--white);
	text-decoration: none;
	border-radius: var(--btn-border-radius);
	font-weight: var(--btn-font-weight);
	font-size: var(--btn-font-size);
	transition: background-color var(--transition-base), transform var(--transition-base);
	border: none;
	cursor: pointer;
	line-height: 1.4;
}

.c-header__cta-button:hover {
	background: var(--secondary);
	color: var(--white);
	text-decoration: none;
	transform: translateY(-1px);
}

.c-header__cta-button:focus {
	outline: 2px solid var(--primary);
	outline-offset: 2px;
}

/* Hamburger Menu (Mobile) */
.c-header__hamburger {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 101;
}

.c-header__hamburger-line {
	width: 24px;
	height: 2px;
	background: var(--text-dark);
	transition: transform var(--transition-base), opacity var(--transition-base);
	border-radius: 1px;
}

.c-header__hamburger[aria-expanded="true"] .c-header__hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.c-header__hamburger[aria-expanded="true"] .c-header__hamburger-line:nth-child(2) {
	opacity: 0;
}

.c-header__hamburger[aria-expanded="true"] .c-header__hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* RWD – Mobile (< 1024px) */
@media (max-width: 1023px) {
	.c-header__topbar {
		display: none;
	}

	/* Pokaż elementy menu mobilnego tylko na mobile */
	.c-header__nav-contact,
	.c-header__nav-cta {
		display: block;
	}

	.c-header__company-name {
		font-size: 0.75rem;
	}

	.c-header__contact {
		gap: 1rem;
	}

	.c-header__main-inner {
		min-height: 70px;
	}

	.c-header__nav {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: 100dvh;
		height: 100vh; /* Fallback dla przeglądarek bez wsparcia dvh */
		max-height: 100dvh;
		max-height: 100vh; /* Fallback */
		background: var(--white);
		z-index: 1001;
		padding-top: 70px;
		padding-left: 1.5rem;
		padding-right: 1.5rem;
		padding-bottom: 2rem;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		overflow-y: auto;
		overflow-x: hidden;
		box-sizing: border-box;
		width: 100%;
		max-width: 100%;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		margin: 0;
		-webkit-overflow-scrolling: touch;
	}

	.c-header__nav > * {
		max-width: 100%;
		box-sizing: border-box;
		width: 100%;
		flex-shrink: 0;
	}

	.c-header__nav.is-open {
		transform: translateX(0);
	}

	.c-header__menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
		width: 100%;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.c-header__menu li {
		width: 100%;
	}

	.c-header__menu a {
		display: block;
		font-size: 1.125rem;
		padding: 0.75rem 0;
		width: 100%;
		box-sizing: border-box;
	}

	.c-header__nav-contact {
		margin-top: 2rem;
		padding-top: 2rem;
		border-top: 1px solid var(--border-color);
		width: 100%;
		box-sizing: border-box;
	}

	.c-header__nav-contact-title {
		font-size: 0.875rem;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.05em;
		color: var(--text-dark);
		margin-bottom: 1rem;
		width: 100%;
	}

	.c-header__nav-contact-item {
		display: flex;
		align-items: center;
		gap: 0.75rem;
		padding: 0.75rem 0;
		color: var(--text-dark);
		text-decoration: none;
		font-size: 1rem;
		transition: color var(--transition-base);
		width: 100%;
		box-sizing: border-box;
		word-break: break-word;
		max-width: 100%;
	}

	.c-header__nav-contact-item span {
		flex: 1;
		min-width: 0;
		word-break: break-all;
	}

	.c-header__nav-contact-item:hover {
		color: var(--primary);
		text-decoration: none;
	}

	.c-header__nav-contact-icon {
		flex-shrink: 0;
		color: var(--primary);
	}

	.c-header__nav-cta {
		margin-top: 2rem;
		padding-top: 2rem;
		border-top: 1px solid var(--border-color);
		width: 100%;
		box-sizing: border-box;
	}

	.c-header__nav-cta-button {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		min-height: var(--btn-min-height);
		padding: var(--btn-padding-y) var(--btn-padding-x);
		background: var(--primary);
		color: var(--white);
		text-decoration: none;
		border-radius: var(--btn-border-radius);
		font-weight: var(--btn-font-weight);
		font-size: var(--btn-font-size);
		transition: background-color var(--transition-base), transform var(--transition-base);
		box-sizing: border-box;
		text-align: center;
	}

	.c-header__nav-cta-button:hover {
		background: var(--secondary);
		color: var(--white);
		text-decoration: none;
		transform: translateY(-1px);
	}

	.c-header__cta {
		display: none;
	}

	.c-header__hamburger {
		display: flex;
		z-index: 1002;
		position: relative;
	}

	.c-header__logo-img {
		max-height: 40px;
	}

	/* Napraw ucinanie headera podczas scrollowania na mobile */
	.c-header {
		overflow: visible;
	}

	.c-header.is-sticky .c-header__main {
		left: 0;
		right: 0;
		width: 100%;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
		box-sizing: border-box;
		position: fixed;
	}

	.c-header__main-inner {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		padding-left: var(--spacing-unit);
		padding-right: var(--spacing-unit);
	}
}

/* ==========================================================================
   Mapa (BEM) - iframe
   ========================================================================== */
.c-map {
	width: 100%;
	height: 450px;
	position: relative;
	z-index: 10;
	background: var(--bg-light);
	overflow: visible;
}

.c-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	min-height: 450px;
	pointer-events: auto !important;
	position: relative;
	z-index: 10;
	background: transparent;
}

/* Upewnij się że kontener nie blokuje interakcji */
.c-map * {
	pointer-events: auto !important;
}

@media (max-width: 767px) {
	.c-map {
		height: 350px;
	}

	.c-map iframe {
		min-height: 350px;
	}
}

/* ==========================================================================
   Stopka (BEM)
   ========================================================================== */
.c-footer {
	position: relative;
	background: var(--secondary);
	color: var(--white);
	margin-top: 3rem;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.c-footer__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(44, 34, 24, 0.96);
	z-index: 1;
}

.c-footer__inner {
	position: relative;
	z-index: 2;
	padding: 4rem 0;
}

.c-footer__columns {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.c-footer__column {
	display: flex;
	flex-direction: column;
}

.c-footer__logo {
	margin-bottom: 1rem;
}

.c-footer__logo-img {
	max-height: 120px;
	width: auto;
	display: block;
}

.c-footer__description {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
}

.c-footer__title {
	margin: 0 0 1rem 0;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--white);
}

.c-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.c-footer__menu a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 0.875rem;
	transition: color var(--transition-base);
}

.c-footer__menu a:hover {
	color: var(--primary);
	text-decoration: none;
}

.c-footer__contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.c-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	line-height: 1.6;
}

.c-footer__contact-item a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color var(--transition-base);
	font-size: 1rem;
	font-weight: 500;
}

.c-footer__contact-item a:hover {
	color: var(--primary);
	text-decoration: none;
}

.c-footer__icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 0.125rem;
}

/* Sekcja "Strona wykonana przez" */
.c-footer__bottom {
	position: relative;
	z-index: 2;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.3);
	padding: 1rem 0;
}

.c-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.c-footer__copyright {
	font-size: 0.8125rem;
}

.c-footer__copyright p {
	margin: 0;
}

.c-footer__copyright-text {
	color: var(--white) !important;
}

.c-footer__credits {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.c-footer__credits-text {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.7);
}

.c-footer__credits-logo {
	display: block;
	height: 28px;
	transition: opacity var(--transition-base);
}

.c-footer__credits-logo:hover {
	opacity: 0.8;
}

.c-footer__credits-img {
	height: 100%;
	width: auto;
	display: block;
}

/* RWD – Tablet */
@media (max-width: 1023px) {
	.c-footer__columns {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

/* RWD – Mobile */
@media (max-width: 767px) {
	.c-footer__inner {
		padding: 3rem 1.5rem;
	}

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

	.c-footer__logo-img {
		max-height: 90px;
	}

	.c-footer__title {
		font-size: 1.125rem;
	}

	.c-footer__contact-item {
		font-size: 0.9375rem;
	}

	.c-footer__icon {
		width: 18px;
		height: 18px;
	}

	.c-footer__bottom {
		padding: 1rem 1.5rem;
	}

	.c-footer__bottom-inner {
		flex-direction: column;
		text-align: center;
	}
}

/* ==========================================================================
   Sekcja Hero (BEM)
   ========================================================================== */
.c-hero {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--secondary);
	margin: 0;
	padding: 0;
}

.c-hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.c-hero__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Tło wideo YouTube – pełny ekran, za overlayem */
.c-hero__video-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%, -50%);
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
}

.c-hero__video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	min-width: 177.78vh;
	min-height: 100%;
	transform: translate(-50%, -50%);
	border: none;
}

.c-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(74, 55, 40, 0.85) 100%);
}

.c-hero__inner {
	position: relative;
	z-index: 3;
	width: 100%;
	padding: 4rem var(--spacing-unit);
}

.c-hero__content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	color: var(--white);
}

.c-hero__title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--white);
	margin: 0 0 1.5rem 0;
}

.c-hero__description {
	font-size: clamp(1rem, 2vw, 1.25rem);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.95);
	margin: 0 0 1rem 0;
}

.c-hero__tagline {
	font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 2.5rem 0;
}

.c-hero__cta {
	display: flex;
	gap: 1rem;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 0 2.5rem 0;
}

.c-hero__cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	min-height: var(--btn-min-height);
	padding: var(--btn-padding-y) var(--btn-padding-x);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	text-decoration: none;
	border-radius: var(--btn-border-radius);
	transition: all var(--transition-base);
	border: 2px solid transparent;
	cursor: pointer;
	line-height: 1.4;
}

.c-hero__cta-button--primary {
	background: var(--white);
	color: var(--secondary);
	border-color: var(--white);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.c-hero__cta-button--primary:hover {
	background: rgba(255, 255, 255, 0.95);
	color: var(--secondary);
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.c-hero__cta-button--secondary {
	background: transparent;
	color: var(--white);
	border-color: var(--white);
}

.c-hero__cta-button--secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	text-decoration: none;
	border-color: rgba(255, 255, 255, 0.8);
	transform: translateY(-2px);
}

.c-hero__cta-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.c-hero__features {
	display: flex;
	gap: 2rem;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.c-hero__feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--white);
	font-size: 1rem;
	font-weight: 500;
}

.c-hero__feature-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: #4ade80;
	stroke-width: 3;
}

.c-hero__feature-text {
	color: var(--white);
}

/* RWD – Tablet */
@media (max-width: 1023px) {
	.c-hero {
		min-height: 70vh;
	}

	.c-hero__inner {
		padding: 3rem var(--spacing-unit);
	}

	.c-hero__cta {
		flex-direction: column;
		width: 100%;
	}

	.c-hero__cta-button {
		width: 100%;
		justify-content: center;
		max-width: 300px;
	}

	.c-hero__features {
		flex-direction: column;
		gap: 1rem;
		align-items: flex-start;
	}
}

/* RWD – Mobile */
@media (max-width: 767px) {
	.c-hero {
		min-height: 60vh;
	}

	.c-hero__inner {
		padding: 2rem var(--spacing-unit);
	}

	.c-hero__title {
		margin-bottom: 1rem;
	}

	.c-hero__description,
	.c-hero__tagline {
		margin-bottom: 1.5rem;
	}

	.c-hero__cta {
		margin-bottom: 2rem;
	}

	.c-hero__cta-button {
		min-height: var(--btn-min-height);
		padding: var(--btn-padding-y) var(--btn-padding-x);
		font-size: var(--btn-font-size);
	}

	.c-hero__features {
		gap: 0.75rem;
	}

	.c-hero__feature {
		font-size: 0.9375rem;
	}
}

/* ==========================================================================
   Sekcja O nas (BEM)
   ========================================================================== */
.c-about {
	background: var(--bg-light);
	padding: 4rem 0;
}

.c-about__inner {
	width: 100%;
}

.c-about__main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	margin-bottom: 4rem;
}

.c-about__image {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.c-about__img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.c-about__content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.c-about__preheader {
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.c-about__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-dark);
	margin: 0 0 1rem 0;
}

.c-about__description {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-muted);
}

.c-about__description p {
	margin: 0 0 1rem 0;
}

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

.c-about__features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.c-about__feature {
	background: var(--white);
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform var(--transition-base), box-shadow var(--transition-base);
	text-align: center;
}

.c-about__feature:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.c-about__feature-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1.5rem;
	color: var(--primary);
}

.c-about__feature-icon svg {
	width: 64px;
	height: 64px;
	color: var(--primary);
}

.c-about__feature-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0 0 1rem 0;
}

.c-about__feature-text {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--text-muted);
	margin: 0;
}

/* RWD – Tablet */
@media (max-width: 1023px) {
	.c-about {
		padding: 3rem 0;
	}

	.c-about__main {
		grid-template-columns: 1fr;
		gap: 2rem;
		margin-bottom: 3rem;
	}

	.c-about__image {
		order: -1;
	}

	.c-about__features {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* RWD – Mobile */
@media (max-width: 767px) {
	.c-about {
		padding: 2rem 0;
	}

	.c-about__main {
		margin-bottom: 2rem;
	}

	.c-about__title {
		margin-bottom: 0.75rem;
	}

	.c-about__feature {
		padding: 1.5rem;
	}

	.c-about__feature-icon svg {
		width: 56px;
		height: 56px;
	}
}

/* ==========================================================================
   Sekcja Usługi (BEM) - Karuzela
   ========================================================================== */
.c-services {
	background: var(--white);
	padding: 4rem 0;
}

.c-services__inner {
	width: 100%;
}

.c-services__header {
	text-align: center;
	margin-bottom: 3rem;
}

.c-services__preheader {
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.c-services__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	color: var(--text-dark);
	margin: 0 0 1rem 0;
}

.c-services__description {
	font-size: 1.125rem;
	color: var(--text-muted);
	margin: 0;
}

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

.c-services__item {
	background: var(--white);
	border-radius: 8px;
	overflow: visible;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform var(--transition-base), box-shadow var(--transition-base);
	display: flex;
	flex-direction: column;
	position: relative;
}

.c-services__item:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.c-services__image {
	position: relative;
	width: 100%;
	padding-top: 60%;
	overflow: visible;
	background: var(--bg-light);
	margin-bottom: 32px;
	z-index: 1;
}

.c-services__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.c-services__icon {
	position: absolute;
	bottom: -32px;
	left: 50%;
	transform: translateX(-50%);
	width: 64px;
	height: 64px;
	background: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	color: var(--primary);
	padding: 12px;
	z-index: 10;
	pointer-events: none;
}

.c-services__icon-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.c-services__content {
	padding: 3rem 2rem 2rem;
	padding-top: 3rem;
	text-align: center;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.c-services__item-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0 0 1rem 0;
}

.c-services__item-text {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--text-muted);
	margin: 0 0 1.5rem 0;
	flex: 1;
}

.c-services__link {
	display: inline-block;
	color: var(--primary);
	font-weight: 600;
	text-decoration: none;
	transition: color var(--transition-base);
	margin-top: auto;
}

.c-services__link:hover {
	color: var(--secondary);
	text-decoration: none;
}

.c-services__footer {
	text-align: center;
	margin-top: 3rem;
}

.c-services__more-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--btn-min-height);
	padding: var(--btn-padding-y) var(--btn-padding-x);
	background: var(--primary);
	color: var(--white);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	text-decoration: none;
	border-radius: var(--btn-border-radius);
	transition: all var(--transition-base);
	border: none;
}

.c-services__more-button:hover {
	background: var(--secondary);
	color: var(--white);
	text-decoration: none;
	transform: translateY(-1px);
}

.c-services__empty {
	text-align: center;
	color: var(--text-muted);
	padding: 2rem 0;
}

/* Responsywność dla gridu usług */
@media (max-width: 1023px) {
	.c-services__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.c-services__grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Siatka Usług (Archiwum) - BEM
   ========================================================================== */
.pcoi-archive-header {
	text-align: center;
	margin-bottom: 3rem;
}

.pcoi-archive-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	color: var(--text-dark);
	margin: 0 0 1rem 0;
}

.pcoi-archive-description {
	font-size: 1.125rem;
	color: var(--text-muted);
	line-height: 1.6;
}

.c-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.c-services-grid__item {
	background: var(--white);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform var(--transition-base), box-shadow var(--transition-base);
	display: flex;
	flex-direction: column;
}

.c-services-grid__item:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.c-services-grid__image {
	position: relative;
	width: 100%;
	padding-top: 60%;
	overflow: visible;
	background: var(--bg-light);
	margin-bottom: 32px;
}

.c-services-grid__image-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.c-services-grid__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.c-services-grid__icon {
	position: absolute;
	bottom: -32px;
	left: 50%;
	transform: translateX(-50%);
	width: 64px;
	height: 64px;
	background: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	color: var(--primary);
	padding: 12px;
	z-index: 10;
	pointer-events: none;
}

.c-services-grid__icon-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.c-services-grid__content {
	padding: 3rem 2rem 2rem;
	text-align: center;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.c-services-grid__title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0 0 1rem 0;
}

.c-services-grid__title a {
	color: var(--text-dark);
	text-decoration: none;
	transition: color var(--transition-base);
}

.c-services-grid__title a:hover {
	color: var(--primary);
	text-decoration: none;
}

.c-services-grid__text {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--text-muted);
	margin: 0 0 1.5rem 0;
	flex: 1;
}

.c-services-grid__link {
	display: inline-block;
	color: var(--primary);
	font-weight: 600;
	text-decoration: none;
	transition: color var(--transition-base);
	margin-top: auto;
}

.c-services-grid__link:hover {
	color: var(--secondary);
	text-decoration: none;
}

/* RWD – Tablet */
@media (max-width: 1023px) {
	.c-services-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 1.5rem;
	}
}

/* RWD – Mobile */
@media (max-width: 767px) {
	.pcoi-archive-header {
		margin-bottom: 2rem;
	}

	.c-services-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.c-services-grid__content {
		padding: 2.5rem 1.5rem 1.5rem;
	}
}

/* RWD – Tablet */
@media (max-width: 1023px) {
	.c-services {
		padding: 3rem 0;
	}

	.c-services__content {
		padding: 2.5rem 1.5rem 1.5rem;
	}
}

/* RWD – Mobile */
@media (max-width: 767px) {
	.c-services {
		padding: 2rem 0;
	}

	.c-services__header {
		margin-bottom: 2rem;
	}

	.c-services__content {
		padding: 2.5rem 1.5rem 1.5rem;
	}

}

/* ==========================================================================
   Sekcje front-page (placeholdery)
   ========================================================================== */
.pcoi-section {
	padding: 3rem 0;
}

.pcoi-section--hero { padding-top: 0; }

/* ==========================================================================
   Main content
   ========================================================================== */
.pcoi-main {
	min-height: 60vh;
	padding: 0 0 2rem 0;
}

.pcoi-entry {
	padding: 2rem 0;
}

.pcoi-entry__header {
	margin-bottom: 1.5rem;
}

.pcoi-entry__title {
	margin-bottom: 1rem;
}

.pcoi-entry__content {
	padding: 0;
}

.pcoi-entry--usluga .pcoi-entry__icon {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1.5rem;
	color: var(--primary);
}

.pcoi-entry--usluga .pcoi-entry__icon svg {
	width: 80px;
	height: 80px;
	display: block;
	color: var(--primary);
}

.pcoi-entry--usluga .pcoi-entry__icon svg path,
.pcoi-entry--usluga .pcoi-entry__icon svg circle,
.pcoi-entry--usluga .pcoi-entry__icon svg line,
.pcoi-entry--usluga .pcoi-entry__icon svg polyline,
.pcoi-entry--usluga .pcoi-entry__icon svg polygon,
.pcoi-entry--usluga .pcoi-entry__icon svg rect {
	stroke: currentColor;
	fill: none;
}

.pcoi-entry--usluga .pcoi-entry__icon svg [fill="currentColor"],
.pcoi-entry--usluga .pcoi-entry__icon svg [fill="black"] {
	fill: currentColor;
}

.pcoi-entry__excerpt {
	font-size: 1.125rem;
	color: var(--text-muted);
	margin: 0 0 1rem 0;
	line-height: 1.6;
}

.pcoi-no-results {
	padding: 3rem 0;
	text-align: center;
}

/* ==========================================================================
   Sekcja Portfolio/Realizacje - BEM
   ========================================================================== */
.c-portfolio {
	padding: 4rem 0;
	background: var(--bg-light);
}

/* Wariant karuzeli na stronie głównej – ciemne tło + obraz */
.c-portfolio--carousel {
	position: relative;
	background: #2c2218;
	padding: 4rem 0;
	overflow: hidden;
}

.c-portfolio--carousel .c-portfolio__inner {
	position: relative;
	z-index: 2;
}

.c-portfolio__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: var(--pcoi-portfolio-bg, none);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

.c-portfolio__overlay-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(44, 34, 24, 0.85);
	z-index: 1;
}

.c-portfolio--carousel .c-portfolio__preheader {
	color: var(--primary);
}

.c-portfolio--carousel .c-portfolio__title {
	color: var(--white);
}

.c-portfolio--carousel .c-portfolio__description {
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 1.5rem;
}

.c-portfolio--carousel .c-portfolio__header::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: var(--primary);
	margin-top: 1rem;
	margin-bottom: 2rem;
}

.c-portfolio__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.c-portfolio__preheader {
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.c-portfolio__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	color: var(--text-dark);
	margin: 0 0 1rem 0;
}

.c-portfolio__description {
	font-size: 1.125rem;
	color: var(--text-muted);
	margin: 0 0 2rem 0;
}

/* Karuzela realizacji (strona główna) – jak na grafice referencyjnej */
.c-portfolio__carousel-wrap {
	margin-bottom: 0;
}

.c-portfolio__carousel {
	position: relative;
	overflow: hidden;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.c-portfolio__track {
	display: flex;
	gap: 0;
	transition: transform 0.6s ease-in-out;
	will-change: transform;
	flex-wrap: nowrap;
}

.c-portfolio__slide {
	flex: 0 0 25%;
	min-width: 0;
}

/* Slajd kwadratowy (wyższy) */
.c-portfolio__slide-image {
	position: relative;
	width: 100%;
	padding-top: 100%;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.4);
	border-radius: 0;
}

.c-portfolio__slide-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.c-portfolio__slide-image:hover .c-portfolio__slide-img {
	transform: scale(1.05);
}

/* Overlay wysuwany przy hover – nazwa + przycisk do karty realizacji */
.c-portfolio__slide-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.88);
	padding: 1.5rem 1.25rem;
	transform: translateY(100%);
	transition: transform 0.35s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 1rem;
}

.c-portfolio__slide-image:hover .c-portfolio__slide-overlay {
	transform: translateY(0);
}

.c-portfolio__slide-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--white);
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.3;
}

.c-portfolio__slide-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--btn-min-height);
	padding: var(--btn-padding-y) var(--btn-padding-x);
	background: var(--primary);
	color: var(--white);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	text-decoration: none;
	border-radius: var(--btn-border-radius);
	transition: background var(--transition-base), color var(--transition-base);
	white-space: nowrap;
	border: none;
	cursor: pointer;
}

.c-portfolio__slide-btn:hover {
	background: var(--white);
	color: var(--secondary);
	text-decoration: none;
}

/* Stopka karuzeli: przycisk na środku, strzałki po prawej */
.c-portfolio--carousel .c-portfolio__footer--carousel {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.5rem;
	padding: 0 0.5rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.c-portfolio__nav-group {
	position: absolute;
	right: 0;
	display: flex;
	gap: 0.5rem;
}

.c-portfolio--carousel .c-portfolio__nav {
	position: static;
	transform: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #3d3630;
	border: none;
	color: rgba(255, 255, 255, 0.9);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.c-portfolio--carousel .c-portfolio__nav:hover {
	background: #4a423b;
	color: var(--white);
}

.c-portfolio__nav svg {
	width: 22px;
	height: 22px;
}

.c-portfolio--carousel .c-portfolio__more-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--btn-min-height);
	padding: var(--btn-padding-y) var(--btn-padding-x);
	background: var(--primary);
	color: var(--white);
	font-size: var(--btn-font-size);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.c-portfolio--carousel .c-portfolio__more-button:hover {
	background: var(--white);
	color: var(--secondary);
}

.c-portfolio--carousel .c-portfolio__empty {
	color: rgba(255, 255, 255, 0.8);
}

.c-portfolio__filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--border-color);
}

.c-portfolio__filter {
	padding: 0.5rem 1.5rem;
	background: transparent;
	border: 2px solid var(--border-color);
	color: var(--text-dark);
	font-weight: 600;
	font-size: 0.9375rem;
	border-radius: 4px;
	cursor: pointer;
	transition: all var(--transition-base);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.c-portfolio__filter:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.c-portfolio__filter.is-active {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
}

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

.c-portfolio__item {
	background: var(--white);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform var(--transition-base), box-shadow var(--transition-base);
	opacity: 1;
	transform: scale(1);
}

.c-portfolio__item.is-hidden {
	display: none;
}

.c-portfolio__item:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.c-portfolio__image {
	position: relative;
	width: 100%;
	padding-top: 75%;
	overflow: hidden;
	background: var(--bg-light);
}

.c-portfolio__image-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.c-portfolio__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-base);
}

.c-portfolio__item:hover .c-portfolio__img {
	transform: scale(1.05);
}

.c-portfolio__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity var(--transition-base);
}

.c-portfolio__item:hover .c-portfolio__overlay {
	opacity: 1;
}

.c-portfolio__actions {
	display: flex;
	gap: 1rem;
}

.c-portfolio__action {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--white);
	color: var(--text-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition-base);
	text-decoration: none;
}

.c-portfolio__action:hover {
	background: var(--primary);
	color: var(--white);
	transform: scale(1.1);
}

.c-portfolio__action svg {
	width: 24px;
	height: 24px;
}

.c-portfolio__content {
	padding: 1.5rem;
	text-align: center;
}

.c-portfolio__item-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0 0 0.5rem 0;
}

.c-portfolio__item-title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition-base);
}

.c-portfolio__item-title a:hover {
	color: var(--primary);
}

.c-portfolio__categories {
	font-size: 0.875rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.c-portfolio__footer {
	text-align: center;
	margin-top: 3rem;
}

.c-portfolio__more-button {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	background: var(--primary);
	color: var(--white);
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	border-radius: 4px;
	transition: all var(--transition-base);
	border: none;
}

.c-portfolio__more-button:hover {
	background: var(--secondary);
	color: var(--white);
	text-decoration: none;
	transform: translateY(-1px);
}

.c-portfolio__empty {
	text-align: center;
	color: var(--text-muted);
	padding: 2rem 0;
}

/* Galeria zdjęć w pojedynczej realizacji */
.pcoi-entry--realizacja .pcoi-entry__gallery,
.pcoi-entry--realizacja .pcoi-entry__thumbnail {
	margin-bottom: 3rem;
}

.pcoi-entry--realizacja .pcoi-entry__thumbnail {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.pcoi-entry--realizacja .pcoi-entry__thumbnail img {
	max-height: 380px;
	width: auto;
	height: auto;
	max-width: 100%;
	display: block;
	object-fit: contain;
	object-position: center;
	margin: 0 auto;
}

.pcoi-entry--realizacja .pcoi-entry__gallery-main {
	position: relative;
	width: 100%;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1rem;
	border-radius: 8px;
	overflow: hidden;
	background: var(--bg-light);
}

.pcoi-entry--realizacja .pcoi-entry__gallery-main-img {
	width: 100%;
	max-height: 380px;
	height: auto;
	display: block;
	object-fit: contain;
	object-position: center;
}

.pcoi-entry--realizacja .pcoi-entry__gallery-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid var(--border-color);
	color: var(--text-dark);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
	transition: all var(--transition-base);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pcoi-entry--realizacja .pcoi-entry__gallery-nav:hover {
	background: var(--primary);
	color: var(--white);
	border-color: var(--primary);
}

.pcoi-entry--realizacja .pcoi-entry__gallery-nav--prev {
	left: 1rem;
}

.pcoi-entry--realizacja .pcoi-entry__gallery-nav--next {
	right: 1rem;
}

.pcoi-entry--realizacja .pcoi-entry__gallery-nav svg {
	width: 24px;
	height: 24px;
}

.pcoi-entry--realizacja .pcoi-entry__gallery-thumbnails {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

.pcoi-entry--realizacja .pcoi-entry__gallery-thumb {
	width: 80px;
	height: 80px;
	border-radius: 4px;
	overflow: hidden;
	border: 3px solid transparent;
	cursor: pointer;
	transition: all var(--transition-base);
	background: var(--bg-light);
	padding: 0;
}

.pcoi-entry--realizacja .pcoi-entry__gallery-thumb:hover,
.pcoi-entry--realizacja .pcoi-entry__gallery-thumb.is-active {
	border-color: var(--primary);
}

.pcoi-entry--realizacja .pcoi-entry__gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pcoi-entry--realizacja .pcoi-entry__categories {
	font-size: 0.875rem;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
	font-weight: 600;
}

/* Responsywność Portfolio */
@media (max-width: 1023px) {
	.c-portfolio__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.c-portfolio__slide {
		flex: 0 0 50%;
	}
}

@media (max-width: 767px) {
	.c-portfolio {
		padding: 2rem 0;
	}

	.c-portfolio__filters {
		gap: 0.5rem;
		margin-bottom: 2rem;
	}

	.c-portfolio__filter {
		padding: 0.375rem 1rem;
		font-size: 0.875rem;
	}

	.c-portfolio__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.c-portfolio__slide {
		flex: 0 0 100%;
	}

	.c-portfolio--carousel .c-portfolio__footer--carousel {
		flex-wrap: wrap;
		justify-content: center;
	}

	.c-portfolio__more-button {
		order: 1;
		width: 100%;
		text-align: center;
	}

	.c-portfolio__nav-group {
		position: static;
		order: 2;
	}

	.pcoi-entry--realizacja .pcoi-entry__gallery-thumb {
		width: 60px;
		height: 60px;
	}
}

/* ==========================================================================
   Sekcja Opinie (Trustindex / shortcode)
   ========================================================================== */
.pcoi-section.c-opinie {
	padding: 4rem 0;
	background-color: var(--bg-light);
}

.c-opinie__inner {
	max-width: var(--container-max);
	margin: 0 auto;
}

.c-opinie__header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.c-opinie__preheader {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.c-opinie__title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0;
	line-height: 1.25;
}

.c-opinie__content {
	min-height: 120px;
}

/* Trustindex / inne widgety – podstawowe dopasowanie */
.c-opinie__content iframe {
	max-width: 100%;
}

/* ==========================================================================
   Sekcja FAQ – jedna kolumna, brązowe tło, zdjęcie w tle
   ========================================================================== */
.pcoi-section.c-faq {
	position: relative;
	padding: 4rem 0;
	background-color: #2c2218;
	color: var(--white);
	overflow: hidden;
}

.pcoi-section.c-faq * {
	color: inherit;
}

.pcoi-section.c-faq .c-faq__answer,
.pcoi-section.c-faq .c-faq__answer * {
	color: rgba(255, 255, 255, 0.95) !important;
}

.c-faq__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.c-faq__overlay {
	position: absolute;
	inset: 0;
	background: rgba(44, 34, 24, 0.92);
}

.c-faq__inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin: 0 auto;
}

.c-faq__header {
	text-align: center;
	margin-bottom: 1rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.c-faq__preheader {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.c-faq__title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--white);
	margin: 0 0 0.75rem;
	line-height: 1.25;
}

.c-faq__description {
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

.c-faq__list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.c-faq__item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.c-faq__item:last-child {
	border-bottom: none;
}

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

.c-faq__question:hover {
	color: var(--primary);
}

.c-faq__question-text {
	flex: 1;
}

.c-faq__icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	line-height: 1;
	font-weight: 400;
	transition: transform var(--transition-base);
}

.c-faq__question[aria-expanded="true"] .c-faq__icon {
	transform: rotate(45deg);
}

.c-faq__answer-wrap {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
	overflow: hidden;
	max-height: 0;
}

.c-faq__answer-wrap.is-open {
	grid-template-rows: 1fr;
	max-height: none;
}

.c-faq__answer {
	overflow: hidden;
	min-height: 0;
}

.c-faq__answer-wrap .c-faq__answer {
	padding: 0 0 1.25rem;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.95) !important;
}

.c-faq__answer p,
.c-faq__answer-wrap .c-faq__answer p {
	color: rgba(255, 255, 255, 0.95) !important;
	margin: 0 0 0.75rem;
}

.c-faq__answer p:last-child,
.c-faq__answer-wrap .c-faq__answer p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   Sekcja Liczniki (statystyki z animacją)
   ========================================================================== */
.pcoi-section.c-counters {
	position: relative;
	padding: 4rem 0;
	background-color: #2c2218;
	color: var(--white);
	overflow: hidden;
}

.pcoi-section.c-counters * {
	color: inherit;
}

.c-counters__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: blur(4px);
	transform: scale(1.1);
}

.c-counters__overlay {
	position: absolute;
	inset: 0;
	background: rgba(44, 34, 24, 0.92);
}

.c-counters__inner {
	position: relative;
	z-index: 1;
}

.c-counters__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
	align-items: start;
}

@media (min-width: 768px) {
	.c-counters__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 2.5rem;
	}
}

.c-counters__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1rem;
}

.c-counters__icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #B29151;
	flex-shrink: 0;
	margin-bottom: 0.5rem;
}

.c-counters__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	/* Ikona w kolorze złotym #B29151 – bez tła, żeby nie było kwadratu */
	filter: brightness(0) saturate(100%) invert(65%) sepia(28%) saturate(600%) hue-rotate(5deg) brightness(0.92);
}

.c-counters__icon svg {
	width: 100%;
	height: 100%;
	stroke: #B29151;
	fill: none;
	stroke-width: 2;
}

.c-counters__icon svg * {
	stroke: #B29151;
	fill: none;
}

.c-counters__value-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.c-counters__value {
	display: block;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--white);
}

@media (min-width: 768px) {
	.c-counters__value {
		font-size: 2.5rem;
	}
}

.c-counters__label {
	font-size: 0.9375rem;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.9);
	margin-top: 0.5rem;
}

@media (min-width: 768px) {
	.c-counters__label {
		font-size: 1rem;
	}
}

.c-counters__empty {
	text-align: center;
	padding: 2rem;
	color: rgba(255, 255, 255, 0.7);
	font-size: 1rem;
}

/* ==========================================================================
   Sekcja Kontakt (formularz + zdjęcie) – 2 kolumny
   ========================================================================== */
.pcoi-section.c-contact {
	padding: 4rem 0;
	background-color: #f2f2f2;
}

.c-contact__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	max-width: 1200px;
	margin: 0 auto;
	background: var(--white);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	overflow: hidden;
}

.c-contact__col {
	min-height: 320px;
}

.c-contact__col--image {
	position: relative;
}

.c-contact__image-wrap,
.c-contact__image-placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.c-contact__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.c-contact__image-placeholder {
	background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.c-contact__placeholder-text {
	font-size: 0.875rem;
	color: var(--text-muted);
	text-align: center;
}

.c-contact__col--form {
	padding: 2.5rem 2.5rem 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.c-contact__header {
	margin-bottom: 1.5rem;
}

.c-contact__preheader {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.c-contact__title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.25;
	margin: 0;
}

.c-contact__form {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.25rem;
}

.c-contact__row {
	display: flex;
	gap: 1.25rem;
	flex: 1 1 100%;
}

.c-contact__field {
	flex: 1 1 0;
	min-width: 0;
	margin: 0;
}

.c-contact__field--full {
	flex: 1 1 100%;
}

.c-contact__field label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 0.35rem;
}

.c-contact__field .required {
	color: var(--primary);
}

.c-contact__input,
.c-contact__textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	background: #f9f9f9;
	transition: border-color var(--transition-base), background-color var(--transition-base);
}

.c-contact__input:focus,
.c-contact__textarea:focus {
	outline: none;
	border-color: var(--primary);
	background: var(--white);
}

.c-contact__textarea {
	resize: vertical;
	min-height: 120px;
}

.c-contact__submit-wrap {
	flex: 1 1 100%;
	margin: 0;
	margin-top: 0.25rem;
}

.c-contact__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--btn-min-height);
	padding: var(--btn-padding-y) var(--btn-padding-x);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	color: var(--white);
	background-color: var(--primary);
	border: none;
	border-radius: var(--btn-border-radius);
	cursor: pointer;
	transition: background-color var(--transition-base), transform var(--transition-base);
}

.c-contact__submit:hover {
	background-color: var(--secondary);
	transform: translateY(-1px);
}

.c-contact__success {
	padding: 1.25rem 1rem;
	background: rgba(178, 145, 81, 0.12);
	border: 1px solid var(--primary);
	border-radius: 6px;
	color: var(--text-dark);
	font-weight: 500;
}

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

	.c-contact__col--image {
		min-height: 240px;
	}

	.c-contact__col--form {
		padding: 2rem 1.5rem;
	}

	.c-contact__row {
		flex-direction: column;
		gap: 0;
	}

	.c-contact__form {
		gap: 1rem;
	}
}

/* ==========================================================================
   Strona O nas (page-o-nas.php) – sekcja 1 (intro) i 2 (wartości)
   ========================================================================== */
.pcoi-onas {
	background: var(--bg-light);
	padding: 4rem 0;
}

.pcoi-onas__inner {
	max-width: var(--container-max);
	margin: 0 auto;
}

.pcoi-onas__grid {
	display: grid;
	gap: 3rem;
	align-items: start;
}

.pcoi-onas__grid--text-left {
	grid-template-columns: 1fr 1fr;
}

.pcoi-onas__preheader {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.pcoi-onas__title {
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.25;
	margin: 0 0 1.25rem;
}

.pcoi-onas__lead {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-dark);
	margin-bottom: 1.5rem;
}

.pcoi-onas__lead p {
	margin: 0 0 1rem;
}

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

.pcoi-onas__quote {
	margin: 1.5rem 0;
	padding: 0 0 0 1.25rem;
	border-left: 4px solid var(--primary);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text-dark);
	font-style: italic;
}

.pcoi-onas__quote p {
	margin: 0 0 0.5rem;
}

.pcoi-onas__quote-author {
	display: block;
	font-size: 0.9375rem;
	font-style: normal;
	color: var(--primary);
	font-weight: 600;
	margin-top: 0.5rem;
}

.pcoi-onas__cta {
	margin: 1.5rem 0 0;
}

.pcoi-onas__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--btn-min-height);
	padding: var(--btn-padding-y) var(--btn-padding-x);
	background: var(--primary);
	color: var(--white);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	text-decoration: none;
	border-radius: var(--btn-border-radius);
	transition: background-color var(--transition-base), transform var(--transition-base);
}

.pcoi-onas__btn:hover {
	background: var(--secondary);
	color: var(--white);
	text-decoration: none;
	transform: translateY(-1px);
}

/* Sekcja 1 – media (zdjęcie + nakładka) */
.pcoi-onas__media {
	position: relative;
}

/* Jedno zdjęcie / mapa – kwadratowe, wyśrodkowane */
.pcoi-onas__media--single {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.pcoi-onas__media--single .pcoi-onas__map-wrap {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
}

.pcoi-onas__media--single .pcoi-onas__media-main,
.pcoi-onas__media--single .pcoi-onas__media-placeholder {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	aspect-ratio: 1 / 1;
}

.pcoi-onas__media--single .pcoi-onas__media-placeholder {
	min-height: 0;
}

.pcoi-onas__media-main--square {
	overflow: hidden;
	border-radius: 8px;
}

.pcoi-onas__media-main--square .pcoi-onas__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pcoi-onas__media-main {
	position: relative;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	background: var(--border-color);
}

.pcoi-onas__img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: middle;
}

.pcoi-onas__media-overlay {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	width: 40%;
	max-width: 220px;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.pcoi-onas__media-overlay img {
	width: 100%;
	height: auto;
	display: block;
}

.pcoi-onas__media-placeholder {
	min-height: 280px;
	background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 100%);
	border-radius: 8px;
}

/* Mapa zasięgu z animacją Ken Burns (prostokątna, wyśrodkowana) */
.pcoi-onas__map-wrap {
	position: relative;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	background: var(--border-color);
	border: 2px solid var(--primary);
	aspect-ratio: 16 / 9;
	min-height: 0;
	cursor: grab;
	touch-action: none;
	user-select: none;
}

.pcoi-onas__map-wrap:active {
	cursor: grabbing;
}

.pcoi-onas__map-kenburns {
	position: absolute;
	left: -30%;
	top: -30%;
	width: 160%;
	height: 160%;
	animation: pcoi-kenburns 25s ease-in-out infinite;
	will-change: transform;
}

.pcoi-onas__map-wrap.is-interacting .pcoi-onas__map-kenburns {
	animation-play-state: paused;
}

.pcoi-onas__map-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

@keyframes pcoi-kenburns {
	0% {
		transform: scale(0.85) translate(0%, 0%);
	}
	20% {
		transform: scale(0.9) translate(-12%, -10%);
	}
	40% {
		transform: scale(0.88) translate(12%, -8%);
	}
	60% {
		transform: scale(0.92) translate(-8%, 12%);
	}
	80% {
		transform: scale(0.87) translate(10%, 10%);
	}
	100% {
		transform: scale(0.85) translate(0%, 0%);
	}
}

/* Sekcja 2 – zdjęcia lewo, wartości prawo */
.pcoi-onas__grid--images-left {
	grid-template-columns: 1fr 1fr;
}

.pcoi-onas__gallery {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.pcoi-onas__gallery-img {
	width: 100%;
	overflow: hidden;
}

.pcoi-onas__gallery-img img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: middle;
}

.pcoi-onas__gallery-placeholder {
	min-height: 280px;
	background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 100%);
}

/* Sekcja wartości – jedno zdjęcie: zaokrąglone rogi, wyśrodkowane */
.pcoi-onas--values .pcoi-onas__gallery {
	align-items: center;
	max-width: 100%;
}

.pcoi-onas--values .pcoi-onas__gallery-img {
	max-width: 420px;
	margin: 0 auto;
	border-radius: 8px;
	overflow: hidden;
}

.pcoi-onas--values .pcoi-onas__gallery-placeholder {
	border-radius: 8px;
	max-width: 420px;
	margin: 0 auto;
}

.pcoi-onas__values-content .pcoi-onas__title {
	margin-bottom: 1.5rem;
}

.pcoi-onas__boxes {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.pcoi-onas__box {
	background: var(--white);
	padding: 1.5rem 1.75rem;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	border: 1px solid var(--border-color);
}

.pcoi-onas__box-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0 0 0.75rem;
}

.pcoi-onas__box-text {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--text-muted);
}

.pcoi-onas__box-text p {
	margin: 0 0 0.5rem;
}

.pcoi-onas__box-text p:last-child {
	margin-bottom: 0;
}

@media (max-width: 900px) {
	.pcoi-onas__grid--text-left,
	.pcoi-onas__grid--images-left {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.pcoi-onas--intro .pcoi-onas__content {
		order: 1;
	}

	.pcoi-onas--intro .pcoi-onas__media {
		order: 2;
	}

	.pcoi-onas--values .pcoi-onas__gallery {
		order: 1;
	}

	.pcoi-onas--values .pcoi-onas__values-content {
		order: 2;
	}

	.pcoi-onas__media-overlay {
		width: 45%;
		max-width: 180px;
	}
}

@media (max-width: 767px) {
	.pcoi-onas {
		padding: 2.5rem 0;
	}

	.pcoi-onas__box {
		padding: 1.25rem 1.5rem;
	}
}

/* ==========================================================================
   Szablon pojedynczej usługi – 2 kolumny + sidebar „Pozostałe usługi”
   ========================================================================== */
.c-usluga {
	padding: 2rem 0 3rem;
}

.c-usluga__wrap {
	display: grid;
	grid-template-columns: 70% 30%;
	gap: 2.5rem;
	align-items: start;
}

.c-usluga__main {
	min-width: 0;
}

.c-usluga__hero {
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 1.5rem;
	background: var(--border-color);
}

.c-usluga__hero-img {
	width: 100%;
	height: auto;
	max-height: 400px;
	object-fit: cover;
	display: block;
	vertical-align: middle;
}

.c-usluga__header {
	margin-bottom: 1.5rem;
}

.c-usluga__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.25;
	margin: 0 0 0.75rem;
}

.c-usluga__excerpt {
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--text-muted);
	margin: 0 0 1rem;
}

.c-usluga__content {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-dark);
}

.c-usluga__content h1 {
	font-size: clamp(1.5rem, 3vw, 1.875rem);
	font-weight: 700;
	margin: 0 0 1rem;
	line-height: 1.3;
}

.c-usluga__content h2 {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 600;
	margin: 2rem 0 1rem;
	line-height: 1.3;
}

.c-usluga__content h3 {
	font-size: clamp(1.125rem, 2vw, 1.25rem);
	font-weight: 600;
	margin: 1.5rem 0 0.75rem;
	line-height: 1.4;
}

.c-usluga__content h4,
.c-usluga__content h5,
.c-usluga__content h6 {
	font-size: 1.125rem;
	font-weight: 600;
	margin: 1.25rem 0 0.75rem;
	line-height: 1.4;
}

.c-usluga__content p {
	margin: 0 0 1rem;
}

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

.c-usluga__gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-top: 2rem;
}

.c-usluga__gallery-item {
	border-radius: 8px;
	overflow: hidden;
	background: var(--border-color);
}

.c-usluga__gallery-item img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: middle;
}

/* Sidebar – Pozostałe usługi (przyklejony przy przewijaniu) */
.c-usluga__sidebar {
	position: -webkit-sticky;
	position: sticky;
	top: 5.5rem;
	z-index: 10;
	align-self: start;
}

.c-usluga__sidebar-box {
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.c-usluga__sidebar-title {
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-dark);
	margin: 0 0 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--border-color);
}

.c-usluga__nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.c-usluga__nav-item {
	margin: 0 0 0.5rem;
}

.c-usluga__nav-item:last-child {
	margin-bottom: 0;
}

.c-usluga__nav-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	border-radius: 6px;
	background: var(--white);
	border: 1px solid var(--border-color);
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9375rem;
	transition: background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}

.c-usluga__nav-link:hover {
	background: rgba(178, 145, 81, 0.08);
	border-color: var(--primary);
	color: var(--text-dark);
	text-decoration: none;
}

.c-usluga__nav-link.is-current {
	background: rgba(178, 145, 81, 0.12);
	border-color: var(--primary);
	color: var(--secondary);
}

.c-usluga__nav-text {
	flex: 1;
	min-width: 0;
}

.c-usluga__nav-arrow {
	flex-shrink: 0;
	color: var(--primary);
	font-size: 1.125rem;
}

.c-usluga__nav-link.is-current .c-usluga__nav-arrow {
	color: var(--secondary);
}

@media (max-width: 900px) {
	.c-usluga__wrap {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.c-usluga__sidebar {
		position: static;
		order: -1;
	}

	.c-usluga__sidebar-box {
		max-width: 400px;
	}

	.c-usluga__gallery {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Geodezja Lębork – Strona z naprzemiennym układem treści i grafiki
   ========================================================================== */

.pcoi-page-geodezja-lebork {
	padding-top: 2rem;
	padding-bottom: 4rem;
}

.pcoi-geodezja-lebork__hero {
	padding: 3rem 0;
	text-align: center;
}

.pcoi-geodezja-lebork__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.25;
	margin: 0 0 2rem;
}

.pcoi-geodezja-lebork__hero-image {
	max-width: 800px;
	margin: 0 auto 2rem;
	border-radius: 8px;
	overflow: hidden;
}

.pcoi-geodezja-lebork__hero-image img {
	width: 100%;
	height: auto;
	display: block;
}

.pcoi-geodezja-lebork__intro {
	max-width: 900px;
	margin: 0 auto;
	font-size: 1.125rem;
	line-height: 1.75;
	color: var(--text-dark);
}

.pcoi-geodezja-lebork__intro p {
	margin: 0 0 1.5rem;
}

.pcoi-geodezja-lebork__intro p:last-child {
	margin-bottom: 0;
}

.pcoi-geodezja-lebork__section {
	padding: 4rem 0;
}

.pcoi-geodezja-lebork__section:nth-child(even) {
	background-color: var(--bg-light);
}

.pcoi-geodezja-lebork__section-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.pcoi-geodezja-lebork__section--content-left .pcoi-geodezja-lebork__section-inner {
	grid-template-columns: 1fr 1fr;
}

.pcoi-geodezja-lebork__section--image-left .pcoi-geodezja-lebork__section-inner {
	grid-template-columns: 1fr 1fr;
}

.pcoi-geodezja-lebork__section--image-left .pcoi-geodezja-lebork__image {
	order: -1;
}

.pcoi-geodezja-lebork__content {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--text-dark);
}

.pcoi-geodezja-lebork__content h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.3;
	margin: 0 0 1.5rem;
}

.pcoi-geodezja-lebork__content h3 {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 600;
	color: var(--text-dark);
	line-height: 1.4;
	margin: 0 0 1rem;
}

.pcoi-geodezja-lebork__content p {
	margin: 0 0 1.25rem;
}

.pcoi-geodezja-lebork__content p:last-child {
	margin-bottom: 0;
}

.pcoi-geodezja-lebork__image {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 8px;
	overflow: hidden;
	background: var(--border-color);
}

.pcoi-geodezja-lebork__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pcoi-geodezja-lebork__image-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 100%);
	color: var(--text-muted);
	font-size: 0.9375rem;
}

.pcoi-geodezja-lebork__faq {
	padding: 4rem 0;
	background-color: var(--bg-light);
}

.pcoi-geodezja-lebork__faq h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.3;
	margin: 0 0 1rem;
	text-align: center;
}

.pcoi-geodezja-lebork__faq-intro {
	max-width: 800px;
	margin: 0 auto 2.5rem;
	text-align: center;
	font-size: 1.125rem;
	line-height: 1.75;
	color: var(--text-dark);
}

.pcoi-geodezja-lebork__faq-list {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.pcoi-geodezja-lebork__faq-item {
	background: var(--white);
	border-radius: 8px;
	padding: 1.5rem 2rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	border: 1px solid var(--border-color);
}

.pcoi-geodezja-lebork__faq-item h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0 0 1rem;
	line-height: 1.4;
}

.pcoi-geodezja-lebork__faq-answer {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--text-dark);
}

.pcoi-geodezja-lebork__faq-answer p {
	margin: 0;
}

@media (max-width: 900px) {
	.pcoi-geodezja-lebork__section-inner,
	.pcoi-geodezja-lebork__section--content-left .pcoi-geodezja-lebork__section-inner,
	.pcoi-geodezja-lebork__section--image-left .pcoi-geodezja-lebork__section-inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.pcoi-geodezja-lebork__section--image-left .pcoi-geodezja-lebork__image {
		order: 0;
	}

	.pcoi-geodezja-lebork__hero {
		padding: 2rem 0;
	}

	.pcoi-geodezja-lebork__section {
		padding: 3rem 0;
	}

	.pcoi-geodezja-lebork__faq {
		padding: 3rem 0;
	}

	.pcoi-geodezja-lebork__faq-item {
		padding: 1.25rem 1.5rem;
	}
}
