		/* === RESET & BASE === */
		*, *::before, *::after {
			box-sizing: border-box;
			margin: 0;
			padding: 0;
		}
		
		:root {
			--primary: #2d5a27;
			--primary-dark: #1a3d17;
			--primary-light: #4a7c42;
			--accent: #c4a35a;
			--accent-light: #d4b76a;
			--bg-light: #f8f9f5;
			--bg-cream: #fdfcfa;
			--text-dark: #2c2c2c;
			--text-medium: #555;
			--text-light: #777;
			--border: #e0e5d8;
			--shadow: 0 4px 20px rgba(0,0,0,0.08);
			--shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
			--radius: 12px;
			--radius-sm: 8px;
			--transition: all 0.3s ease;
		}

		html {
			scroll-behavior: smooth;
		}

		body {
			font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
			background: var(--bg-cream);
			color: var(--text-dark);
			line-height: 1.7;
			overflow-x: hidden;
		}

		/* === HEADER / HERO === */
		.hero {
			position: relative;
			width: 100%;
			height: 100vh;
			min-height: 600px;
			overflow: hidden;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
		}

		.hero-slider {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			z-index: 0;
		}

		.hero-slider .slide {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			opacity: 0;
			transition: opacity 1.5s ease-in-out;
		}

		.hero-slider .slide.active {
			opacity: 1;
		}

		.hero-slider .slide img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

		.hero-overlay {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
	background: linear-gradient(
    rgba(255,255,255,0.34) 0%, 
    rgba(255,255,255,0.34) 100%
);
			z-index: 1;
		}

		.hero-content {
			position: relative;
			z-index: 2;
			text-align: center;
			color: #5f0808;
			padding: 0 20px;
			max-width: 900px;
			animation: fadeInUp 1s ease-out;
		}

		.hero-content h1 {
			font-size: clamp(2rem, 5vw, 3.5rem);
			font-weight: 700;
			margin-bottom: 15px;
			text-shadow: 0 2px 10px rgba(0,0,0,0.3);
			letter-spacing: 1px;
		}

		.hero-content .subtitle {
			font-size: clamp(1rem, 2.5vw, 1.4rem);
			font-weight: 300;
			margin-bottom: 30px;
			opacity: 0.95;
		}

		.hero-content .hero-badges {
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			gap: 12px;
			margin-top: 20px;
		}

		.hero-content .badge {
			background: rgba(255,255,255,0.15);
			backdrop-filter: blur(10px);
			padding: 8px 20px;
			border-radius: 50px;
			font-size: 0.9rem;
			border: 1px solid rgba(255,255,255,0.25);
			transition: var(--transition);
		}

		.hero-content .badge:hover {
			background: rgba(255,255,255,0.25);
			transform: translateY(-2px);
		}

		.scroll-down {
			position: absolute;
			bottom: 30px;
			left: 50%;
			transform: translateX(-50%);
			z-index: 2;
			color: #fff;
			font-size: 2rem;
			animation: bounce 2s infinite;
			cursor: pointer;
			text-decoration: none;
		}

		/* === NAVIGATION === */
		.nav-bar {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			z-index: 100;
			background: rgba(26,61,23,0.95);
			backdrop-filter: blur(10px);
			padding: 12px 0;
			transition: var(--transition);
		}

		.nav-bar .nav-inner {
			max-width: 1200px;
			margin: 0 auto;
			padding: 0 20px;
			display: flex;
			justify-content: space-between;
			align-items: center;
		}

		.nav-bar .logo {
			color: #fff;
			font-size: 1.3rem;
			font-weight: 700;
			text-decoration: none;
			letter-spacing: 1px;
		}

		.nav-bar .logo span {
			color: var(--accent);
		}

		.nav-links {
			display: flex;
			gap: 8px;
			list-style: none;
			flex-wrap: wrap;
		}

		.nav-links a {
			color: rgba(255,255,255,0.85);
			text-decoration: none;
			padding: 6px 14px;
			border-radius: 50px;
			font-size: 0.85rem;
			font-weight: 500;
			transition: var(--transition);
		}

		.nav-links a:hover, .nav-links a.active {
			color: #fff;
			background: rgba(196,163,90,0.3);
		}

		.mobile-toggle {
			display: none;
			background: none;
			border: none;
			color: #fff;
			font-size: 1.5rem;
			cursor: pointer;
		}

		/* === SECTIONS === */
		.section {
			padding: 80px 20px;
			max-width: 1200px;
			margin: 0 auto;
		}

		.section-title {
			text-align: center;
			margin-bottom: 50px;
		}

		.section-title h2 {
			font-size: clamp(1.8rem, 4vw, 2.5rem);
			color: var(--primary);
			margin-bottom: 12px;
			position: relative;
			display: inline-block;
		}

		.section-title h2::after {
			content: '';
			display: block;
			width: 60px;
			height: 4px;
			background: var(--accent);
			margin: 12px auto 0;
			border-radius: 2px;
		}

		.section-title p {
			color: var(--text-medium);
			max-width: 600px;
			margin: 0 auto;
		}

		/* === ABOUT === */
		.about-section {
			background: var(--bg-light);
		}

		.about-grid {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 50px;
			align-items: center;
		}

		.about-text {
			font-size: 1.05rem;
			color: var(--text-medium);
		}

		.about-text strong {
			color: var(--primary);
		}

		.about-text p {
			margin-bottom: 18px;
		}

		.about-features {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 20px;
			margin-top: 30px;
		}

		.feature-card {
			background: #fff;
			padding: 20px;
			border-radius: var(--radius-sm);
			box-shadow: var(--shadow);
			border-left: 4px solid var(--accent);
			transition: var(--transition);
		}

		.feature-card:hover {
			transform: translateY(-4px);
			box-shadow: var(--shadow-hover);
		}

		.feature-card h3 {
			color: #4D4D4D;
			font-size: 1rem;
			margin-bottom: 5px;
		}

		.feature-card p {
			font-size: 0.9rem;
				color: #4D4D4D;
			margin: 0;
		}

		.about-image {
			position: relative;
		}

		.about-image img {
			width: 100%;
			height: 100%;
			border-radius: var(--radius);
			box-shadow: var(--shadow-hover);
		}

		.about-image .experience-badge {
			position: absolute;
			bottom: -20px;
			left: -20px;
			background: var(--primary);
			color: #fff;
			padding: 20px 25px;
			border-radius: var(--radius);
			text-align: center;
			box-shadow: var(--shadow);
		}

		.experience-badge .years {
			font-size: 2.5rem;
			font-weight: 700;
			line-height: 1;
		}

		.experience-badge .label {
			font-size: 0.85rem;
			opacity: 0.9;
		}

		/* === GALLERY === */
		.gallery-section {
			background: #fff;
		}

		.gallery-grid {
			display: grid;
			grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
			gap: 15px;
		}

		.gallery-item {
			position: relative;
			overflow: hidden;
			border-radius: var(--radius-sm);
			aspect-ratio: 4/3;
			cursor: pointer;
			box-shadow: var(--shadow);
			transition: var(--transition);
		}

		.gallery-item:hover {
			transform: scale(1.02);
			box-shadow: var(--shadow-hover);
		}

		.gallery-item img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.5s ease;
		}

		.gallery-item:hover img {
			transform: scale(1.1);
		}

		.gallery-item .overlay {
			position: absolute;
			bottom: 0;
			left: 0;
			width: 100%;
			padding: 15px;
			background: linear-gradient(transparent, rgba(0,0,0,0.7));
			color: #fff;
			font-size: 0.85rem;
			opacity: 0;
			transition: opacity 0.3s ease;
		}

		.gallery-item:hover .overlay {
			opacity: 1;
		}

		/* === OFFER === */
		.offer-section {
			background: var(--bg-light);
		}

		.offer-grid {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
			gap: 25px;
		}

		.offer-card {
			background: #fff;
			border-radius: var(--radius);
			overflow: hidden;
			box-shadow: var(--shadow);
			transition: var(--transition);
		}

		.offer-card:hover {
			transform: translateY(-6px);
			box-shadow: var(--shadow-hover);
		}

		.offer-card .card-header {
			background: var(--primary);
			color: #fff;
			padding: 20px 25px;
			font-size: 1.1rem;
			font-weight: 600;
			display: flex;
			align-items: center;
			gap: 10px;
		}

		.offer-card .card-body {
			padding: 20px 25px;
		}

		.offer-card ul {
			list-style: none;
		}

		.offer-card ul li {
			padding: 6px 0;
			border-bottom: 1px solid var(--border);
			font-size: 0.95rem;
			color: var(--text-medium);
			display: flex;
			align-items: center;
			gap: 8px;
		}

		.offer-card ul li:last-child {
			border-bottom: none;
		}

		.offer-card ul li::before {
			content: '✓';
			color: var(--primary);
			font-weight: bold;
			flex-shrink: 0;
		}

		.offer-info {
			background: #fff;
			border-radius: var(--radius);
			padding: 30px;
			margin-top: 40px;
			box-shadow: var(--shadow);
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
			gap: 20px;
			text-align: center;
		}

		.offer-info-item {
			padding: 15px;
		}

		.offer-info-item .icon {
			font-size: 2rem;
			margin-bottom: 10px;
		}

		.offer-info-item h3 {
			color: #4D4D4D;
			margin-bottom: 5px;
		}

		.offer-info-item p {
			color: #4D4D4D;
			font-size: 0.9rem;
		}

		/* === DEFINITIONS === */
		.definitions-section {
			background: #fff;
		}

		.definitions-grid {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
			gap: 25px;
		}

		.def-card {
			background: var(--bg-light);
			border-radius: var(--radius);
			padding: 30px;
			border: 1px solid var(--border);
			transition: var(--transition);
			position: relative;
			overflow: hidden;
		}

		.def-card::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 4px;
			background: var(--accent);
			transform: scaleX(0);
			transform-origin: left;
			transition: transform 0.4s ease;
		}

		.def-card:hover::before {
			transform: scaleX(1);
		}

		.def-card:hover {
			box-shadow: var(--shadow);
			transform: translateY(-4px);
		}

		.def-card .term {
			font-size: 1.2rem;
			font-weight: 700;
			color: var(--primary);
			margin-bottom: 10px;
			display: flex;
			align-items: center;
			gap: 10px;
		}

		.def-card .latin {
			font-style: italic;
			color: #594822;
			font-size: 0.95rem;
			margin-bottom: 12px;
			display: block;
		}

		.def-card .description {
			color: var(--text-medium);
			font-size: 0.95rem;
			line-height: 1.7;
		}

		.def-card .tags {
			margin-top: 15px;
			display: flex;
			flex-wrap: wrap;
			gap: 6px;
		}

		.def-card .tag {
			background: var(--primary);
			color: #fff;
			padding: 3px 10px;
			border-radius: 50px;
			font-size: 0.75rem;
		}

		/* === FAQ === */
		.faq-section {
			background: var(--bg-light);
		}

		.faq-list {
			max-width: 800px;
			margin: 0 auto;
		}

		.faq-item {
			background: #fff;
			border-radius: var(--radius-sm);
			margin-bottom: 12px;
			overflow: hidden;
			box-shadow: var(--shadow);
			transition: var(--transition);
		}

		.faq-item:hover {
			box-shadow: var(--shadow-hover);
		}

		.faq-question {
			width: 100%;
			padding: 20px 25px;
			background: none;
			border: none;
			text-align: left;
			font-size: 1.05rem;
			font-weight: 600;
			color: var(--primary);
			cursor: pointer;
			display: flex;
			justify-content: space-between;
			align-items: center;
			gap: 15px;
			transition: var(--transition);
		}

		.faq-question:hover {
			background: rgba(45,90,39,0.03);
		}

		.faq-question .toggle-icon {
			font-size: 1.2rem;
			color: #645126;
			transition: transform 0.3s ease;
			flex-shrink: 0;
		}

		.faq-item.open .toggle-icon {
			transform: rotate(45deg);
		}

		.faq-answer {
			max-height: 0;
			overflow: hidden;
			transition: max-height 0.4s ease, padding 0.4s ease;
			padding: 0 25px;
		}

		.faq-item.open .faq-answer {
			max-height: 500px;
			padding: 0 25px 20px;
		}

		.faq-answer p {
			color: var(--text-medium);
			line-height: 1.7;
		}

		/* === CONTACT === */
		.contact-section {
			background: #fff;
		}

		.contact-grid {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 50px;
			align-items: start;
		}

		.contact-card {
			background: var(--bg-light);
			border-radius: var(--radius);
			padding: 35px;
			margin-bottom: 25px;
			border-left: 5px solid var(--primary);
			transition: var(--transition);
		}

		.contact-card:hover {
			box-shadow: var(--shadow);
			transform: translateX(5px);
		}

		.contact-card h3 {
			color: var(--primary);
			margin-bottom: 15px;
			font-size: 1.2rem;
		}

		.contact-card p {
			color: var(--text-medium);
			margin-bottom: 8px;
			display: flex;
			align-items: center;
			gap: 10px;
		}

		.contact-card a {
			color: var(--primary);
			text-decoration: none;
			font-weight: 500;
			transition: var(--transition);
		}

		.contact-card a:hover {
			color: var(--accent);
			text-decoration: underline;
		}

		.map-container {
			border-radius: var(--radius);
			overflow: hidden;
			box-shadow: var(--shadow);
			height: 100%;
			min-height: 400px;
		}

		.map-container iframe {
			width: 100%;
			height: 100%;
			min-height: 400px;
			border: none;
		}

		/* === LANGUAGE BAR === */
		.lang-bar {
			background: var(--primary-dark);
			padding: 20px;
		}

		.lang-bar-inner {
			max-width: 1200px;
			margin: 0 auto;
			text-align: center;
		}

		.lang-bar h4 {
			color: var(--accent);
			margin-bottom: 15px;
			font-size: 0.95rem;
			text-transform: uppercase;
			letter-spacing: 2px;
		}

		.lang-links {
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			gap: 8px;
		}

		.lang-links a {
			display: inline-flex;
			align-items: center;
			gap: 6px;
			background: rgba(255,255,255,0.1);
			color: rgba(255,255,255,0.8);
			padding: 6px 12px;
			border-radius: 50px;
			text-decoration: none;
			font-size: 0.8rem;
			transition: var(--transition);
			border: 1px solid rgba(255,255,255,0.15);
		}

		.lang-links a:hover {
			background: var(--accent);
			color: var(--primary-dark);
			border-color: var(--accent);
		}

		.lang-links a.active {
			background: var(--accent);
			color: var(--primary-dark);
			font-weight: 600;
		}

		.lang-links img {
			width: 16px;
			height: 12px;
			border-radius: 2px;
			object-fit: cover;
		}

		/* === FOOTER === */
		footer {
			background:
				linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%),
				var(--primary);
			color: rgba(255,255,255,0.88);
			padding: 32px 20px;
			text-align: center;
			font-size: 0.9rem;
			border-top: 1px solid rgba(255,255,255,0.12);
			box-shadow: 0 -8px 24px rgba(0,0,0,0.14);
		}

		footer .footer-bottom {
			max-width: 900px;
			margin: 0 auto;
		}

		footer .footer-bottom p,
		footer .footer-bottom strong {
			color: inherit;
		}

		footer a {
			color: var(--accent-light);
			font-weight: 600;
			text-decoration: none;
			transition: var(--transition);
		}

		footer a:hover {
			color: #fff;
			text-decoration: underline;
		}

		/* === ANIMATIONS === */
		@keyframes fadeInUp {
			from { opacity: 0; transform: translateY(30px); }
			to { opacity: 1; transform: translateY(0); }
		}

		@keyframes bounce {
			0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
			40% { transform: translateX(-50%) translateY(-10px); }
			60% { transform: translateX(-50%) translateY(-5px); }
		}

		/* === RESPONSIVE === */
		@media (max-width: 900px) {
			.about-grid, .contact-grid {
				grid-template-columns: 1fr;
			}
			
			.about-features {
				grid-template-columns: 1fr;
			}
			
			.nav-links {
				display: none;
				position: absolute;
				top: 100%;
				left: 0;
				width: 100%;
				background: var(--primary-dark);
				flex-direction: column;
				padding: 15px;
				gap: 5px;
			}
			
			.nav-links.show {
				display: flex;
			}
			
			.mobile-toggle {
				display: block;
			}
			
			.experience-badge {
				left: 10px !important;
				bottom: 10px !important;
			}
		}

		@media (max-width: 600px) {
			.section {
				padding: 50px 15px;
			}
			
			.gallery-grid {
				grid-template-columns: repeat(2, 1fr);
				gap: 10px;
			}
			
			.offer-grid, .definitions-grid {
				grid-template-columns: 1fr;
			}
			
			.hero-content h1 {
				font-size: 1.8rem;
			}
		}
/* Powiększenie zdjęć w galerii */
#galeria .gallery-item img {
	cursor: zoom-in;
}

.gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, 0.88);
	cursor: zoom-out;
}

.gallery-lightbox.show {
	display: flex;
}

.gallery-lightbox img {
	max-width: 96vw;
	max-height: 90vh;
	width: auto;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	cursor: default;
}

.gallery-lightbox-close {
	position: fixed;
	top: 18px;
	right: 24px;
	z-index: 10000;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	font-size: 34px;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
}

.gallery-lightbox-close:hover {
	background: rgba(255, 255, 255, 0.28);
}
.map-container {
	position: relative;
	width: 100%;
	min-height: 360px;
	border-radius: 16px;
	overflow: hidden;
	background: #eef3ec;
}

.map-container iframe {
	width: 100%;
	height: 360px;
	border: 0;
	display: block;
}

.map-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 24px;
	background: linear-gradient(135deg, #eef3ec, #dfeadd);
}

.map-consent {
	max-width: 420px;
	color: #1f3524;
}

.map-consent p {
	margin: 0 0 12px;
}

.map-load-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border: 0;
	border-radius: 999px;
	background: #2f5f35;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.map-load-btn:hover {
	background: #244b29;
}


.site-footer {
	background: #edf4e8;
	color: #1f3524;
	border-top: 1px solid rgba(47, 95, 53, 0.18);
}

.footer-main {
	padding: 52px 0 30px;
}

.footer-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 28px;
}

.footer-card {
	background: #ffffff;
	border: 1px solid rgba(47, 95, 53, 0.14);
	border-radius: 18px;
	padding: 26px 24px;
	box-shadow: 0 12px 30px rgba(31, 53, 36, 0.08);
	font-size: 0.95rem;
	line-height: 1.65;
}

.footer-card h3 {
	margin: 0 0 6px;
	font-size: 1.15rem;
	line-height: 1.3;
	color: #2d5016;
}

.footer-lead {
	margin: 0 0 18px;
	font-weight: 700;
	color: #4c6f35;
}

.footer-card p {
	margin: 0 0 16px;
}

.footer-list {
	margin: 0 0 18px;
	padding-left: 1.15rem;
}

.footer-list li {
	margin-bottom: 6px;
}

.site-footer a {
	color: #2d5016;
	font-weight: 700;
	text-decoration: none;
}

.site-footer a:hover {
	text-decoration: underline;
}

.footer-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 11px 18px;
	margin: 6px 8px 8px 0;
	border-radius: 999px;
	background: #2d5016;
	color: #ffffff !important;
	font-weight: 700;
	text-decoration: none !important;
	line-height: 1.3;
}

.footer-btn:hover {
	background: #213d10;
	text-decoration: none !important;
}

.footer-btn-light {
	background: #e8f2df;
	color: #2d5016 !important;
	border: 1px solid rgba(47, 95, 53, 0.2);
}

.footer-btn-light:hover {
	background: #dbeccf;
}

.footer-small {
	margin-top: 12px;
	font-size: 0.88rem;
	color: #4b5f42;
}

.footer-bottom-box {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 24px;
	align-items: start;
	padding: 24px;
	border-radius: 18px;
	background: #ffffff;
	border: 1px solid rgba(47, 95, 53, 0.14);
	box-shadow: 0 12px 30px rgba(31, 53, 36, 0.06);
	font-size: 0.9rem;
	line-height: 1.7;
}

.footer-bottom-box p {
	margin: 0 0 12px;
}

.footer-bottom-box p:last-child {
	margin-bottom: 0;
}

.footer-bottom-left {
	padding-right: 18px;
	border-right: 1px solid rgba(47, 95, 53, 0.16);
}

.ai-meta {
	font-size: 0.84rem;
	color: #4b5f42;
}

@media (max-width: 900px) {
	.footer-columns {
		grid-template-columns: 1fr;
	}

	.footer-bottom-box {
		grid-template-columns: 1fr;
	}

	.footer-bottom-left {
		padding-right: 0;
		padding-bottom: 16px;
		border-right: 0;
		border-bottom: 1px solid rgba(47, 95, 53, 0.16);
	}
}

@media (max-width: 560px) {
	.footer-main {
		padding: 38px 0 24px;
	}

	.footer-card,
	.footer-bottom-box {
		border-radius: 14px;
		padding: 22px 18px;
	}

	.footer-btn {
		width: 100%;
		margin-right: 0;
	}
}