/* ================================================================
   SILEGOLD — design 2026 wg projektów graficznych (katalog new/)
   Paleta: czerń z zielonym podtonem + zieleń #8aac55, jasne sekcje.
   Typografia: Archivo (nagłówki, wersaliki) + Barlow (tekst).
   Ładowany po style.css — świadomie nadpisuje stary wygląd.
   ================================================================ */

:root {
	--ink: #0e120c;
	--ink-2: #131810;
	--ink-3: #1b2115;
	--accent: #8aac55;
	--accent-strong: #6f8f43;
	--accent-deep: #5d7a37;
	--paper: #f4f5f1;
	--card: #ffffff;
	--line: #e5e8df;
	--line-dark: rgba(255,255,255,.08);
	--body-c: #4a5044;
	--muted: #7c8271;
	--on-dark: rgba(255,255,255,.72);
	--radius: 8px;
	--font-display: 'Archivo', 'Syne', sans-serif;
	--font-body: 'Barlow', 'Didact Gothic', sans-serif;
}

/* ---------- Baza typograficzna ---------- */
body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--body-c);
	background: #fff;
}
h1, h2, h3, h4, h5, h6,
.section-title, .navbar, .button-primary, .button-secondary {
	font-family: var(--font-display);
}
h1, h2, h3 { letter-spacing: -.01em; }
p { color: var(--body-c); }

.sg-eyebrow {
	display: block;
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--accent-strong);
	margin-bottom: 14px;
}
.sg-eyebrow:before { content: "— "; }
.sg-h2 {
	font-size: clamp(26px, 3.2vw, 38px);
	font-weight: 800;
	text-transform: none;
	color: #171c13;
	line-height: 1.15;
	margin-bottom: 18px;
}
.sg-dark .sg-h2 { color: #fff; }
.sg-dark .sg-eyebrow { color: var(--accent); }
.sg-dark p { color: var(--on-dark); }
.sg-lead { font-size: 17px; color: var(--muted); max-width: 640px; }

.sg-section { padding: 95px 0; }
.sg-section-sm { padding: 65px 0; }
.sg-paper { background: var(--paper); }
.sg-dark { background: var(--ink-2); }
.sg-darker { background: var(--ink); }

/* stary system tytułów sekcji — dopasowanie */
.section-title { font-weight: 800; }
.section-title span { color: var(--accent-strong); }
.bg-gray { background: var(--paper); }

/* ---------- Przyciski ---------- */
.button-primary, .button-secondary,
.sg-btn {
	display: inline-block;
	padding: 15px 28px;
	border-radius: 5px;
	border: 1px solid transparent;
	background: var(--accent-strong);
	color: #fff !important;
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	line-height: 1;
	transition: background .25s, border-color .25s, color .25s;
	cursor: pointer;
}
.button-primary:after, .sg-btn:after { content: "  →"; white-space: pre; }
.button-primary:hover, .button-secondary:hover, .sg-btn:hover {
	background: var(--accent-deep);
	border-color: transparent;
	color: #fff !important;
}
.sg-btn-ghost {
	background: transparent;
	border-color: rgba(255,255,255,.35);
}
.sg-btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.sg-btn-dark { background: var(--ink); }
.sg-btn-dark:hover { background: var(--ink-3); }

/* ---------- Navbar ---------- */
.navbar {
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	height: 76px;
	background: var(--ink);
	border-bottom: 1px solid var(--line-dark);
	z-index: 999;
	padding: 0;
}
.nav-scroll {
	background: var(--ink);
	height: 76px;
	top: 0;
	box-shadow: 0 6px 24px rgba(0,0,0,.35);
}
.navbar .container { display: flex; align-items: center; height: 76px; }
.navbar .logo { margin-right: 30px; }
.navbar .logo img { display: none; }
.sg-wordmark { display: inline-block; line-height: 1.05; white-space: nowrap; }
.sg-wordmark .wm-main {
	font-family: var(--font-display);
	font-size: 25px;
	font-weight: 800;
	letter-spacing: .04em;
	color: #fff;
	text-transform: uppercase;
	display: block;
}
.sg-wordmark .wm-main b { color: var(--accent); font-weight: 800; }
.sg-wordmark .wm-sub {
	display: block;
	font-family: var(--font-display);
	font-size: 8.5px;
	font-weight: 600;
	letter-spacing: .3em;
	color: rgba(255,255,255,.55);
	text-transform: uppercase;
	margin-top: 3px;
}
.navbar .navbar-nav { align-items: center; }
.navbar .navbar-nav .nav-link, .navbar .navbar-nav a {
	font-family: var(--font-display);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255,255,255,.85);
	margin: 0 11px;
	padding: 6px 0;
}
.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav a:hover { color: var(--accent); }
.navbar .navbar-nav .active,
.nav-scroll .navbar-nav .active { color: var(--accent) !important; }
.nav-scroll .navbar-nav .nav-link, .nav-scroll .navbar-nav a { color: rgba(255,255,255,.85); }
.nav-scroll .navbar-nav .nav-link:hover, .nav-scroll .navbar-nav a:hover { color: var(--accent); }
.navbar .navbar-toggler { border: 0; }
.navbar .icon-bar, .navbar-toggler-icon i { color: #fff; }

/* telefon + CTA w navbarze */
.nav-phone { display: flex; align-items: center; gap: 10px; margin: 0 18px 0 22px; white-space: nowrap; }
.nav-phone .nav-phone-icon {
	width: 38px; height: 38px; min-width: 38px;
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: var(--accent);
	font-size: 15px;
}
.nav-phone a.nav-phone-number {
	display: block;
	color: #fff !important;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: .02em;
	line-height: 1.15;
	margin: 0;
	text-transform: none;
}
.nav-phone .nav-phone-hours { display: block; color: rgba(255,255,255,.5); font-size: 11px; line-height: 1.2; font-family: var(--font-body); letter-spacing: .02em; }
.nav-cta { margin-left: 4px; }
.nav-cta .sg-btn { padding: 13px 20px; font-size: 11.5px; }
.nav-scroll .nav-phone a.nav-phone-number { color: #fff !important; }
.nav-scroll .nav-phone .nav-phone-hours { color: rgba(255,255,255,.5); }
.nav-scroll .nav-phone .nav-phone-icon { border-color: rgba(255,255,255,.25); color: var(--accent); }

@media screen and (max-width: 1250px) {
	.nav-phone .nav-phone-hours { display: none; }
}
@media screen and (max-width: 767px) {
	.navbar { height: 66px; }
	.navbar .container { height: 66px; }
	.navbar .collapse.navbar-collapse, .navbar .collapsing.navbar-collapse {
		position: absolute;
		top: 66px; left: 0; right: 0;
		background: var(--ink);
		padding: 15px 20px 25px;
		border-bottom: 1px solid var(--line-dark);
	}
	.navbar .navbar-nav .nav-link, .navbar .navbar-nav a { text-align: left; margin: 6px 0; }
	.nav-phone { margin: 14px 0 12px; }
	.nav-cta { margin: 0; }
	.sg-wordmark .wm-main { font-size: 21px; }
}

/* ---------- Hero: strona główna ---------- */
.sg-hero {
	position: relative;
	background: var(--ink);
	overflow: hidden;
	margin-top: 76px;
}
.sg-hero .video-background {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}
.sg-hero .video-background iframe {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 100vw;
	height: 56.25vw;
	min-height: 100%;
	min-width: 177.77vh;
	pointer-events: none;
}
.sg-hero .hero-photo {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center right;
}
.sg-hero .hero-shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(10,13,8,.96) 0%, rgba(10,13,8,.88) 38%, rgba(10,13,8,.45) 70%, rgba(10,13,8,.25) 100%);
}
.sg-hero .hero-inner { position: relative; z-index: 2; padding: 130px 0 120px; }
.sg-hero .sg-eyebrow { color: var(--accent); }
.sg-hero h1 {
	font-family: var(--font-display);
	font-size: clamp(34px, 4.6vw, 58px);
	font-weight: 800;
	line-height: 1.06;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 24px;
	letter-spacing: .01em;
}
.sg-hero h1 .hl { color: var(--accent); }
.sg-hero .hero-lead {
	font-size: 17px;
	color: rgba(255,255,255,.78);
	max-width: 480px;
	margin-bottom: 32px;
}
.sg-hero .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* pasek USP pod hero */
.sg-usp { background: #0a0d08; border-top: 1px solid var(--line-dark); position: relative; z-index: 2; }
.sg-usp .usp-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.sg-usp .usp-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 26px 25px;
	border-left: 1px solid var(--line-dark);
}
.sg-usp .usp-item:first-child { border-left: 0; }
.sg-usp .usp-ico { flex-shrink: 0; }
.sg-usp .usp-ico svg { width: 34px; height: 34px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.sg-usp .usp-item h6 {
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 3px;
}
.sg-usp .usp-item p { font-size: 13px; color: rgba(255,255,255,.55); margin: 0; line-height: 1.4; }
@media screen and (max-width: 991px) {
	.sg-usp .usp-row { grid-template-columns: repeat(2, 1fr); }
	.sg-usp .usp-item:nth-child(3) { border-left: 0; }
	.sg-usp .usp-item { border-top: 1px solid var(--line-dark); }
	.sg-usp .usp-item:nth-child(-n+2) { border-top: 0; }
}
@media screen and (max-width: 575px) {
	.sg-usp .usp-row { grid-template-columns: 1fr; }
	.sg-usp .usp-item { border-left: 0 !important; border-top: 1px solid var(--line-dark); }
	.sg-usp .usp-item:first-child { border-top: 0; }
	.sg-hero .hero-inner { padding: 90px 0 80px; }
}

/* ---------- Hero: podstrony ---------- */
.sg-hero-sub { margin-top: 76px; }
.sg-hero-sub .hero-inner { padding: 95px 0 85px; }
.sg-hero-sub h1 { font-size: clamp(30px, 3.8vw, 46px); }
.sg-breadcrumb {
	font-family: var(--font-display);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 16px;
}
.sg-breadcrumb a { color: rgba(255,255,255,.55); }
.sg-breadcrumb a:hover { color: var(--accent); }
@media screen and (max-width: 767px) {
	.sg-hero-sub { margin-top: 66px; }
	.sg-hero { margin-top: 66px; }
}

/* ---------- O nas + statystyki ---------- */
.sg-about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center; }
.sg-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}
.sg-stats .stat {
	padding: 38px 28px;
	text-align: center;
	border-left: 1px solid var(--line);
	border-top: 1px solid var(--line);
}
.sg-stats .stat:nth-child(-n+2) { border-top: 0; }
.sg-stats .stat:nth-child(odd) { border-left: 0; }
.sg-stats .stat svg { width: 40px; height: 40px; stroke: var(--accent-strong); fill: none; stroke-width: 1.4; margin-bottom: 16px; }
.sg-stats .stat .stat-num {
	font-family: var(--font-display);
	font-size: 34px;
	font-weight: 800;
	color: #171c13;
	line-height: 1;
	margin-bottom: 8px;
}
.sg-stats .stat .stat-label {
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #171c13;
}
.sg-stats .stat .stat-sub { font-size: 12.5px; color: var(--muted); margin-top: 5px; }
.sg-about-list { list-style: none; padding: 0; margin: 22px 0 30px; }
.sg-about-list li { display: flex; gap: 14px; margin-bottom: 16px; }
.sg-about-list li svg { width: 22px; height: 22px; min-width: 22px; stroke: var(--accent-strong); fill: none; stroke-width: 1.8; margin-top: 2px; }
.sg-about-list li strong { display: block; font-family: var(--font-display); font-size: 15px; color: #171c13; }
.sg-about-list li span { font-size: 14px; color: var(--muted); }
@media screen and (max-width: 991px) {
	.sg-about-grid { grid-template-columns: 1fr; gap: 45px; }
}

/* ---------- Co skupujemy — kafle zdjęciowe ---------- */
.sg-materials { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.sg-materials .mat-tile {
	position: relative;
	display: block;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: var(--ink-3);
}
.sg-materials .mat-tile img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.sg-materials .mat-tile:hover img { transform: scale(1.06); }
.sg-materials .mat-tile:after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(10,13,8,0) 40%, rgba(10,13,8,.88) 100%);
}
.sg-materials .mat-label {
	position: absolute;
	left: 22px; right: 22px; bottom: 20px;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 10px;
}
.sg-materials .mat-label h5 {
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #fff;
	margin: 0;
	line-height: 1.25;
}
.sg-materials .mat-arrow {
	width: 34px; height: 34px; min-width: 34px;
	background: var(--ink);
	border-radius: 4px;
	display: flex; align-items: center; justify-content: center;
	color: var(--accent);
	font-size: 16px;
	transition: background .25s;
}
.sg-materials .mat-tile:hover .mat-arrow { background: var(--accent-strong); color: #fff; }
@media screen and (max-width: 1199px) { .sg-materials { grid-template-columns: repeat(3, 1fr); } }
@media screen and (max-width: 575px) { .sg-materials { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Dlaczego my (ciemna) ---------- */
.sg-why .why-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; margin: 55px 0 60px; }
.sg-why .why-stat { text-align: center; padding: 0 10px; }
.sg-why .why-stat .w-ico {
	width: 64px; height: 64px;
	margin: 0 auto 18px;
	border: 1px solid rgba(138,172,85,.4);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
}
.sg-why .why-stat .w-ico svg { width: 28px; height: 28px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.sg-why .why-stat .w-num { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 8px; }
.sg-why .why-stat .w-cap { font-family: var(--font-display); font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); line-height: 1.5; }
.sg-why .why-checks-label { text-align: center; margin-bottom: 28px; }
.sg-why .why-checks { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.sg-why .why-check { display: flex; gap: 10px; align-items: flex-start; }
.sg-why .why-check svg { width: 18px; height: 18px; min-width: 18px; stroke: var(--accent); fill: none; stroke-width: 2; margin-top: 2px; }
.sg-why .why-check span { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.45; }
@media screen and (max-width: 1199px) { .sg-why .why-checks { grid-template-columns: repeat(3, 1fr); } }
@media screen and (max-width: 991px) { .sg-why .why-stats { grid-template-columns: repeat(3, 1fr); gap: 35px 20px; } }
@media screen and (max-width: 575px) {
	.sg-why .why-stats { grid-template-columns: repeat(2, 1fr); }
	.sg-why .why-checks { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Jak pracujemy — kroki ---------- */
.sg-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; }
.sg-steps .step { text-align: center; position: relative; padding: 0 12px; }
.sg-steps .step .st-no {
	position: absolute;
	top: -8px; left: 50%;
	margin-left: -52px;
	width: 26px; height: 26px;
	background: var(--accent-strong);
	color: #fff;
	border-radius: 50%;
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 700;
	display: flex; align-items: center; justify-content: center;
	z-index: 2;
}
.sg-steps .step .st-ico {
	width: 76px; height: 76px;
	margin: 0 auto 20px;
	border: 1px solid rgba(111,143,67,.4);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: #fff;
	position: relative;
}
.sg-steps .step .st-ico svg { width: 32px; height: 32px; stroke: var(--accent-strong); fill: none; stroke-width: 1.5; }
.sg-steps .step h6 { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #171c13; margin-bottom: 10px; }
.sg-steps .step p { font-size: 14px; color: var(--muted); margin: 0; }
.sg-steps .step:not(:last-child):after {
	content: "→";
	position: absolute;
	right: -22px; top: 26px;
	color: var(--accent);
	font-size: 20px;
}
@media screen and (max-width: 991px) {
	.sg-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
	.sg-steps .step:after { display: none !important; }
}
@media screen and (max-width: 575px) { .sg-steps { grid-template-columns: 1fr; } }

/* ---------- Cennik: tabela ---------- */
.pricing-table-wrap {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: none;
}
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table thead th {
	background: var(--ink);
	color: #fff;
	font-family: var(--font-display);
	text-transform: uppercase;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .14em;
	padding: 15px 22px;
	text-align: left;
}
.pricing-table thead th:last-child, .pricing-table td.price { text-align: right; }
.pricing-table tbody td {
	padding: 14px 22px;
	border-bottom: 1px solid var(--line);
	color: var(--body-c);
	font-size: 15px;
}
.pricing-table tbody tr:last-child td { border-bottom: 0; }
.pricing-table tbody tr:hover { background: #f8faf5; }
.pricing-table td.mat-name { font-weight: 600; color: #171c13; }
.pricing-table td.price { color: var(--accent-deep); font-family: var(--font-display); font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums; }
.pricing-note { font-size: 13px; color: var(--muted); margin-top: 15px; }
.pricing-side { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.pricing-side h5 { font-size: 17px; font-weight: 700; color: #171c13; margin-bottom: 14px; }
.pricing-side ul { list-style: none; padding: 0; margin: 0 0 10px; }
.pricing-side ul li { padding-left: 28px; position: relative; margin-bottom: 10px; color: var(--body-c); font-size: 14.5px; }
.pricing-side ul li:before { content: "\f058"; font-family: FontAwesome; position: absolute; left: 0; color: var(--accent-strong); }

/* panel XRF na stronie głównej */
.sg-xrf {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.sg-xrf .xrf-img { min-height: 210px; background-size: cover; background-position: center; }
.sg-xrf .xrf-body { padding: 30px; }
.sg-xrf h4 { font-size: 20px; font-weight: 800; color: #171c13; margin-bottom: 12px; }
.sg-xrf p { font-size: 14.5px; color: var(--muted); }
.sg-xrf ul { list-style: none; padding: 0; margin: 15px 0 0; }
.sg-xrf ul li { padding-left: 26px; position: relative; margin-bottom: 8px; font-size: 14px; color: var(--body-c); }
.sg-xrf ul li:before { content: "\f00c"; font-family: FontAwesome; position: absolute; left: 0; color: var(--accent-strong); }

/* ---------- Realizacje ---------- */
.sg-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.sg-gallery .g-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; background: var(--ink-3); }
.sg-gallery .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.sg-gallery .g-item:hover img { transform: scale(1.05); }
.sg-gallery .g-item .g-label {
	position: absolute;
	left: 0; bottom: 0;
	background: rgba(10,13,8,.85);
	color: #fff;
	font-family: var(--font-display);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	padding: 8px 14px;
	border-radius: 0 var(--radius) 0 0;
}
@media screen and (max-width: 991px) { .sg-gallery { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Opinie ---------- */
.sg-quotes { display: flex; flex-direction: column; gap: 18px; }
.sg-quote {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px 26px;
}
.sg-quote .q-stars { color: var(--accent-strong); font-size: 13px; letter-spacing: 3px; margin-bottom: 10px; }
.sg-quote p { font-size: 15px; color: var(--body-c); margin-bottom: 10px; }
.sg-quote .q-who { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* ---------- Szybka wycena ---------- */
.sg-quote-form {
	background: var(--accent-strong);
	border-radius: var(--radius);
	padding: 38px 36px;
	height: 100%;
}
.sg-quote-form .sg-eyebrow { color: rgba(255,255,255,.75); }
.sg-quote-form h3 { color: #fff; font-size: 26px; font-weight: 800; margin-bottom: 20px; }
.sg-quote-form .wpcf7 input[type=text],
.sg-quote-form .wpcf7 input[type=tel],
.sg-quote-form .wpcf7 input[type=email],
.sg-quote-form .wpcf7 select,
.sg-quote-form .wpcf7 textarea {
	width: 100%;
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 5px;
	padding: 12px 15px;
	margin-bottom: 12px;
	background: #fff;
	color: #333;
	font-family: var(--font-body);
	font-size: 14.5px;
}
.sg-quote-form .wpcf7 textarea { min-height: 90px; }
.sg-quote-form .wpcf7 label { color: #fff; font-size: 13.5px; font-weight: 600; }
.sg-quote-form .wpcf7 input[type=file] { margin: 6px 0 14px; color: #fff; font-size: 13px; width: 100%; }
.sg-quote-form .wpcf7 .form-group { margin-bottom: 0; }
.sg-quote-form .wpcf7 button.button-secondary,
.sg-quote-form .wpcf7 input[type=submit] {
	background: var(--ink);
	color: #fff;
	border: 0;
	border-radius: 5px;
	padding: 14px 30px;
	font-family: var(--font-display);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .25s;
}
.sg-quote-form .wpcf7 button.button-secondary:hover,
.sg-quote-form .wpcf7 input[type=submit]:hover { background: #000; }
.sg-quote-form .wpcf7-not-valid-tip { color: #fff3cd; font-size: 12.5px; }
.sg-quote-form .wpcf7 form .wpcf7-response-output { color: #fff; border-color: rgba(255,255,255,.4); margin: 15px 0 0; }

/* ---------- Pasek CTA ---------- */
.cta-band { background: var(--ink); }
.cta-band .cta-inner { padding: 55px 0; }
.cta-band h3 { color: #fff; font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.6); margin-bottom: 0; }
.cta-band .cta-phone { color: #fff; font-size: 24px; font-weight: 800; font-family: var(--font-display); white-space: nowrap; }
.cta-band .cta-phone i { color: var(--accent); margin-right: 10px; }

/* ---------- Stopka ---------- */
.footer { background: var(--ink); border-top: 1px solid var(--line-dark); }
.sg-footer-main { padding: 75px 0 55px; }
.sg-footer-main .f-brand p { font-size: 14px; color: rgba(255,255,255,.55); margin: 18px 0 22px; max-width: 280px; }
.sg-footer-main .f-col h6 {
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 22px;
}
.sg-footer-main .f-col ul { list-style: none; padding: 0; margin: 0; }
.sg-footer-main .f-col ul li { margin-bottom: 11px; }
.sg-footer-main .f-col ul li a,
.sg-footer-main .f-col .navbar-nav .nav-link {
	color: rgba(255,255,255,.6);
	font-size: 14.5px;
	font-family: var(--font-body);
	text-transform: none;
	letter-spacing: 0;
	margin: 0;
	padding: 0;
	text-align: left;
	display: inline;
}
.sg-footer-main .f-col ul li a:hover { color: var(--accent); }
.sg-footer-main .f-col .navbar-nav { display: block; }
.sg-footer-main .f-col .navbar-nav .nav-item { margin-bottom: 11px; }
.sg-footer-main .f-contact li { display: flex; gap: 12px; margin-bottom: 16px; }
.sg-footer-main .f-contact li i { color: var(--accent); font-size: 15px; margin-top: 3px; }
.sg-footer-main .f-contact li a, .sg-footer-main .f-contact li span { color: rgba(255,255,255,.7); font-size: 14.5px; line-height: 1.5; }
.sg-footer-main .f-contact li a.f-phone { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: #fff; }
.sg-footer-main .f-contact li a:hover { color: var(--accent); }
.f-social { display: flex; gap: 10px; }
.f-social a {
	width: 36px; height: 36px;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: rgba(255,255,255,.7);
	font-size: 14px;
	transition: all .25s;
}
.f-social a:hover { background: var(--accent-strong); border-color: var(--accent-strong); color: #fff; }
.sg-footer-bottom {
	border-top: 1px solid var(--line-dark);
	padding: 22px 0;
	text-align: center;
}
.sg-footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); margin: 0; }
.footer .seoDescription { color: rgba(255,255,255,.45); font-size: 13.5px; }
.footer .seoDescription h2, .footer .seoDescription h3 { color: rgba(255,255,255,.7); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; background: var(--card); overflow: hidden; }
.faq-item .faq-q {
	width: 100%;
	text-align: left;
	background: none;
	border: 0;
	padding: 20px 55px 20px 25px;
	font-size: 16px;
	font-weight: 700;
	font-family: var(--font-display);
	color: #171c13;
	position: relative;
	cursor: pointer;
}
.faq-item .faq-q:after {
	content: "+";
	position: absolute;
	right: 25px; top: 50%;
	transform: translateY(-50%);
	font-size: 22px;
	font-weight: 400;
	color: var(--accent-strong);
}
.faq-item.open .faq-q:after { content: "–"; }
.faq-item .faq-a { display: none; padding: 0 25px 22px; color: var(--muted); }
.faq-item.open .faq-a { display: block; }

/* ---------- Oferta: kafelki ---------- */
.sg-offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.sg-offer-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow .3s, transform .3s;
}
.sg-offer-card:hover { box-shadow: 0 18px 40px rgba(14,18,12,.1); transform: translateY(-3px); }
.sg-offer-card .oc-img { height: 170px; overflow: hidden; }
.sg-offer-card .oc-img img { width: 100%; height: 100%; object-fit: cover; }
.sg-offer-card .oc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.sg-offer-card h5 { font-size: 15px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #171c13; margin-bottom: 10px; line-height: 1.35; }
.sg-offer-card h5 a { color: inherit; }
.sg-offer-card h5 a:hover { color: var(--accent-deep); }
.sg-offer-card p { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.sg-offer-card .oc-more { margin-top: auto; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-deep); }
.sg-offer-card .oc-more:after { content: " →"; }
@media screen and (max-width: 1199px) { .sg-offer-grid { grid-template-columns: repeat(3, 1fr); } }
@media screen and (max-width: 991px) { .sg-offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media screen and (max-width: 575px) { .sg-offer-grid { grid-template-columns: 1fr; } }

/* ---------- Podstrony oferty: rodzaje towaru ---------- */
.material-types .type-tile {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 24px;
	height: calc(100% - 24px);
	transition: box-shadow .3s;
}
.material-types .type-tile:hover { box-shadow: 0 15px 35px rgba(14,18,12,.08); }
.material-types .type-tile .type-img { height: 150px; overflow: hidden; }
.material-types .type-tile .type-img img { width: 100%; height: 100%; object-fit: cover; }
.material-types .type-tile .type-cont { padding: 20px; }
.material-types .type-tile .type-cont h5 { font-size: 14.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #171c13; margin-bottom: 8px; }
.material-types .type-tile .type-cont p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ---------- Transport ---------- */
.transport-tiles .t-tile { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: none; margin-bottom: 24px; height: calc(100% - 24px); }
.transport-tiles .t-tile .t-img { height: 210px; overflow: hidden; }
.transport-tiles .t-tile .t-img img { width: 100%; height: 100%; object-fit: cover; }
.transport-tiles .t-tile .t-cont { padding: 25px; }
.transport-tiles .t-tile .t-cont h5 { font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #171c13; margin-bottom: 10px; }
.transport-tiles .t-tile .t-cont p { color: var(--muted); font-size: 14px; }
.container-sizes { background: var(--paper); }
.container-sizes .size-item { text-align: center; padding: 25px 10px; }
.container-sizes .size-item svg { stroke: var(--accent-strong); }
.container-sizes .size-item .size-name { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #171c13; margin: 12px 0 8px; }
.container-sizes .size-item p { font-size: 13px; color: var(--muted); margin-bottom: 2px; }
.steps-dark { background: var(--ink-2); }
.steps-dark h2 { color: #fff; font-weight: 800; }
.steps-dark .step-item { text-align: center; padding: 0 15px; }
.steps-dark .step-item .step-no {
	width: 42px; height: 42px; border-radius: 50%;
	background: var(--accent-strong); color: #fff; font-weight: 700;
	font-family: var(--font-display);
	display: inline-flex; align-items: center; justify-content: center;
	margin-bottom: 16px;
}
.steps-dark .step-item h6 { color: #fff; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 10px; }
.steps-dark .step-item p { color: rgba(255,255,255,.6); font-size: 14px; }

/* ---------- Blog ---------- */
.blog-list .blog-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 26px;
	display: flex;
	transition: box-shadow .3s;
}
.blog-list .blog-card:hover { box-shadow: 0 15px 35px rgba(14,18,12,.08); }
.blog-list .blog-card .bc-img { flex: 0 0 300px; max-width: 300px; }
.blog-list .blog-card .bc-img img { width: 100%; height: 100%; object-fit: cover; min-height: 230px; }
.blog-list .blog-card .bc-cont { padding: 28px 32px; flex: 1; }
.blog-list .blog-card .bc-meta { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.blog-list .blog-card .bc-meta i { color: var(--accent-strong); margin-right: 5px; }
.blog-list .blog-card h4 { font-size: 21px; font-weight: 800; line-height: 1.3; margin-bottom: 12px; }
.blog-list .blog-card h4 a { color: #171c13; }
.blog-list .blog-card h4 a:hover { color: var(--accent-deep); }
.blog-list .blog-card p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.blog-list .blog-card .bc-more { color: var(--accent-deep); font-family: var(--font-display); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
@media screen and (max-width: 767px) {
	.blog-list .blog-card { flex-direction: column; }
	.blog-list .blog-card .bc-img { max-width: 100%; flex-basis: auto; }
}
.blog-sidebar .widget-box {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px;
	margin-bottom: 24px;
}
.blog-sidebar .widget-box h5 { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #171c13; margin-bottom: 18px; }
.blog-sidebar .widget-box ul { list-style: none; padding: 0; margin: 0; }
.blog-sidebar .widget-box ul li { border-bottom: 1px solid var(--paper); padding: 8px 0; }
.blog-sidebar .widget-box ul li:last-child { border-bottom: 0; }
.blog-sidebar .widget-box ul li a { color: var(--body-c); font-size: 14.5px; }
.blog-sidebar .widget-box ul li a:hover { color: var(--accent-deep); }
.blog-sidebar .searchform { display: flex; }
.blog-sidebar .searchform input[type=text],
.blog-sidebar .searchform input[type=search] {
	flex: 1; border: 1px solid var(--line); border-radius: 5px 0 0 5px; padding: 10px 14px; min-width: 0;
	font-family: var(--font-body);
}
.blog-sidebar .searchform input[type=submit], .blog-sidebar .searchform button {
	background: var(--accent-strong); color: #fff; border: 0; border-radius: 0 5px 5px 0; padding: 10px 16px; cursor: pointer;
}
.blog-sidebar .widget-cta { background: var(--accent-strong); border: 0; }
.blog-sidebar .widget-cta h5 { color: #fff; }
.blog-sidebar .widget-cta p { color: rgba(255,255,255,.85); font-size: 14px; }
.blog-sidebar .widget-cta .button-primary { background: var(--ink); }
.blog-sidebar .widget-cta .button-primary:hover { background: #000; }
.blog-sidebar .widget-dark { background: var(--ink-2); border: 0; }
.blog-sidebar .widget-dark h5 { color: #fff; }
.blog-sidebar .widget-dark p { color: rgba(255,255,255,.6); font-size: 14px; }
.blog-sidebar .post-mini { display: flex; gap: 12px; margin-bottom: 15px; align-items: center; }
.blog-sidebar .post-mini img { width: 70px; height: 55px; object-fit: cover; border-radius: 5px; flex-shrink: 0; }
.blog-sidebar .post-mini a { font-size: 14px; font-weight: 600; color: #2a2f26; line-height: 1.35; display: block; }
.blog-sidebar .post-mini a:hover { color: var(--accent-deep); }
.blog-sidebar .post-mini .pm-date { font-size: 12px; color: var(--muted); }
.single-article { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 42px; }
.single-article .sa-meta { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.single-article .sa-meta i { color: var(--accent-strong); margin-right: 5px; }
.single-article img { border-radius: var(--radius); height: auto; max-width: 100%; }
.single-article h2, .single-article h3 { color: #171c13; font-weight: 800; margin: 28px 0 14px; }
.breadcrumbs { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.breadcrumbs a { color: var(--accent-deep); }
@media screen and (max-width: 767px) { .single-article { padding: 25px 20px; } }

/* ---------- GTranslate — przełącznik języka w pasku menu ---------- */
.navbar .navbar-nav .menu-item-gtranslate { width: auto !important; margin: 0 4px; }
.navbar .navbar-nav .menu-item-gtranslate > div {
	position: static !important;
	top: auto !important;
	width: auto !important;
}
.navbar div.gt_switcher { width: auto !important; background: transparent; }
.navbar div.gt_switcher .gt_selected { background: transparent !important; }
.navbar div.gt_switcher .gt_selected a { font-size: 0; }
.navbar div.gt_switcher img { width: 22px; vertical-align: middle; }
.navbar div.gt_switcher .gt_selected a {
	background: transparent !important;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 5px;
	color: #fff;
	width: auto !important;
	padding: 4px 10px;
}
.navbar div.gt_switcher .gt_option { background: var(--ink-2); }
.navbar div.gt_switcher .gt_option a { color: #fff; }

/* ---------- Drobiazgi / porządki po starym CSS ---------- */
.link-btn { color: var(--accent-deep); }
.progress-wrap { display: none; }
.preloader-bg, #preloader { display: none !important; }
