/**
 * 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;
}

body {
	margin: 0;
	font-family: Inter, system-ui, sans-serif;
	color: var(--ink);
	background: var(--cream);
	line-height: 1.5;
}

.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;
}

.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;
	padding: 1rem;
}

@media (min-width: 768px) {
	.nc-nav-inner {
		padding: 1rem 2rem;
	}
}

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

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

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

.nc-nav-links {
	display: none;
	gap: 2rem;
}

@media (min-width: 768px) {
	.nc-nav-links {
		display: flex;
	}
}

.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-hide-mobile {
	display: none;
}
@media (min-width: 768px) {
	.nc-hide-mobile {
		display: inline-flex;
	}
}
.nc-show-mobile {
	display: inline-flex;
}
@media (min-width: 768px) {
	.nc-show-mobile {
		display: none;
	}
}

.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-nav-mobile {
	border-top: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
	padding: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
/* Higher specificity than UA [hidden] — plain .nc-nav-mobile was overriding hidden and kept the drawer always visible. */
.nc-nav-mobile[hidden] {
	display: none;
}
@media (min-width: 768px) {
	.nc-nav-mobile {
		display: none;
	}
}

/* Treść strony głównej z edytora — bez klasy entry-content (WP dodaje im max-width na całość) */
.nc-landing-from-editor {
	padding: 0;
	max-width: none;
	width: 100%;
	box-sizing: border-box;
}
.nc-landing-from-editor > *:first-child {
	margin-top: 0;
}
/* Rdzeń bloków WP (classic-theme-styles) nakłada max-width na .is-layout-constrained */
.nc-landing-from-editor :where(.is-layout-constrained) {
	max-width: none;
}

.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;
}

/* 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;
}
@media (min-width: 1024px) {
	.nc-hero-grid {
		grid-template-columns: 1.05fr 1fr;
		gap: 5rem;
	}
}

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

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

.nc-h1 {
	font-family: Fraunces, Georgia, serif;
	font-size: 2.5rem;
	line-height: 1;
	font-weight: 500;
	letter-spacing: -0.02em;
	margin: 0;
}
@media (min-width: 768px) {
	.nc-h1 {
		font-size: 4.5rem;
	}
}

.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.875rem;
	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.125rem;
	line-height: 1.75;
	color: var(--ink-muted);
}
@media (min-width: 768px) {
	.nc-lead {
		font-size: 1.25rem;
	}
}
.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-val {
	font-family: Fraunces, Georgia, serif;
	font-size: 2.25rem;
	font-weight: 600;
	color: var(--brand);
}
.nc-stat-lbl {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	color: var(--ink-muted);
}

.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.875rem;
	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;
}
@media (min-width: 1024px) {
	.nc-split {
		grid-template-columns: 1fr 1fr;
		gap: 5rem;
	}
}

.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;
}
@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-features {
	display: grid;
	gap: 1.75rem;
}

.nc-feature {
	display: flex;
	gap: 1.25rem;
}

.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-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: 1024px) {
	.nc-cards {
		grid-template-columns: repeat(3, 1fr);
	}
}

.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;
}
.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 0;
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--ink-muted);
}

.nc-card-foot {
	margin-top: 1rem;
	padding-top: 0.75rem;
	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 {
	margin-top: 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--brand);
}

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

.nc-chev {
	display: inline-flex;
	transition: transform 0.2s;
}
#nc-toggle-all-loc[aria-expanded='true'] .nc-chev {
	transform: rotate(180deg);
}

.nc-all-loc {
	margin-top: 2rem;
	padding: 2.5rem;
	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-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: 1024px) {
	.nc-loc-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.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;
	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);
}

.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: 1024px) {
	.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;
}
@media (min-width: 1024px) {
	.nc-booking-grid {
		grid-template-columns: 0.95fr 1.05fr;
		gap: 4rem;
	}
}

.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);
}

.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: Fraunces, Georgia, serif;
	font-size: 1.875rem;
	font-weight: 600;
}
.nc-phone-num a {
	color: var(--brand);
	text-decoration: none;
}

.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: 1rem;
}
@media (min-width: 768px) {
	.nc-form-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.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-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: 1.25rem;
	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-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 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-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);
}
