@import url(fontawesome-all.min.css);

/* =========================================
   Klinika Ruchu — main.v2.css (clean)
   Minimalistycznie • prosto • elegancko
   + naprawy: topbar, tła, opinie, kontakt, podstrony artykułowe
   ========================================= */

/* ---------- CSS variables ---------- */
:root{
	--c-primary: #0a0a5c;
	--c-primary-hover: #00003f;
	--c-accent: #c7bbb1;

	--c-section-light: #d6dae5;
	--c-panel: #c8cedc;
	--c-panel-head: #b9c1d3;

	--text-dark: rgba(10,10,92,.92);
	--text-muted: rgba(10,10,92,.65);
	--text-light: rgba(255,255,255,.86);

	--border-dark: rgba(10,10,92,.16);
	--border-light: rgba(255,255,255,.18);

	--radius: 14px;
	--shadow: 0 12px 32px rgba(0,0,0,.14);
	--shadow-soft: 0 10px 22px rgba(0,0,0,.11);

	--font-body: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	--font-display: "Fraunces", "Manrope", system-ui, sans-serif;

	--mobile-sidebar-width: 11em;
}

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

html, body{ height: 100%; }

html, body{
	margin: 0 !important;
	padding: 0 !important;
}

/* TŁO: kluczowe — usuwa “szare prześwity” (góra/lewa) */
body{
	background: var(--c-primary);
	color: rgba(255,255,255,.62);
	font-family: var(--font-body);
	font-size: 18px;
	line-height: 1.9;
	letter-spacing: .005em;
	-webkit-text-size-adjust: none;
	padding-top: 0 !important;
}

img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
p{ margin: 0 0 1.35em 0; }
strong, b{ font-weight: 650; color: inherit; }

body.is-preload *{
	animation: none !important;
	transition: none !important;
}

/* ---------- Typography ---------- */
h1,h2,h3{
	margin: 0 0 .65em 0;
	line-height: 1.2;
}

h1{
	font-family: var(--font-display);
	font-weight: 600;
	letter-spacing: -0.025em;
}

h2{
	font-weight: 750;
	letter-spacing: -0.015em;
	font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}

h3{
	font-weight: 650;
	letter-spacing: -0.01em;
	font-size: 1.2rem;
}

@media (max-width: 1280px){
	body{ font-size: 17px; }
}
@media (max-width: 736px){
	body{ font-size: 16.5px; line-height: 1.85; }
	p{ font-size: 1.03rem; line-height: 1.8; }
}

/* ---------- Buttons ---------- */
.button,
button{
	border: 1px solid rgba(255,255,255,.22);
	background: transparent;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	height: calc(4.2em + 2px);
	padding: 0 2.6em;
	font-size: .72rem;
	font-weight: 750;
	letter-spacing: .14em;
	text-transform: uppercase;
	transition: background .2s ease, border-color .2s ease, transform .12s ease, opacity .2s ease;
}

.button:hover,
button:hover{
	border-color: rgba(255,255,255,.45);
	transform: translateY(-1px);
}
.button:active,
button:active{ transform: translateY(0); }

@media (max-width: 736px){
	.button,
	button{
		letter-spacing: .12em;
		padding: 0 2.15em;
		height: calc(4.05em + 2px);
	}
}

/* ---------- Wrapper + layout ---------- */
#wrapper{
	margin-left: 18em;
	padding-top: 0 !important; /* usuń offset u góry */
	min-height: 100vh;        /* ważne: brak “pasków” */
}

/* Hyperspace: usuń wstrzykiwany pasek */
#titleBar{ display: none !important; }

.wrapper{ position: relative; width: 100%; }

.wrapper > .inner{
	width: min(75em, 100%);
	margin: 0 auto;
	padding: 4.5em 4.5em 3em 4.5em;
}

@media (max-width: 1680px){
	.wrapper > .inner{ padding: 4em 4em 2.5em 4em; }
}
@media (max-width: 1280px){
	#wrapper{ margin-left: 0; padding-top: 0 !important; }
	.wrapper > .inner{ padding: 3.25em 2.25em 2em 2.25em; }
}
@media (max-width: 736px){
	#wrapper{ padding-top: 0 !important; }
	.wrapper > .inner{ padding: 2.1em 1.25em 1.25em 1.25em; }
}

/* ---------- Section fade-up ---------- */
.fade-up > .inner{
	opacity: 1;
	transform: translateY(0);
	transition: opacity 1s ease, transform 1s ease;
}
.fade-up.inactive > .inner,
body.is-preload .fade-up > .inner{
	opacity: 0;
	transform: translateY(1em);
}

/* ---------- style1 / style2 / style3 ---------- */
.wrapper.style1,
.wrapper.style3{
	background-color: var(--c-primary);
	color: var(--text-light);
}
.wrapper.style1 p,
.wrapper.style3 p{ color: rgba(255,255,255,.86); }

.wrapper.style2{
	background-color: var(--c-section-light);
	color: var(--text-dark);
}
.wrapper.style2 p{ color: var(--text-dark); }

/* =========================================================
   SIDEBAR
   ========================================================= */
#sidebar{
	position: fixed;
	inset: 0 auto 0 0;
	width: 18em;
	height: 100vh;
	overflow-y: auto;
	background: var(--c-accent);
	z-index: 10000;
	padding: 2.4em 2.4em .75em 2.4em;
}

#sidebar > .inner{
	min-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sidebar-logo{
	text-align: center;
	margin-bottom: 2.25em;
}
.sidebar-logo img{
	width: 100%;
	max-width: 500px;
	display: inline-block;
}

#sidebar nav ul li{ margin: 1.4em 0 0 0; }
#sidebar nav ul li:first-child{ margin-top: 0; }

#sidebar nav a{
	display: block;
	padding: 1.25em 0;
	font-weight: 750;
	letter-spacing: .16em;
	font-size: .8rem;
	text-transform: uppercase;
	color: var(--c-primary);
	opacity: .88;
	position: relative;
}

#sidebar nav a::after{
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	height: .16em;
	width: 100%;
	border-radius: .2em;
	max-width: 0;
	background-image: linear-gradient(to right, var(--c-accent), var(--c-primary));
	transition: max-width .2s ease;
}
#sidebar nav a:hover{ opacity: 1; }
#sidebar nav a.active{ opacity: 1; font-weight: 850; }
#sidebar nav a.active::after{ max-width: 100%; }

/* ---------- MOBILE: wysuwany sidebar + hamburger ---------- */
@media (max-width: 736px){
	#sidebar{
		width: var(--mobile-sidebar-width);
		padding: 1.5em 1.05em .9em 1.05em;
		transform: translateX(-100%);
		transition: transform .22s ease;
		box-shadow: 18px 0 48px rgba(0,0,0,.18);
	}

	#sidebar > .inner{
		justify-content: flex-start;
		padding-top: .35em;
	}

	.sidebar-logo{
		margin: 0 0 1em 0;
		padding: 0 0 1em 0;
		border-bottom: 1px solid rgba(10,10,92,.20);
	}
	.sidebar-logo img{
		max-width: 140px;
		margin: 0 auto;
	}

	#sidebar nav ul{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}
	#sidebar nav ul li{ width: 100%; margin: 0; }

	#sidebar nav a{
		width: 100%;
		padding: 1.02em 0;
		text-align: left;
		letter-spacing: .18em;
		font-size: .72rem;
	}
	#sidebar nav a::after{ background: var(--c-primary); }

	#wrapper{
		margin-left: 0;
		padding-top: 0 !important;
		transition: transform .22s ease;
	}
	body.is-menu-open #sidebar{ transform: translateX(0); }
	body.is-menu-open #wrapper{ transform: translateX(var(--mobile-sidebar-width)); }

	body.is-menu-open::before{
		content: "";
		position: fixed;
		inset: 0;
		background: rgba(0,0,0,.34);
		z-index: 9999;
	}

	.nav-toggle{
		position: fixed;
		top: 12px;
		left: 12px;
		z-index: 10001;
		width: 46px;
		height: 46px;
		padding: 0;
		border-radius: 999px;
		border: 1px solid rgba(255,255,255,.25);
		background: rgba(10,10,92,.55);
		backdrop-filter: blur(6px);
		color: #fff;
		font-size: 22px;
		line-height: 1;
		display: grid;
		place-items: center;
	}
	.nav-toggle:hover{ border-color: rgba(255,255,255,.45); }
}

/* =========================================================
   Intro (hero)
   ========================================================= */
#intro{
	background-image: url("images/intro.svg");
	background-repeat: no-repeat;
	background-position: top right;
	background-size: 100% 100%;
}
#intro.wrapper.fullscreen{
	min-height: 100vh;
	display: flex;
	align-items: center;
}
#intro h1{
	color: #fff;
	font-size: clamp(2.35rem, 4.5vw, 4.05rem);
	margin-bottom: .5em;
}
#intro h1::after{
	content: "•";
	margin-left: .25em;
	opacity: .55;
}
#intro blockquote{
	margin: 0 0 1.6em 0;
	padding: 0;
	border: 0;
	max-width: 720px;
	font-size: 1.05rem;
	line-height: 1.9;
	opacity: .92;
	color: rgba(255,255,255,.90);
}
@media (max-width: 1280px){
	#intro{ background-attachment: scroll; }
}
@media (max-width: 736px){
	#intro.wrapper.fullscreen{
		min-height: auto;
		padding: 3.1em 0 2.1em 0;
	}
	#intro blockquote{
		font-size: 1rem;
		line-height: 1.85;
		max-width: 100%;
	}
}

/* =========================================================
   Sekcja #one (team)
   ========================================================= */
#one{ background-color: var(--c-section-light); }

.team-list{
	display: flex;
	flex-direction: column;
	gap: 3.6em;
}
.team-row{
	display: grid;
	grid-template-columns: minmax(420px, 1.2fr) minmax(260px, .8fr);
	gap: 3em;
	align-items: center;
}
.team-text{ max-width: 700px; }

.team-text h2{ color: var(--c-primary); margin-bottom: .25em; }

.team-role{
	margin: 0 0 1.15em 0;
	font-weight: 850;
	font-size: .85rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--text-muted);
}
.team-text p{
	color: rgba(10,10,92,.90);
	font-size: 1.15rem;
	line-height: 1.95;
	max-width: 650px;
}
.team-text .button{
	color: var(--c-primary);
	border-color: rgba(10,10,92,.30);
}
.team-text .button:hover{ border-color: rgba(10,10,92,.60); }

.team-photo{
	position: relative;
	justify-self: end;
	width: 400px;
	max-width: 100%;
	margin-left: -40px;
}
.team-photo::before{
	content: "";
	position: absolute;
	top: -18px;
	right: -18px;
	width: 82%;
	height: 82%;
	background: rgba(10,10,92,.10);
	border-radius: var(--radius);
	z-index: 0;
}
.team-photo img{
	position: relative;
	z-index: 1;
	width: 100%;
	height: 480px;
	object-fit: cover;
	box-shadow: var(--shadow);
	border: 0;
	border-radius: var(--radius);
}

@media (max-width: 980px){
	.team-row{ grid-template-columns: 1fr; gap: 2em; }
	.team-photo{ justify-self: start; width: 560px; margin-left: 0; }
	.team-photo img{ height: 340px; }
}
@media (max-width: 736px){
	.team-row{
		grid-template-columns: 1fr;
		gap: 1.5em;
		text-align: center;
		align-items: start;
	}
	.team-text{ order: 1; margin: 0 auto; }
	.team-photo{ order: 2; width: 100%; justify-self: center; margin: 0 auto; }
	.team-photo::before{
		top: -12px;
		right: -12px;
		width: 74%;
		height: 74%;
	}
	.team-photo img{ height: 260px; }
}

/* =========================================================
   Opinie (#two) — strzałki równo
   ========================================================= */
#two.opinions h2{ color: #fff; }
#two.opinions p{ color: rgba(255,255,255,.85); max-width: 720px; }

.opinions-shell{ margin-top: 26px; }

.opinions-stage{
	position: relative;
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.opinions-card{
	margin: 0 64px; /* robi miejsce na strzałki */
	max-width: 820px;
	width: 100%;
	background: #fff;
	color: #1b1f2a;
	border-radius: calc(var(--radius) + 4px);
	box-shadow: 0 22px 58px rgba(0,0,0,.22);
	padding: 24px 24px 18px;
	text-align: center;
}

.opinions-quote{
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.75;
	color: #1b1f2a;
}

.opinions-mark{
	font-family: var(--font-display);
	font-size: 2.15rem;
	line-height: 0;
	vertical-align: -0.2em;
	opacity: .55;
}
.opinions-mark.end{ margin-left: 6px; }
.opinions-text{ font-weight: 520; }

.opinions-meta{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid rgba(0,0,0,.10);
	color: rgba(27,31,42,.70);
	font-size: .95rem;
}
.opinions-name,
.opinions-count{ font-weight: 850; }

.opinions button.opinions-nav{
	all: unset;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.35);
	background: rgba(255,255,255,.08);
	color: #fff;
	cursor: pointer;
	display: grid;
	place-items: center;
	font-size: 28px;
	line-height: 1;
	transition: background .15s ease, transform .12s ease;
}
.opinions button.opinions-nav:hover{
	background: rgba(255,255,255,.14);
	transform: translateY(calc(-50% - 1px));
}
.opinions button.opinions-nav.prev{ left: 0; }
.opinions button.opinions-nav.next{ right: 0; }

.opinions-dots{
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 18px;
}
.opinions-dots .dot{
	all: unset;
	box-sizing: border-box;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.55);
	background: transparent;
	cursor: pointer;
	opacity: .85;
}
.opinions-dots .dot.is-active{
	background: #fff;
	opacity: 1;
}

@media (max-width: 736px){
	.opinions-card{ margin: 0 52px; padding: 18px 16px 14px; border-radius: var(--radius); }
	.opinions-quote{ font-size: 1.02rem; line-height: 1.7; }
	.opinions button.opinions-nav{ width: 40px; height: 40px; font-size: 24px; }
}

/* =========================================================
   Sekcja #three (features)
   ========================================================= */
#three.wrapper{
	background-color: var(--c-section-light);
	color: var(--text-dark);
}
#three h2, #three h3{ color: var(--c-primary); }
#three p{ color: var(--text-dark); }

.features{
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-radius: var(--radius);
	border: 1px solid var(--border-dark);
	background: rgba(10,10,92,.03);
	overflow: hidden;
}
.features section{
	padding: 2.6em 2.4em 1.6em 6.2em;
	position: relative;
	border-top: 1px solid rgba(10,10,92,.12);
}
.features section:nth-child(-n + 2){ border-top: 0; }
.features section:nth-child(2n){ border-left: 1px solid rgba(10,10,92,.12); }

.features .icon{
	position: absolute;
	left: 2.4em;
	top: 2.35em;
	width: 2.35em;
	height: 2.35em;
	border-radius: 999px;
	background: var(--c-primary);
	display: grid;
	place-items: center;
	color: #fff;
}
.features .icon::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}
.features h3{ margin-bottom: .35em; color: var(--c-primary); }
.features p{ color: rgba(10,10,92,.85); }

@media (max-width: 980px){
	.features{ grid-template-columns: 1fr; }
	.features section{ width: 100%; border-left: 0 !important; }
}
@media (max-width: 736px){
	.features section{ padding: 2.2em 1.35em 1.25em 5.1em; }
	.features .icon{ left: 1.35em; top: 1.9em; }
}
@media (max-width: 480px){
	.features section{ padding: 1.8em 1.35em 1.1em 1.35em; }
	.features .icon{
		position: relative;
		left: 0;
		top: 0;
		margin-bottom: .85em;
	}
}

/* =========================================================
   Oferta (#four)
   ========================================================= */
.offer-tiles{
	background: linear-gradient(180deg, #0a0a5c 0%, #0d0d6a 100%);
	color: var(--text-light);
}
.offer-intro{
	max-width: 720px;
	margin-bottom: 2.4em;
	color: rgba(255,255,255,.85);
}
.offer-grid{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2em;
}
.offer-tile{
	background: #cfdbe6;
	border-radius: calc(var(--radius) + 8px);
	padding: 2.6em 2.4em;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(10,10,92,.10);
	box-shadow: var(--shadow-soft);
	transition: transform .18s ease, box-shadow .2s ease;
	color: #0b1b38;
}
.offer-tile:hover{
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}
.offer-tag{
	font-size: .72rem;
	font-weight: 850;
	letter-spacing: .18em;
	text-transform: uppercase;
	opacity: .62;
	margin-bottom: .75em;
}
.offer-tile h3{ margin-bottom: .9em; }
.offer-tile ul{ margin: 0 0 1.8em 0; padding: 0; }
.offer-tile ul li{
	position: relative;
	padding-left: 1.55em;
	margin-bottom: .6em;
	color: #1c2f4f;
}
.offer-tile ul li::before{
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: rgba(11,27,56,.45);
	font-weight: 900;
}
.offer-btn{
	margin-top: auto;
	align-self: flex-start;
	background: #7fa6bb;
	color: #fff;
	padding: .85em 2.05em;
	border-radius: 999px;
	font-size: .72rem;
	font-weight: 850;
	letter-spacing: .12em;
	text-transform: uppercase;
	border: 1px solid rgba(255,255,255,.18);
	transition: background .2s ease, transform .12s ease;
}
.offer-btn:hover{
	background: #6c97ae;
	transform: translateY(-1px);
}
@media (max-width: 980px){
	.offer-grid{ grid-template-columns: 1fr; }
}

/* =========================================================
   Cennik (#five)
   ========================================================= */
#five{
	background-color: var(--c-section-light);
	color: var(--text-dark);
}
#five h2{ color: var(--c-primary); }
#five p{ color: var(--text-dark); }

#five .table-wrapper{
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--c-panel);
	border: 1px solid var(--border-dark);
	box-shadow: var(--shadow-soft);
}
#five table{
	width: 100%;
	border-collapse: collapse;
	margin: 0;
	font-size: 1.08rem;
}
#five thead th{
	background: var(--c-panel-head);
	color: var(--c-primary);
	padding: 1em;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .06em;
}
#five tbody td{
	padding: 1em;
	border-top: 1px solid rgba(10,10,92,.12);
	color: var(--c-primary);
}
#five thead th:nth-child(2),
#five tbody td:nth-child(2){
	text-align: center;
	white-space: nowrap;
	font-weight: 900;
	width: 12ch;
}
#five tbody tr:nth-child(odd){ background: rgba(10,10,92,.035); }
#five tbody tr:hover{ background: rgba(255,255,255,.10); }
#five small{
	display: inline-block;
	margin-top: .35em;
	font-size: .85em;
	opacity: .85;
}
@media (max-width: 736px){
	#five table{ font-size: 1rem; }
	#five thead th{ font-size: .95rem; padding: .9em; }
	#five tbody td{ padding: .9em; }
	#five thead th:nth-child(2),
	#five tbody td:nth-child(2){ width: 9ch; }
}

/* =========================================================
   Galeria (#six) + Lightbox
   ========================================================= */
#six.wrapper{ background-color: var(--c-primary); color: var(--text-light); }
#six h2{ color: #fff; }
#six p{ color: rgba(255,255,255,.85); }

.gallery-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.15em;
	margin: 2em 0;
}
@media (max-width: 980px){
	.gallery-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 736px){
	.gallery-grid{ grid-template-columns: 1fr; gap: 1em; }
}

.gallery-item{
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border-light);
	background: rgba(255,255,255,.08);
	transition: border-color .2s ease, transform .12s ease;
}
.gallery-item:hover{
	border-color: rgba(255,255,255,.34);
	transform: translateY(-1px);
}
.gallery-item img{
	width: 100%;
	height: 260px;
	object-fit: cover;
}
@media (max-width: 736px){
	.gallery-item img{ height: 220px; }
}

.lightbox{
	position: fixed;
	inset: 0;
	display: none !important;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(10,10,92,.80);
	z-index: 99999;
}
.lightbox.is-open{ display: flex !important; }
.lightbox-img{
	max-width: min(92vw, 1100px);
	max-height: 85vh;
	border-radius: var(--radius);
	box-shadow: 0 10px 40px rgba(0,0,0,.35);
	background: rgba(255,255,255,.06);
}
.lightbox-close,
.lightbox-nav{
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.35);
	background: rgba(255,255,255,.08);
	color: #fff;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: background .15s ease, transform .12s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover{
	background: rgba(255,255,255,.14);
	transform: translateY(-1px);
}
.lightbox-close{
	position: absolute;
	top: 18px;
	right: 18px;
	font-size: 26px;
	line-height: 1;
}
.lightbox-nav{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 30px;
	line-height: 1;
}
.lightbox-nav.prev{ left: 18px; }
.lightbox-nav.next{ right: 18px; }
.lightbox-caption{
	position: absolute;
	bottom: 14px;
	left: 0;
	right: 0;
	text-align: center;
	color: rgba(255,255,255,.88);
	font-size: 14px;
	padding: 0 16px;
}

/* =========================================================
   Kontakt (#seven) — ikony poprawione + brak podkreśleń
   ========================================================= */
#seven.wrapper{ background: var(--c-section-light); color: var(--text-dark); }
#seven h2, #seven h3{ color: var(--c-primary); }

.split.style1{ display: flex; gap: 2.5em; }
.split.style1 > *{ width: calc(50% - 1.25em); }

.map-embed{
	width: 100%;
	height: 520px;
	border-radius: var(--radius);
	box-shadow: 0 16px 40px rgba(10,10,92,.12);
}
@media (max-width: 980px){
	.map-embed{ height: 420px; }
}
@media (max-width: 736px){
	.split.style1{ display: block; }
	.split.style1 > *{ width: 100%; margin-top: 2em; }
	.split.style1 > :first-child{ margin-top: 0; }
	.map-embed{ height: 320px; }
}

#seven .split.style1 > section:last-child{
	background: rgba(255,255,255,.60);
	border: 1px solid rgba(10,10,92,.10);
	border-radius: var(--radius);
	padding: 2.1em 2.1em 1.3em;
	box-shadow: var(--shadow-soft);
}

ul.contact > li{
	margin-top: 1.15em;
	padding-top: 1.15em;
	border-top: 1px solid rgba(10,10,92,.10);
}
ul.contact > li:first-child{ margin-top: 0; padding-top: 0; border-top: 0; }

ul.contact h3{
	margin: 0 0 .55em 0;
	font-size: .8rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	font-weight: 900;
	color: var(--c-primary);
}

ul.contact span,
ul.contact a{
	color: rgba(10,10,92,.92);
	font-weight: 650;
}

/* bez podkreśleń */
#seven ul.contact a{ border-bottom: none !important; text-decoration: none !important; }

/* Font Awesome: solid vs brands */
.icon{ border: 0; }
.icon:before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.icon.brands:before{
	font-family: 'Font Awesome 5 Brands' !important;
	font-weight: 400 !important;
}

/* Zapisy (Rafał / Natalia): ikona + tekst równo */
#seven ul.contact li ul.icons{ margin-top: .35em; }
#seven ul.contact li ul.icons li{ margin: 0; padding: 0; }

#seven ul.contact li ul.icons a{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	line-height: 1.35;
	padding: .35em 0;
}
#seven ul.contact li ul.icons a i.icon{
	display: inline-grid;
	place-items: center;
	width: 22px;
	height: 22px;
	font-size: 16px;
	line-height: 1;
	color: var(--c-primary);
}

/* Social (FB/IG): obok siebie, tylko kółka */
#seven ul.contact li:last-child .icons{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	margin-top: 10px;
}
#seven ul.contact li:last-child .icons .label{ display: none !important; }

#seven ul.contact li:last-child .icons a.icon.brands{
	width: 42px;
	height: 42px;
	border-radius: 999px;
	display: inline-grid;
	place-items: center;
	background: rgba(10,10,92,.08);
	border: 1px solid rgba(10,10,92,.12);
	color: var(--c-primary);
	transition: transform .12s ease, background .2s ease;
}
#seven ul.contact li:last-child .icons a.icon.brands:hover{
	background: rgba(10,10,92,.12);
	transform: translateY(-1px);
}

/* =========================================================
   Footer
   ========================================================= */
#footer{ background: var(--c-primary); }
#footer .inner{ padding: 3em 5em; }

#footer .menu{
	display: flex;
	flex-wrap: wrap;
	gap: .75em 1.5em;
	font-size: .75rem;
	letter-spacing: .06em;
	color: rgba(255,255,255,.55);
}
#footer .menu a{ border-bottom: none; text-decoration: none; opacity: .9; }
#footer .menu a:hover{ opacity: 1; }

@media (max-width: 736px){
	#footer .inner{ padding: 2em 1.25em; }
	#footer .menu{ flex-direction: column; gap: .5em; }
}

/* =========================================================
   Podstrony artykułowe (Kaltenborn i inne)
   - bez “pustej lewej” i bez centrowania w wyspę
   ========================================================= */

/* szeroko, ale z czytelnym paddingiem */
.article-page .inner{
	width: 100%;
	max-width: none;
	margin: 0;                 /* brak centrowania */
	padding-left: 4.5em;
	padding-right: 4.5em;
}
@media (max-width: 1280px){
	.article-page .inner{
		padding-left: 2.25em;
		padding-right: 2.25em;
	}
}
@media (max-width: 736px){
	.article-page .inner{
		padding-left: 1.25em;
		padding-right: 1.25em;
	}
}

/* hero — wyrównanie do lewej */
.article-hero{
	max-width: none;
	margin: 0 0 3em 0;
	text-align: left;
}

.article-eyebrow{
	display: inline-block;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-size: .72rem;
	opacity: .8;
	margin: 0 0 1.1em;
}

.article-lead{
	max-width: 760px;
	margin: .75em 0 0 0;
	font-size: 1.12rem;
	line-height: 1.85;
	color: rgba(255,255,255,.88);
}

/* layout */
.article-layout{
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 3em;
	align-items: start;
}
@media (max-width: 980px){
	.article-layout{ grid-template-columns: 1fr; }
	.article-aside{ order: -1; }
}

/* delikatna prowadnica (premium) */
.article-main{
	max-width: none;
	position: relative;
	padding-left: 2.2em;
}
.article-main::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 1px;
	background: linear-gradient(to bottom,
	rgba(255,255,255,.18),
	rgba(255,255,255,.02)
	);
}
@media (max-width: 736px){
	.article-main{ padding-left: 0; }
	.article-main::before{ display: none; }
}

.article-section{
	padding-top: 2em;
	margin-top: 2.2em;
	border-top: 1px solid rgba(255,255,255,.14);
}
.article-section:first-child{ border-top: 0; margin-top: 1.6em; padding-top: 0; }

/* karty */
.info-grid{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 1.2em;
}
@media (max-width: 980px){
	.info-grid{ grid-template-columns: 1fr; }
}

.info-card,
.callout,
.panel,
.toc-card,
.aside-note,
.aside-nav,
.faq{
	border-radius: var(--radius);
	border: 1px solid rgba(255,255,255,.14);
	background: rgba(255,255,255,.06);
}

.info-card{ padding: 1.25em 1.25em 1.1em; }
.info-card h3{ margin-bottom: .35em; color: #fff; font-size: 1.05rem; }
.info-card p{ margin: 0; color: rgba(255,255,255,.84); }

.callout{ padding: 1.15em 1.25em; margin: 1.1em 0 1.3em; }
.callout p{ margin: 0; color: rgba(255,255,255,.88); }

/* listy */
.checklist li,
.bullets li{
	position: relative;
	padding-left: 1.5em;
	margin-bottom: .65em;
	color: rgba(255,255,255,.86);
}
.checklist li::before{
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 900;
	opacity: .75;
}
.bullets li::before{
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	opacity: .75;
}

/* split card */
.split-card{
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: 14px;
	padding: 1.25em;
	margin: 1.1em 0 1.3em;
	border-radius: var(--radius);
	border: 1px solid rgba(255,255,255,.14);
	background: rgba(255,255,255,.06);
}
@media (max-width: 736px){
	.split-card{ grid-template-columns: 1fr; }
}

.split-card-text h3{ margin-bottom: .35em; color: #fff; }
.split-card-text p{ margin: 0; color: rgba(255,255,255,.85); }

.split-card-meta{
	display: grid;
	gap: 10px;
	align-content: start;
}

/* ✅ POPRAWKA: “Cel” i “Efekt” — mniej kapsułowe, lepszy tekst */
.meta-pill{
	border-radius: var(--radius);              /* zamiast 999px */
	border: 1px solid rgba(255,255,255,.14);
	background: rgba(255,255,255,.06);
	padding: .9em 1.05em;
}
.meta-title{
	display: block;
	font-size: .70rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	opacity: .78;
	margin-bottom: .25em;
}
.meta-value{
	display: block;
	font-weight: 800;
	color: rgba(255,255,255,.92);
	line-height: 1.35;
	font-size: 1.02rem;
	white-space: normal;
	word-break: break-word;
}

/* 2 kolumny paneli */
.two-col{
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 1.1em;
}
@media (max-width: 980px){
	.two-col{ grid-template-columns: 1fr; }
}
.panel{ padding: 1.25em; }
.panel h3{ color: #fff; margin-bottom: .55em; }

/* FAQ */
.faq{ padding: .95em 1.05em; margin-top: 12px; }
.faq summary{
	cursor: pointer;
	font-weight: 800;
	color: rgba(255,255,255,.92);
}
.faq summary::-webkit-details-marker{ display: none; }
.faq summary::after{ content: "＋"; float: right; opacity: .8; }
.faq[open] summary::after{ content: "—"; }
.faq-body{ margin-top: .85em; color: rgba(255,255,255,.85); }

/* aside */
.article-aside{ position: sticky; top: 18px; }
@media (max-width: 980px){
	.article-aside{ position: relative; top: auto; }
}

.toc-card{ padding: 1.1em 1.1em .9em; }
.toc-title{
	margin: 0 0 .8em;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-size: .72rem;
	opacity: .8;
}
.toc{ display: grid; gap: 8px; }
.toc a{
	padding: .55em .7em;
	border-radius: 10px;
	border: 1px solid transparent;
	color: rgba(255,255,255,.88);
	background: rgba(255,255,255,.03);
	transition: transform .12s ease, border-color .2s ease, background .2s ease;
}
.toc a:hover{
	transform: translateY(-1px);
	border-color: rgba(255,255,255,.14);
	background: rgba(255,255,255,.06);
}

/* aside note + nav */
.aside-note{ margin-top: 14px; padding: 1.1em; }
.aside-note-title{
	margin: 0 0 .4em;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-size: .72rem;
	opacity: .8;
}
.aside-note-text{ margin: 0; color: rgba(255,255,255,.85); }

.aside-nav{ margin-top: 14px; padding: 1.1em; }
.aside-nav-title{
	margin: 0 0 .6em;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-size: .72rem;
	opacity: .8;
}
.aside-links{ display: grid; gap: 8px; }
.aside-links a{
	padding: .6em .7em;
	border-radius: 10px;
	border: 1px solid transparent;
	background: rgba(255,255,255,.03);
	color: rgba(255,255,255,.88);
	transition: background .2s ease, transform .12s ease, border-color .2s ease;
	white-space: normal;
	word-break: break-word;
	line-height: 1.35;
}
.aside-links a:hover{
	background: rgba(255,255,255,.06);
	border-color: rgba(255,255,255,.14);
	transform: translateY(-1px);
}

/* CTA */
.article-cta{
	margin-top: 2.4em;
	padding: 1.6em 1.6em 1.4em;
	border-radius: calc(var(--radius) + 6px);
	border: 1px solid rgba(255,255,255,.16);
	background: rgba(255,255,255,.08);
}
.article-cta p{
	color: rgba(255,255,255,.86);
	max-width: 760px;
}
.article-cta-actions{
	margin-top: 1.2em;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}


/*ZMIANY ELIZA*/
/* =========================================================
   PODSTRONY (article) — pełna szerokość + brak pustej lewej
   ========================================================= */

/* jeśli na tej stronie jest sekcja .article-page — nie zostawiaj miejsca na sidebar */
#wrapper:has(.article-page){
	margin-left: 0 !important;
}

/* fallback, gdyby :has nie działało (starsze przeglądarki):
   podstrona "wyciąga się" w lewo o szerokość sidebaru */
@supports not selector(:has(*)){
	.article-page{
		position: relative;
		left: -18em;
		width: calc(100% + 18em);
	}
	@media (max-width: 1280px){
		.article-page{ left: 0; width: 100%; }
	}
}

/* Dekoracyjne tło podstrony: beż + szarość, bardzo delikatnie */
.article-page{
	position: relative;
	background:
			linear-gradient(90deg,
			rgba(199,187,177,.18) 0%,
			rgba(199,187,177,.18) 22%,
			rgba(214,218,229,.12) 22%,
			rgba(214,218,229,.12) 100%
			);
}

/* karty na podstronie odrobinę jaśniejsze (bardziej "premium") */
.article-page .info-card,
.article-page .callout,
.article-page .panel,
.article-page .split-card,
.article-page .toc-card,
.article-page .aside-note,
.article-page .aside-nav,
.article-page .faq{
	background: rgba(255,255,255,.08);
	border-color: rgba(255,255,255,.16);
}

/* delikatny beżowy akcent przy nagłówkach sekcji */
.article-page .article-section > h2{
	position: relative;
	padding-left: .9em;
}
.article-page .article-section > h2::before{
	content: "";
	position: absolute;
	left: 0;
	top: .35em;
	width: .35em;
	height: 1.1em;
	border-radius: 999px;
	background: rgba(199,187,177,.85);
}

/* TOC w aside — odrobina beżu w tle przy hover */
.article-page .toc a:hover,
.article-page .aside-links a:hover{
	background: rgba(199,187,177,.10);
}

.article-page .inner{
	padding-left: clamp(18px, 4vw, 72px);
	padding-right: clamp(18px, 4vw, 72px);
}

.article-page .article-layout{
	grid-template-columns: minmax(0, 1fr) 360px;
}
@media (max-width: 980px){
	.article-page .article-layout{ grid-template-columns: 1fr; }
}


/* ===== PODSTRONA: usuń „siwy pas” po lewej i zostaw subtelne akcenty ===== */
.article-page{
	background: none !important; /* zabija poprzedni pas/gradient */
	position: relative;
}

/* subtelne poświaty (beż + jasny szary) zamiast pasa */
.article-page::before{
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background:
			radial-gradient(900px 500px at 12% 20%, rgba(199,187,177,.14), transparent 60%),
			radial-gradient(900px 500px at 85% 30%, rgba(214,218,229,.10), transparent 62%);
}

/* upewnij się, że content jest nad poświatą */
.article-page .inner{
	position: relative;
	z-index: 1;
}
