/**
 * NephroCare Dializy — layout (design tokens z Lovable, klasy nc-*).
 */

:root {
	--radius: 0.625rem;
	--brand: oklch(0.43 0.07 207);
	--brand-dark: oklch(0.33 0.055 207);
	--brand-light: oklch(0.53 0.075 207);
	--accent-coral: oklch(0.75 0.11 38);
	--accent-coral-dark: oklch(0.67 0.11 38);
	--cream: oklch(0.96 0.02 85);
	--cream-dark: oklch(0.92 0.025 85);
	--ink: oklch(0.25 0.03 210);
	--ink-muted: oklch(0.42 0.025 215);
	--shadow-soft: 0 20px 60px rgba(11, 79, 92, 0.08);
	--shadow-hover: 0 30px 80px rgba(11, 79, 92, 0.14);
	--background: oklch(1 0 0);
	--foreground: oklch(0.129 0.042 264.695);
	--primary-foreground: oklch(0.984 0.003 247.858);
	--destructive: oklch(0.577 0.245 27.325);
	--border: oklch(0.929 0.013 255.508);
}

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

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: Inter, system-ui, sans-serif;
	color: var(--ink);
	background: var(--cream);
	line-height: 1.5;
	overflow-x: clip;
	max-width: 100%;
}

img,
video {
	max-width: 100%;
	height: auto;
}

.nc-skip-link {
	position: absolute;
	left: -9999px;
	z-index: 100;
	padding: 0.5rem 1rem;
	background: var(--brand);
	color: var(--primary-foreground);
}
.nc-skip-link:focus {
	left: 0.5rem;
	top: 0.5rem;
}

.nc-main {
	min-height: 50vh;
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.nc-bg-cream {
	background: var(--cream);
}

.nc-bg-white {
	background: var(--background);
}

.nc-text-ink {
	color: var(--ink);
}

/* —— Nav —— */
.nc-nav {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
	background: color-mix(in oklch, var(--cream) 92%, transparent);
	backdrop-filter: blur(12px);
}

.nc-nav-inner {
	max-width: 80rem;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 1rem 2rem;
	min-width: 0;
}

@media (max-width: 767px) {
	.nc-nav-inner {
		padding: 1rem;
	}
}

.nc-nav-brand {
	font-family: Fraunces, Georgia, serif;
	font-size: 1.5rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--ink);
	flex: 1 1 auto;
	min-width: 0;
}

.nc-brand-wrap {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	column-gap: 0.35em;
	max-width: 100%;
	line-height: 1.15;
}

@media (max-width: 767px) {
	.nc-nav-inner {
		padding: 0.75rem 1rem;
		display: grid;
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto;
		align-items: center;
		column-gap: 0.75rem;
		row-gap: 0.5rem;
	}

	.nc-nav-brand {
		grid-column: 1 / -1;
		grid-row: 1;
		font-size: 1.25rem;
		flex: none;
	}

	.nc-nav-actions {
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100%;
		justify-content: space-between;
	}

	.nc-brand-wrap {
		display: inline-flex;
		flex-wrap: wrap;
		align-items: baseline;
		column-gap: 0.35em;
		row-gap: 0;
		white-space: normal;
	}

	.nc-lang-switcher {
		padding: 0.15rem 0.25rem;
		gap: 0.2rem;
	}

	.nc-lang-btn {
		width: 1.75rem;
		height: 1.75rem;
	}

	.nc-icon-btn.nc-show-mobile {
		width: 2.5rem;
		height: 2.5rem;
	}
}

.nc-brand {
	color: var(--brand);
}

.nc-brand-accent {
	color: var(--accent-coral);
	font-style: italic;
}

/* Nawigacja: na desktopie linki + „Zarezerwuj”; hamburger tylko poniżej 768px (gdy linki są ukryte). */
.nc-nav-links {
	display: flex;
	gap: 2rem;
}

@media (max-width: 767px) {
	.nc-nav-links {
		display: none;
	}
}

.nc-nav-link {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--ink);
	text-decoration: none;
}
.nc-nav-link:hover {
	color: var(--brand);
}

.nc-nav-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.nc-lang-switcher {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.2rem 0.35rem;
	border-radius: 999px;
	background: color-mix(in oklch, var(--brand) 6%, transparent);
	border: 1px solid color-mix(in oklch, var(--brand) 12%, transparent);
}

.nc-lang-switcher--mobile {
	margin: 0.75rem 1rem 0.25rem;
	justify-content: center;
	width: calc(100% - 2rem);
}

.nc-lang-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	text-decoration: none;
	opacity: 0.72;
	transition: opacity 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.nc-lang-btn:hover {
	opacity: 1;
	transform: translateY(-1px);
}

.nc-lang-btn.is-active {
	opacity: 1;
	box-shadow: 0 0 0 2px var(--brand);
}

.nc-lang-flag {
	display: block;
	border-radius: 2px;
	box-shadow: 0 0 0 1px color-mix(in oklch, var(--ink) 12%, transparent);
}

.nc-hide-mobile {
	display: inline-flex;
}
@media (max-width: 767px) {
	.nc-hide-mobile {
		display: none;
	}
}
/* Ten sam próg co .nc-nav-links: hamburger tylko gdy poziome menu jest ukryte. */
.nc-icon-btn.nc-show-mobile {
	display: none;
}
@media (max-width: 767px) {
	.nc-icon-btn.nc-show-mobile {
		display: inline-flex;
	}
}

.nc-icon-btn {
	display: inline-flex;
	width: 2.75rem;
	height: 2.75rem;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	border: 1px solid var(--border);
	background: var(--background);
	color: var(--ink);
	cursor: pointer;
}

.nc-menu-toggle {
	position: relative;
}

.nc-menu-icon {
	display: block;
}

.nc-menu-icon--close {
	display: none;
}

.nc-menu-toggle.is-open .nc-menu-icon--open {
	display: none;
}

.nc-menu-toggle.is-open .nc-menu-icon--close {
	display: block;
}

.nc-nav-mobile {
	border-top: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
	padding: 1rem;
	flex-direction: column;
	gap: 0.5rem;
}
.nc-nav-mobile[hidden] {
	display: none !important;
}
@media (max-width: 767px) {
	.nc-nav-mobile:not([hidden]) {
		display: flex;
	}
}
@media (min-width: 768px) {
	.nc-nav-mobile {
		display: none !important;
	}
}

/* Treść hybrydy (środek z edytora) — bez wąskiego .entry-content z WP */
.nc-landing-from-editor {
	padding: 0;
	max-width: none;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}
.nc-landing-from-editor > *:first-child {
	margin-top: 0;
}
.nc-landing-from-editor :where(.is-layout-constrained),
.nc-landing-from-editor :where(.wp-block-post-content),
.nc-landing-from-editor :where(.entry-content) {
	max-width: none;
	width: 100%;
}
.nc-landing-from-editor .alignfull {
	max-width: none;
	width: 100%;
}

.nc-nav-mobile-link {
	padding: 0.75rem;
	border-radius: 0.75rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--ink);
	text-decoration: none;
}
.nc-nav-mobile-link:hover {
	background: var(--background);
	color: var(--brand);
}

/* —— Buttons —— */
.nc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 0.875rem 1.75rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: background 0.15s, transform 0.15s;
}

.nc-btn-primary {
	background: var(--brand);
	color: var(--primary-foreground);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.nc-btn-primary:hover {
	background: var(--brand-dark);
}

.nc-btn-outline {
	border: 1px solid color-mix(in oklch, var(--brand) 20%, transparent);
	background: transparent;
	color: var(--ink);
}
.nc-btn-outline:hover {
	background: var(--background);
	color: var(--brand);
}

.nc-btn-coral {
	background: var(--accent-coral);
	color: var(--ink);
}
.nc-btn-coral:hover {
	background: var(--accent-coral-dark);
}

.nc-btn-ghost-light {
	border: 1px solid color-mix(in oklch, white 30%, transparent);
	background: transparent;
	color: var(--primary-foreground);
}
.nc-btn-ghost-light:hover {
	background: color-mix(in oklch, white 10%, transparent);
}

.nc-btn-full {
	width: 100%;
}
.nc-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* —— Sections —— */
.nc-section {
	padding: 5rem 1rem;
}
@media (min-width: 768px) {
	.nc-section {
		padding: 7rem 2rem;
	}
}

.nc-container-wide {
	max-width: 80rem;
	margin: 0 auto;
	min-width: 0;
}

/* Hero */
.nc-hero {
	background: linear-gradient(to bottom, var(--cream), var(--cream), var(--cream-dark));
}

.nc-hero-grid {
	max-width: 80rem;
	margin: 0 auto;
	display: grid;
	gap: 3rem;
	align-items: center;
	min-width: 0;
}
@media (min-width: 768px) {
	.nc-hero-grid {
		grid-template-columns: 1.05fr 1fr;
		gap: 5rem;
	}
}

.nc-hero-grid > * {
	min-width: 0;
}

.nc-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	background: var(--background);
	font-size: 0.9375rem;
	font-weight: 500;
	box-shadow: var(--shadow-soft);
}

.nc-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 9999px;
	background: var(--accent-coral);
}

.nc-hero-kicker {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.875rem;
}

.nc-hero-season-badge {
	font-size: 0.9375rem;
	font-weight: 600;
}

.nc-hero-kicker-note {
	margin: 0;
	max-width: 36rem;
	font-size: 1.0625rem;
	line-height: 1.55;
	font-weight: 500;
	color: var(--ink-muted);
}

@media (min-width: 768px) {
	.nc-hero-kicker-note {
		font-size: 1.125rem;
	}
}

.nc-h1 {
	font-family: Fraunces, Georgia, serif;
	font-size: 2.5rem;
	line-height: 1.08;
	font-weight: 500;
	letter-spacing: -0.02em;
	margin: 1.5rem 0 0;
	overflow-wrap: break-word;
}
@media (min-width: 768px) {
	.nc-h1 {
		font-size: 4.5rem;
		line-height: 1.05;
		margin-top: 2rem;
	}
}

.nc-italic-accent {
	color: var(--accent-coral);
	font-style: italic;
}

.nc-pill-dark {
	margin-top: 1.25rem;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1.25rem;
	border-radius: 9999px;
	background: var(--background);
	font-size: 0.9375rem;
	font-weight: 600;
	box-shadow: var(--shadow-soft);
}

.nc-check-mini {
	display: inline-flex;
	width: 1.75rem;
	height: 1.75rem;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	background: var(--accent-coral);
	color: var(--primary-foreground);
}

.nc-lead {
	margin-top: 1.75rem;
	max-width: 42rem;
	font-size: 1.1875rem;
	line-height: 1.7;
	color: var(--ink-muted);
}
@media (min-width: 768px) {
	.nc-lead {
		font-size: 1.3125rem;
		line-height: 1.75;
	}
}
.nc-lead-strong {
	font-weight: 600;
	color: var(--ink);
	margin-top: 0.5rem;
}

.nc-hero-ctas {
	margin-top: 2.25rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.nc-stats {
	margin-top: 3rem;
	display: grid;
	gap: 1.25rem;
	padding-top: 2rem;
	border-top: 1px solid color-mix(in oklch, var(--brand) 10%, transparent);
}
@media (min-width: 640px) {
	.nc-stats {
		grid-template-columns: repeat(3, 1fr);
	}
}

.nc-stat--hidden {
	display: none !important;
}

.nc-stat-val {
	font-family: Fraunces, Georgia, serif;
	font-size: 2.25rem;
	font-weight: 600;
	color: var(--brand);
	font-variant-numeric: tabular-nums;
	font-feature-settings: 'tnum' 1;
}
.nc-stat-lbl {
	margin-top: 0.5rem;
	font-size: 0.9375rem;
	line-height: 1.45;
	color: var(--ink-muted);
}

/* Statystyki + logotypy w hero */
.nc-hero-trust {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid color-mix(in oklch, var(--brand) 10%, transparent);
}

.nc-hero-trust-lead {
	margin: 0 0 1.5rem;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--ink-muted);
}

.nc-hero-trust-lead strong {
	color: var(--brand);
	font-weight: 600;
}

.nc-hero-stats {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.nc-hero-trust-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.25rem 2rem;
	margin-top: 1.75rem;
	padding-top: 1.5rem;
	border-top: 1px solid color-mix(in oklch, var(--brand) 10%, transparent);
}

.nc-hero-trust-logo--fmc {
	height: 2.5rem;
	width: auto;
	max-width: min(100%, 200px);
	object-fit: contain;
}

.nc-hero-trust-logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.nc-hero-trust-logo--nc {
	height: 2.55rem;
	width: auto;
	max-width: min(100%, 230px);
	object-fit: contain;
}

.nc-hero-visual {
	position: relative;
}

.nc-hero-imgwrap {
	overflow: hidden;
	border-radius: 1.5rem;
	background: var(--brand-light);
	box-shadow: var(--shadow-hover);
}

.nc-hero-img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.nc-hero-badge {
	position: absolute;
	bottom: 1.5rem;
	left: 1.5rem;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1.25rem;
	border-radius: 9999px;
	background: color-mix(in oklch, var(--background) 95%, transparent);
	font-size: 0.9375rem;
	font-weight: 500;
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(8px);
}

/* Split sections */
.nc-split {
	max-width: 80rem;
	margin: 0 auto;
	display: grid;
	gap: 3rem;
	min-width: 0;
}
@media (min-width: 768px) {
	.nc-split {
		grid-template-columns: 1fr 1fr;
		gap: 5rem;
	}
}

.nc-split > * {
	min-width: 0;
}

.nc-kicker {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--accent-coral-dark);
	margin: 0 0 1.25rem;
}

.nc-h2 {
	font-family: Fraunces, Georgia, serif;
	font-size: 2.25rem;
	line-height: 1.15;
	font-weight: 500;
	letter-spacing: -0.02em;
	margin: 0;
	overflow-wrap: break-word;
}
@media (min-width: 768px) {
	.nc-h2 {
		font-size: 3rem;
	}
}

.nc-h3 {
	font-family: Fraunces, Georgia, serif;
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	margin: 0;
}

.nc-intro {
	margin-top: 1.5rem;
	max-width: 36rem;
	font-size: 1.125rem;
	line-height: 1.75;
	color: var(--ink-muted);
}
@media (min-width: 768px) {
	.nc-intro {
		font-size: 1.25rem;
	}
}

.nc-mb {
	margin-bottom: 3rem;
}

.nc-loc-top-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.75rem;
	margin: 0 0 1.75rem;
	font-size: 1rem;
	line-height: 1.5;
}

.nc-loc-cta-link {
	font-weight: 600;
	color: var(--brand);
	text-decoration: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

.nc-loc-cta-link:hover {
	color: var(--brand-dark);
}

.nc-loc-top-meta {
	color: var(--ink-muted);
	font-weight: 500;
}

.nc-loc-count-note {
	color: var(--ink-muted);
}

.nc-features {
	display: grid;
	gap: 1.75rem;
}

.nc-feature {
	display: flex;
	gap: 1.25rem;
	min-width: 0;
}
.nc-feature > div {
	min-width: 0;
}

.nc-feature-icon {
	flex-shrink: 0;
	display: inline-flex;
	width: 3.5rem;
	height: 3.5rem;
	align-items: center;
	justify-content: center;
	border-radius: 1rem;
	background: var(--cream);
	color: var(--brand);
}

.nc-feature-icon svg {
	display: block;
	width: 1.5rem;
	height: 1.5rem;
}

.nc-feature-icon-round {
	border-radius: 9999px;
	background: var(--background);
}

.nc-muted {
	margin: 0.5rem 0 0;
	font-size: 1rem;
	line-height: 1.75;
	color: var(--ink-muted);
}

.nc-std-imgs {
	margin-top: 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.nc-std-imgs img {
	width: 100%;
	border-radius: 1rem;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* Location cards */
.nc-cards {
	display: grid;
	gap: 1.75rem;
}
@media (min-width: 900px) {
	.nc-cards {
		grid-template-columns: repeat(3, 1fr);
	}
}

.nc-cards > * {
	min-width: 0;
}

.nc-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: none;
	padding: 0;
	text-align: left;
	cursor: pointer;
	border-radius: 1.5rem;
	background: var(--background);
	box-shadow: var(--shadow-soft);
	transition: transform 0.2s, box-shadow 0.2s;
	color: inherit;
	font: inherit;
	min-width: 0;
	width: 100%;
}
.nc-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
}

.nc-card-imgwrap {
	position: relative;
	overflow: hidden;
}
.nc-card-imgwrap img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 0.5s;
}
.nc-card:hover .nc-card-imgwrap img {
	transform: scale(1.05);
}

.nc-card-tag {
	position: absolute;
	left: 1rem;
	top: 1rem;
	padding: 0.375rem 0.75rem;
	border-radius: 9999px;
	background: color-mix(in oklch, var(--background) 95%, transparent);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--brand);
	backdrop-filter: blur(4px);
}

.nc-card-ribbon {
	position: absolute;
	right: 1rem;
	top: 1rem;
	padding: 0.375rem 0.75rem;
	border-radius: 9999px;
	background: var(--accent-coral);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--primary-foreground);
}

.nc-card-body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.nc-card-region {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--accent-coral-dark);
}

.nc-card-title {
	margin: 0.375rem 0 0;
	font-family: Fraunces, Georgia, serif;
	font-size: 1.875rem;
	font-weight: 600;
}

.nc-card-desc {
	margin: 0.5rem 0 1.25rem;
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--ink-muted);
}

.nc-card-foot {
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid color-mix(in oklch, var(--brand) 10%, transparent);
}

.nc-card-brand {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--brand);
}

.nc-card-addr {
	margin: 0.5rem 0 0;
	display: flex;
	gap: 0.5rem;
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--ink-muted);
}

.nc-pin {
	flex-shrink: 0;
	color: var(--accent-coral-dark);
}

.nc-card-serv {
	margin: 0.75rem 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	font-size: 0.875rem;
}

.nc-bullet {
	display: inline-block;
	width: 0.375rem;
	height: 0.375rem;
	margin-right: 0.5rem;
	border-radius: 9999px;
	background: var(--accent-coral);
	vertical-align: middle;
}

.nc-card-cta {
	display: block;
	margin-top: 1.75rem;
	padding-top: 1rem;
	border-top: 1px solid color-mix(in oklch, var(--brand) 12%, transparent);
	text-align: center;
	font-size: 1.0625rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--brand);
}

.nc-center {
	margin-top: 2.5rem;
	display: flex;
	justify-content: center;
}

.nc-loc-details-center {
	width: 100%;
	justify-content: center;
}

.nc-loc-details {
	width: 100%;
	margin: 0;
	border: 0;
}

.nc-loc-details-summary.nc-btn {
	width: auto;
	max-width: 100%;
	text-align: center;
}

.nc-loc-details-summary {
	list-style: none;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.nc-loc-details-summary::-webkit-details-marker {
	display: none;
}

.nc-loc-details .nc-all-loc {
	margin-top: 1.25rem;
}

.nc-chev {
	display: inline-flex;
	transition: transform 0.2s;
}
.nc-loc-details[open] .nc-chev {
	transform: rotate(180deg);
}

.nc-all-loc {
	margin-top: 2rem;
	padding: 1.25rem;
	border-radius: 1.5rem;
	background: var(--background);
	box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) {
	.nc-all-loc {
		padding: 2.5rem;
	}
}

.nc-all-loc-head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

#nc-all-loc-heading:focus {
	outline: none;
}

#nc-all-loc-heading:focus-visible {
	outline: 2px solid var(--brand);
	outline-offset: 3px;
	border-radius: 0.25rem;
}

.nc-loc-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}
@media (min-width: 640px) {
	.nc-loc-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (min-width: 900px) {
	.nc-loc-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.nc-loc-grid > li {
	min-width: 0;
}

.nc-loc-item {
	display: flex;
	width: 100%;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	border: 1px solid transparent;
	border-radius: 1rem;
	background: color-mix(in oklch, var(--cream) 60%, transparent);
	text-align: left;
	cursor: pointer;
	font: inherit;
	color: inherit;
	transition: border-color 0.15s, background 0.15s;
}
.nc-loc-item:hover {
	border-color: color-mix(in oklch, var(--brand) 30%, transparent);
	background: var(--cream);
}

.nc-loc-item-text {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.nc-loc-name {
	font-weight: 600;
	font-size: 1rem;
}

.nc-loc-addr {
	margin-top: 0.125rem;
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--ink-muted);
	overflow-wrap: anywhere;
}

.nc-loc-badges {
	margin-top: 0.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem;
}

.nc-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.625rem;
	border-radius: 9999px;
	background: color-mix(in oklch, var(--brand) 10%, transparent);
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--brand);
}

.nc-loc-arrow {
	flex-shrink: 0;
	margin-top: 0.25rem;
	font-weight: 600;
	color: var(--brand);
}

/* Brand gradient section */
.nc-section-brand {
	background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
	color: var(--primary-foreground);
}

.nc-kicker-on-dark {
	color: var(--accent-coral);
}

.nc-h2-on-dark,
.nc-h3-on-dark {
	color: var(--primary-foreground);
}

.nc-intro-dark {
	margin-top: 1.25rem;
	max-width: 42rem;
	font-size: 1.125rem;
	line-height: 1.75;
	color: color-mix(in oklch, var(--primary-foreground) 85%, transparent);
}
@media (min-width: 768px) {
	.nc-intro-dark {
		font-size: 1.25rem;
	}
}

.nc-steps {
	list-style: none;
	margin: 3.5rem 0 0;
	padding: 0;
	display: grid;
	gap: 1.5rem;
}

.nc-step {
	display: grid;
	gap: 1.5rem;
	padding: 1.75rem;
	border-radius: 1.5rem;
	border: 1px solid color-mix(in oklch, white 10%, transparent);
	background: color-mix(in oklch, white 6%, transparent);
	backdrop-filter: blur(4px);
}
@media (min-width: 768px) {
	.nc-step {
		grid-template-columns: auto 1fr;
		padding: 2.5rem;
		gap: 1.5rem;
	}
}

.nc-step-num {
	font-family: Fraunces, Georgia, serif;
	font-size: 3.75rem;
	line-height: 1;
	font-style: italic;
	color: var(--accent-coral);
}

.nc-step-p {
	margin: 0.75rem 0 0;
	font-size: 1.125rem;
	line-height: 1.75;
	color: color-mix(in oklch, var(--primary-foreground) 85%, transparent);
}

/* Testimonials */
.nc-testimonials {
	margin-top: 3rem;
	display: grid;
	gap: 1.75rem;
}
@media (min-width: 900px) {
	.nc-testimonials {
		grid-template-columns: repeat(3, 1fr);
	}
}

.nc-quote {
	display: flex;
	flex-direction: column;
	padding: 2rem;
	border-radius: 1.5rem;
	background: var(--background);
	box-shadow: var(--shadow-soft);
}

.nc-quote-mark {
	font-family: Fraunces, Georgia, serif;
	font-size: 3.75rem;
	line-height: 1;
	color: var(--accent-coral);
}

.nc-quote-text {
	margin: 1.25rem 0 0;
	font-family: Fraunces, Georgia, serif;
	font-size: 1.5rem;
	line-height: 1.5;
	color: var(--ink);
	border: none;
	padding: 0;
}

.nc-quote-foot {
	margin-top: 1.75rem;
	padding-top: 1.25rem;
	border-top: 1px solid color-mix(in oklch, var(--brand) 10%, transparent);
	display: flex;
	align-items: center;
	gap: 1rem;
}

.nc-quote-av {
	width: 3rem;
	height: 3rem;
	border-radius: 9999px;
	background: var(--accent-coral);
	color: var(--primary-foreground);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: Fraunces, Georgia, serif;
	font-weight: 600;
}

.nc-quote-name {
	font-size: 0.875rem;
	font-weight: 600;
}

.nc-quote-meta {
	font-size: 0.875rem;
	color: var(--ink-muted);
}

/* Booking + form */
.nc-booking-grid {
	max-width: 80rem;
	margin: 0 auto;
	display: grid;
	gap: 3rem;
	min-width: 0;
}
@media (min-width: 768px) {
	.nc-booking-grid {
		grid-template-columns: 0.95fr 1.05fr;
		gap: 4rem;
	}
}

.nc-booking-grid > * {
	min-width: 0;
}

.nc-checklist {
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 1rem;
}

.nc-checklist li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1rem;
}

.nc-checklist-ic {
	display: inline-flex;
	width: 1.75rem;
	height: 1.75rem;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	background: var(--cream);
	color: var(--brand);
}

.nc-phonebox {
	margin-top: 2.5rem;
	display: flex;
	max-width: 36rem;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	border-radius: 1.5rem;
	background: var(--cream);
	min-width: 0;
}

.nc-phonebox > div {
	min-width: 0;
}

.nc-phonebox-ic {
	display: inline-flex;
	width: 3.5rem;
	height: 3.5rem;
	align-items: center;
	justify-content: center;
	border-radius: 1rem;
	background: var(--brand);
	color: var(--primary-foreground);
}

.nc-phone-num {
	font-family: Inter, system-ui, sans-serif;
	font-size: clamp(1.5rem, 2.5vw + 1rem, 2rem);
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	font-feature-settings: 'tnum' 1;
	letter-spacing: 0.03em;
	line-height: 1.25;
	max-width: 100%;
}
.nc-phone-num a {
	display: inline-block;
	max-width: 100%;
	color: var(--brand);
	text-decoration: none;
	font-weight: inherit;
	letter-spacing: inherit;
}

.nc-phone-sub {
	margin: 0.25rem 0 0;
}

.nc-form {
	border-radius: 1.75rem;
	background: var(--cream);
	padding: 1.75rem;
}
@media (min-width: 768px) {
	.nc-form {
		padding: 2.5rem;
	}
}

.nc-form-title {
	margin: 0;
	font-family: Fraunces, Georgia, serif;
	font-size: 1.875rem;
	font-weight: 600;
}

.nc-form-grid {
	margin-top: 1.5rem;
	display: grid;
	gap: 0.5rem;
}
@media (min-width: 768px) {
	.nc-form-grid {
		grid-template-columns: 1fr 1fr;
		gap: 0.5rem 0.75rem;
	}
}

.nc-field-full {
	grid-column: 1 / -1;
}

.nc-field label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
}

.nc-req {
	color: var(--destructive);
}

.nc-input {
	width: 100%;
	border-radius: 1rem;
	border: 1px solid transparent;
	background: var(--background);
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	color: var(--ink);
	outline: none;
	transition: border-color 0.15s;
	font-family: inherit;
}
.nc-input:focus {
	border-color: var(--brand);
}

.nc-input[type='tel'],
.nc-input[type='date'] {
	font-family: Inter, system-ui, sans-serif;
	font-size: 1rem;
	font-variant-numeric: tabular-nums;
	font-feature-settings: 'tnum' 1;
	letter-spacing: 0.02em;
	line-height: 1.45;
}

.nc-textarea {
	min-height: 7rem;
	resize: vertical;
}

.nc-fieldset {
	border: none;
	margin: 0;
	padding: 0;
}

.nc-fieldset legend {
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
}

.nc-radio {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-right: 1.25rem;
	font-size: 0.875rem;
	cursor: pointer;
}

.nc-consent {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-top: 0.875rem;
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--ink-muted);
	cursor: pointer;
}
.nc-consent input {
	margin-top: 0.25rem;
	width: 1rem;
	height: 1rem;
	accent-color: var(--brand);
	flex-shrink: 0;
}

.nc-consent-inner {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 0.6rem;
	min-width: 0;
}
.nc-consent-inner a {
	color: var(--brand);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.nc-consent-text {
	flex: 1 1 12rem;
	min-width: 0;
}
.nc-consent-badge {
	flex-shrink: 0;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: color-mix(in oklch, var(--brand) 55%, var(--ink-muted));
}

.nc-polityka-note {
	margin-top: 1rem;
	font-size: 0.875rem;
}
.nc-polityka-note a {
	color: var(--brand);
}

.nc-err {
	margin: 0.25rem 0 0;
	font-size: 0.875rem;
	color: var(--destructive);
	min-height: 1.25rem;
}

.nc-form-msg {
	margin-top: 1.25rem;
	padding: 1rem 1.25rem;
	border-radius: 1rem;
	font-size: 0.875rem;
	line-height: 1.5;
}
.nc-form-msg--err {
	border: 1px solid color-mix(in oklch, var(--destructive) 40%, transparent);
	background: var(--background);
	color: var(--destructive);
}
.nc-form-msg--ok {
	border: 1px solid color-mix(in oklch, var(--accent-coral) 50%, transparent);
	background: var(--background);
	color: var(--ink);
}

.nc-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

/* Footer */
.nc-footer {
	background: var(--brand-dark);
	color: var(--primary-foreground);
	padding: 4rem 1rem;
}
@media (min-width: 768px) {
	.nc-footer {
		padding: 4rem 2rem;
	}
}

.nc-footer-grid {
	max-width: 80rem;
	margin: 0 auto;
	display: grid;
	gap: 2.5rem;
}
@media (min-width: 768px) {
	.nc-footer-grid {
		grid-template-columns: 2fr 1fr 1fr;
	}
}

.nc-footer-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.25rem;
}
.nc-footer-logos img,
.nc-footer-logo {
	display: block;
	height: auto;
	width: auto;
	max-width: 200px;
	object-fit: contain;
}
.nc-footer-logo--fmc {
	max-height: 2.375rem;
}
.nc-footer-logo-link--nc-wordmark {
	display: inline-flex;
	align-items: center;
	color: var(--primary-foreground);
	outline-offset: 3px;
}
.nc-footer-nc-svg {
	display: block;
	height: 3.232125rem;
	width: auto;
	max-width: min(373px, 100%);
}
.nc-footer-logo-link {
	line-height: 0;
}
.nc-footer-logos a {
	line-height: 0;
}

.nc-footer-text {
	margin: 1.25rem 0 0;
	max-width: 28rem;
	font-size: 0.875rem;
	line-height: 1.75;
	color: color-mix(in oklch, var(--primary-foreground) 75%, transparent);
}

.nc-footer-h {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	margin: 0;
}

.nc-footer-ul {
	margin: 1.25rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.75rem;
	font-size: 0.875rem;
}
.nc-footer-ul a {
	color: color-mix(in oklch, var(--primary-foreground) 75%, transparent);
	text-decoration: none;
}
.nc-footer-ul a:hover {
	color: var(--primary-foreground);
}

.nc-footer-ul a[href^='tel'] {
	font-family: Inter, system-ui, sans-serif;
	font-size: 1rem;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	font-feature-settings: 'tnum' 1;
	letter-spacing: 0.04em;
}

.nc-footer-bottom {
	max-width: 80rem;
	margin: 2.5rem auto 0;
	padding-top: 1.5rem;
	border-top: 1px solid color-mix(in oklch, white 10%, transparent);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	font-size: 0.875rem;
	color: color-mix(in oklch, var(--primary-foreground) 65%, transparent);
}
@media (min-width: 768px) {
	.nc-footer-bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}
.nc-footer-bottom a {
	color: inherit;
	text-decoration: underline;
}

/* Privacy page */
.nc-privacy-inner {
	padding: 4rem 1rem;
}
@media (min-width: 768px) {
	.nc-privacy-inner {
		padding: 6rem 2rem;
	}
}

.nc-privacy-wrap {
	max-width: 48rem;
	margin: 0 auto;
}

.nc-back-link {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--brand);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.nc-privacy-h1 {
	margin: 1.5rem 0 0;
	font-size: 2.25rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}
@media (min-width: 768px) {
	.nc-privacy-h1 {
		font-size: 3rem;
	}
}

.nc-privacy-updated {
	margin: 1rem 0 0;
	font-size: 0.875rem;
	color: var(--ink-muted);
}

.nc-privacy-body {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	font-size: 1rem;
	line-height: 1.75;
	color: color-mix(in oklch, var(--ink) 90%, transparent);
}

.nc-privacy-body h2 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 600;
}

.nc-privacy-body ul {
	margin: 0.75rem 0 0;
	padding-left: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.nc-privacy-body a {
	color: var(--brand);
}

/* Treść wklejona z edytora (bloki / HTML) */
.nc-privacy-body.nc-privacy-body--editor {
	display: block;
}
.nc-privacy-body.nc-privacy-body--editor > * {
	margin-top: 0;
	margin-bottom: 1.25rem;
}
.nc-privacy-body.nc-privacy-body--editor > *:last-child {
	margin-bottom: 0;
}
.nc-privacy-body.nc-privacy-body--editor h2,
.nc-privacy-body.nc-privacy-body--editor h3 {
	margin-top: 2rem;
}
.nc-privacy-body.nc-privacy-body--editor > :first-child,
.nc-privacy-body.nc-privacy-body--editor > :first-child h2 {
	margin-top: 0;
}
