/* ==========================================================================
   DentiClinic Premium – hlavné štýly
   ========================================================================== */

:root {
	--dc-white: #FFFFFF;
	--dc-cream: #F8F6F2;
	--dc-gray: #E2DDD6;
	--dc-taupe: #B8ACA0;
	--dc-blue: #3A4256;
	--dc-navy: #111827;
	--dc-text: #111827;
	--dc-teal: #B8ACA0;

	--dc-radius: 18px;
	--dc-shadow: 0 10px 32px rgba(17, 24, 39, 0.08);
	--dc-shadow-lg: 0 18px 56px rgba(17, 24, 39, 0.14);
	--dc-font: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--dc-header-h: 76px;
}

/* ---------- Reset a základ ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--dc-header-h) + 12px);
}

body {
	margin: 0;
	font-family: var(--dc-font);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--dc-text);
	background: var(--dc-white);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--dc-navy);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--dc-teal);
}

h1, h2, h3, h4 {
	line-height: 1.2;
	color: var(--dc-navy);
	margin: 0 0 0.6em;
	font-weight: 700;
	letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

.container {
	width: min(1200px, 92%);
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	top: -48px;
	left: 8px;
	z-index: 1001;
	background: var(--dc-navy);
	color: #fff;
	padding: 10px 18px;
	border-radius: 8px;
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 8px;
	color: #fff;
}

/* ---------- Tlačidlá ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 26px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.2;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn--primary {
	background: var(--dc-navy);
	color: #fff;
	box-shadow: 0 6px 18px rgba(14, 42, 71, 0.25);
}

.btn--primary:hover {
	background: #143a63;
	color: #fff;
	box-shadow: 0 10px 26px rgba(14, 42, 71, 0.32);
}

.btn--accent {
	background: var(--dc-teal);
	color: #fff;
	box-shadow: 0 6px 18px rgba(46, 196, 182, 0.35);
}

.btn--accent:hover {
	background: #27ab9f;
	color: #fff;
}

.btn--outline {
	background: transparent;
	color: var(--dc-navy);
	border-color: var(--dc-navy);
}

.btn--outline:hover {
	background: var(--dc-navy);
	color: #fff;
}

.btn--outline-light {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-light:hover {
	background: #fff;
	color: var(--dc-navy);
}

.btn--ghost {
	background: rgba(108, 184, 230, 0.12);
	color: var(--dc-navy);
}

.btn--ghost:hover {
	background: rgba(108, 184, 230, 0.25);
	color: var(--dc-navy);
}

.btn--lg {
	padding: 16px 34px;
	font-size: 1.05rem;
}

.btn--block {
	width: 100%;
}

/* ---------- Hlavička ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(14, 42, 71, 0.06);
	transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
	box-shadow: var(--dc-shadow);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: var(--dc-header-h);
}

.site-logo,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 1.3rem;
	color: var(--dc-navy);
	letter-spacing: -0.02em;
}

.site-logo__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--dc-blue), var(--dc-teal));
	color: #fff;
	font-size: 1.15rem;
}

.custom-logo {
	max-height: 56px;
	width: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 20px;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__list a {
	display: block;
	padding: 8px 14px;
	border-radius: 8px;
	font-weight: 500;
	font-size: 0.95rem;
}

.site-nav__list a:hover {
	background: var(--dc-gray);
	color: var(--dc-navy);
}

.site-nav__cta {
	display: none;
}

.btn--header {
	display: inline-flex;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.nav-toggle__line {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--dc-navy);
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Sekcie ---------- */
.section {
	padding: clamp(56px, 8vw, 110px) 0;
}

.section--muted {
	background: var(--dc-gray);
}

.section--dark {
	background: var(--dc-navy);
}

.section--dark .section__title,
.section--dark .section__lead {
	color: #fff;
}

.section__header {
	max-width: 680px;
	margin: 0 auto clamp(32px, 5vw, 56px);
	text-align: center;
}

.section__lead {
	font-size: 1.1rem;
	color: rgba(31, 41, 51, 0.7);
}

.section--dark .section__lead {
	color: rgba(255, 255, 255, 0.75);
}

/* ---------- Hero ---------- */
.hero {
	min-height: calc(100svh - var(--dc-header-h));
	display: flex;
	align-items: center;
	background:
		radial-gradient(1200px 600px at 85% 10%, rgba(108, 184, 230, 0.18), transparent 60%),
		radial-gradient(900px 500px at 10% 90%, rgba(46, 196, 182, 0.1), transparent 60%),
		var(--dc-white);
	padding: clamp(40px, 6vw, 80px) 0;
}

.hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: clamp(32px, 5vw, 72px);
}

.hero__eyebrow {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 999px;
	background: rgba(108, 184, 230, 0.15);
	color: var(--dc-navy);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.hero__title {
	margin-bottom: 0.4em;
}

.hero__subtitle {
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	color: rgba(31, 41, 51, 0.72);
	max-width: 520px;
	margin-bottom: 1.8em;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.hero__media {
	position: relative;
}

.hero__image {
	width: 100%;
	border-radius: 28px;
	box-shadow: var(--dc-shadow-lg);
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

/* ---------- Štatistiky ---------- */
.stats {
	background: var(--dc-navy);
	padding: clamp(36px, 5vw, 64px) 0;
}

.stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}

.stats__number {
	display: block;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	color: var(--dc-blue);
	letter-spacing: -0.02em;
}

.stats__label {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
}

/* ---------- Karty ---------- */
.cards-grid {
	display: grid;
	gap: 24px;
}

.cards-grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.cards-grid--2 {
	grid-template-columns: repeat(2, 1fr);
}

.card {
	background: var(--dc-white);
	border-radius: var(--dc-radius);
	box-shadow: var(--dc-shadow);
	padding: 30px;
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	margin: 0;
	border: 1px solid rgba(14, 42, 71, 0.04);
}

.card:hover {
	transform: translateY(-6px);
	box-shadow: var(--dc-shadow-lg);
}

.card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--dc-blue), var(--dc-teal));
	color: #fff;
	margin-bottom: 20px;
}

.card__title {
	margin-bottom: 0.4em;
}

.card__title a {
	color: inherit;
}

.card__text {
	color: rgba(31, 41, 51, 0.72);
	flex-grow: 1;
}

.card__meta {
	color: var(--dc-teal);
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 0.5em;
}

.card__meta--light {
	color: rgba(31, 41, 51, 0.55);
	font-weight: 500;
}

.card__price {
	font-weight: 700;
	color: var(--dc-navy);
	margin-bottom: 0.8em;
}

.card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.card__actions .btn {
	padding: 10px 20px;
	font-size: 0.9rem;
}

.card--doctor,
.card--post {
	padding: 0;
	overflow: hidden;
}

.card--doctor .card__body,
.card--post .card__body {
	padding: 26px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.card__media {
	display: block;
	overflow: hidden;
}

.card__image {
	width: 100%;
	aspect-ratio: 5 / 6;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.card--post .card__image {
	aspect-ratio: 4 / 3;
}

.card:hover .card__image {
	transform: scale(1.04);
}

.card--review {
	border-top: 4px solid var(--dc-teal);
}

.card__stars {
	color: #f5b301;
	font-size: 1.1rem;
	letter-spacing: 3px;
	margin-bottom: 14px;
}

/* ---------- Kroky objednania ---------- */
.steps__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	counter-reset: steps;
}

.steps__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--dc-radius);
	padding: 22px;
	color: #fff;
}

.steps__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--dc-teal);
	color: #fff;
	font-weight: 700;
}

.steps__text {
	font-weight: 500;
	line-height: 1.4;
	padding-top: 8px;
}

.steps__cta {
	text-align: center;
	margin-top: 40px;
}

/* ---------- Before / After slider ---------- */
.ba-card {
	margin: 0;
}

.ba-card__caption {
	text-align: center;
	font-weight: 600;
	color: var(--dc-navy);
	margin-top: 14px;
}

.ba-slider {
	position: relative;
	overflow: hidden;
	border-radius: var(--dc-radius);
	box-shadow: var(--dc-shadow);
	aspect-ratio: 4 / 3;
	--ba-pos: 50%;
	touch-action: pan-y;
	user-select: none;
}

.ba-slider__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ba-slider__before-wrap {
	position: absolute;
	inset: 0;
	overflow: hidden;
	clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
}

.ba-slider__handle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--ba-pos);
	width: 3px;
	background: #fff;
	transform: translateX(-50%);
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
	pointer-events: none;
}

.ba-slider__handle::after {
	content: "⇔";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	color: var(--dc-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.ba-slider__range {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: ew-resize;
	margin: 0;
}

.ba-slider__badge {
	position: absolute;
	bottom: 14px;
	padding: 5px 14px;
	border-radius: 999px;
	background: rgba(14, 42, 71, 0.75);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 600;
	pointer-events: none;
}

.ba-slider__badge--before { left: 14px; }
.ba-slider__badge--after { right: 14px; }

.ba-slider--single {
	max-width: 720px;
	margin: 24px 0;
}

/* ---------- CTA pás ---------- */
.cta-band {
	background: linear-gradient(120deg, var(--dc-navy) 0%, #14406b 55%, var(--dc-teal) 130%);
	padding: clamp(56px, 7vw, 96px) 0;
}

.cta-band__inner {
	text-align: center;
}

.cta-band__title {
	color: #fff;
	max-width: 720px;
	margin: 0 auto 1em;
}

/* ---------- Kontakt ---------- */
.contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
}

.contact__list {
	list-style: none;
	margin: 0 0 26px;
	padding: 0;
	display: grid;
	gap: 18px;
}

.contact__list strong {
	display: block;
	color: var(--dc-navy);
	margin-bottom: 2px;
}

.contact__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.contact__map iframe,
.contact__map-placeholder {
	width: 100%;
	border-radius: var(--dc-radius);
	box-shadow: var(--dc-shadow);
}

.contact__map-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 380px;
	background:
		linear-gradient(135deg, rgba(108, 184, 230, 0.15), rgba(46, 196, 182, 0.12)),
		var(--dc-gray);
	color: rgba(31, 41, 51, 0.6);
	text-align: center;
	padding: 24px;
}

/* ---------- Obsah (entry) ---------- */
.entry__title {
	margin-bottom: 0.3em;
}

.entry__meta {
	color: var(--dc-teal);
	font-weight: 600;
}

.entry__meta--light {
	color: rgba(31, 41, 51, 0.55);
	font-weight: 500;
}

.entry__layout--with-media {
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
}

.entry__thumbnail img {
	border-radius: var(--dc-radius);
	box-shadow: var(--dc-shadow);
}

.entry__content {
	max-width: 760px;
}

.entry__content img {
	border-radius: var(--dc-radius);
}

.entry__cta {
	margin-top: 32px;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
	margin-bottom: 28px;
	font-size: 0.88rem;
}

.breadcrumbs ol {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin: 0;
	padding: 0;
	color: rgba(31, 41, 51, 0.55);
}

.breadcrumbs li:not(:last-child)::after {
	content: "/";
	margin: 0 6px;
	color: rgba(31, 41, 51, 0.3);
}

/* ---------- Stránkovanie ---------- */
.pagination {
	margin-top: 48px;
	text-align: center;
}

.pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border-radius: 10px;
	background: var(--dc-gray);
	font-weight: 600;
}

.pagination .page-numbers.current {
	background: var(--dc-navy);
	color: #fff;
}

/* ---------- Pätička ---------- */
.site-footer {
	background: var(--dc-navy);
	color: rgba(255, 255, 255, 0.8);
}

.site-footer a {
	color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
	color: var(--dc-blue);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: clamp(28px, 4vw, 64px);
	padding: clamp(48px, 6vw, 80px) 0;
}

.site-footer .site-logo,
.site-footer .custom-logo-link {
	color: #fff;
	margin-bottom: 14px;
}

.site-footer__title {
	color: #fff;
	font-size: 1.05rem;
	margin-bottom: 18px;
}

.site-footer__menu,
.site-footer__contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.site-footer__contact {
	margin-bottom: 22px;
}

.site-footer__social {
	display: flex;
	gap: 12px;
	margin-top: 16px;
}

.site-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	transition: background 0.2s ease;
}

.site-footer__social a:hover {
	background: var(--dc-teal);
	color: #fff;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 20px 0;
	font-size: 0.88rem;
}

.site-footer__bottom p {
	margin: 0;
}

/* ---------- Mobilné sticky CTA ---------- */
.mobile-cta {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 -6px 24px rgba(14, 42, 71, 0.12);
}

/* ---------- Animácie (reveal) ---------- */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--delay {
	transition-delay: 0.15s;
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal,
	.reveal--delay {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Bez JS – obsah musí byť viditeľný. */
.no-js .reveal {
	opacity: 1;
	transform: none;
}

/* ==========================================================================
   Responzivita
   ========================================================================== */
@media (max-width: 1024px) {
	.cards-grid--3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.steps__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 820px) {
	:root {
		--dc-header-h: 64px;
	}

	/* Mobilné menu */
	.nav-toggle {
		display: flex;
	}

	.site-nav {
		position: fixed;
		top: var(--dc-header-h);
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 998;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--dc-white);
		padding: 24px 5%;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		overflow-y: auto;
	}

	.site-nav.is-open {
		transform: translateX(0);
	}

	.site-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
	}

	.site-nav__list a {
		padding: 14px 12px;
		font-size: 1.1rem;
		border-radius: 12px;
	}

	.site-nav__cta {
		display: block;
		margin-top: 20px;
	}

	.site-nav__cta .btn {
		width: 100%;
		padding: 16px;
		font-size: 1.05rem;
	}

	.btn--header {
		display: none;
	}

	/* Hero */
	.hero {
		min-height: 0;
	}

	.hero__inner {
		grid-template-columns: 1fr;
	}

	.hero__media {
		order: -1;
	}

	.hero__actions .btn {
		flex: 1 1 auto;
	}

	/* Grid */
	.stats__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.cards-grid--2,
	.contact__grid,
	.site-footer__grid,
	.entry__layout--with-media {
		grid-template-columns: 1fr;
	}

	.steps__list {
		grid-template-columns: 1fr;
	}

	/* Sticky CTA dole */
	.mobile-cta {
		display: block;
	}

	body {
		padding-bottom: 76px;
	}

	.site-footer {
		padding-bottom: 8px;
	}
}

@media (max-width: 540px) {
	.cards-grid--3 {
		grid-template-columns: 1fr;
	}

	.card {
		padding: 24px;
	}

	.hero__actions {
		flex-direction: column;
	}

	.hero__actions .btn {
		width: 100%;
	}
}

/* ==========================================================================
   DentiClinic – Modern Minimal finálne doladenie palety č. 4
   #F8F6F2 / #E2DDD6 / #B8ACA0 / #3A4256 / #111827
   ========================================================================== */

body {
	background: var(--dc-cream);
	color: var(--dc-text);
}

.site-main,
.front-page {
	background: var(--dc-cream);
}

/* Header */

.site-header {
	background: rgba(248, 246, 242, 0.94);
	border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.site-nav__list a:hover {
	background: rgba(184, 172, 160, 0.16);
	color: var(--dc-navy);
}

.site-logo__mark {
	background: linear-gradient(135deg, var(--dc-blue), var(--dc-navy));
	color: #fff;
}

/* Hero */

.hero {
	background:
		radial-gradient(900px 500px at 88% 12%, rgba(184, 172, 160, 0.26), transparent 60%),
		radial-gradient(700px 420px at 8% 92%, rgba(226, 221, 214, 0.55), transparent 62%),
		var(--dc-cream);
}

.hero__eyebrow {
	background: rgba(184, 172, 160, 0.22);
	color: var(--dc-navy);
	border: 1px solid rgba(184, 172, 160, 0.38);
}

.hero__title {
	color: var(--dc-navy);
}

.hero__subtitle {
	color: rgba(17, 24, 39, 0.68);
}

.hero__image {
	border-radius: 30px;
	box-shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
}

/* Tlačidlá */

.btn--primary,
.btn--header {
	background: var(--dc-blue);
	color: #fff;
	box-shadow: 0 12px 30px rgba(17, 24, 39, 0.18);
}

.btn--primary:hover,
.btn--header:hover {
	background: var(--dc-navy);
	color: #fff;
}

.btn--accent {
	background: var(--dc-taupe);
	color: var(--dc-navy);
	box-shadow: 0 12px 30px rgba(184, 172, 160, 0.28);
}

.btn--accent:hover {
	background: var(--dc-blue);
	color: #fff;
}

.btn--ghost {
	background: rgba(226, 221, 214, 0.65);
	color: var(--dc-navy);
}

.btn--ghost:hover {
	background: var(--dc-navy);
	color: #fff;
}

.btn--outline {
	color: var(--dc-blue);
	border-color: var(--dc-blue);
}

.btn--outline:hover {
	background: var(--dc-blue);
	color: #fff;
}

/* Sekcie */

.section {
	background: var(--dc-cream);
}

.section--muted {
	background: var(--dc-gray);
}

.section--dark {
	background:
		radial-gradient(900px 500px at 90% 10%, rgba(184, 172, 160, 0.16), transparent 60%),
		var(--dc-navy);
}

.section__lead {
	color: rgba(17, 24, 39, 0.66);
}

/* Štatistiky */

.stats {
	background: var(--dc-navy);
}

.stats__number {
	color: var(--dc-taupe);
}

/* Karty */

.card {
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 22px;
	box-shadow: 0 16px 44px rgba(17, 24, 39, 0.07);
}

.card:hover {
	box-shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
}

.card__icon {
	background: linear-gradient(135deg, var(--dc-gray), var(--dc-taupe));
	color: var(--dc-navy);
}

.card__text {
	color: rgba(17, 24, 39, 0.66);
}

.card__meta {
	color: var(--dc-blue);
}

.card--review {
	border-top: 4px solid var(--dc-taupe);
}

.card__stars {
	color: var(--dc-taupe);
}

/* Kroky objednania */

.steps__number {
	background: var(--dc-taupe);
	color: var(--dc-navy);
}

/* CTA pás */

.cta-band {
	background:
		radial-gradient(900px 500px at 12% 20%, rgba(184, 172, 160, 0.18), transparent 60%),
		linear-gradient(120deg, var(--dc-navy) 0%, var(--dc-blue) 100%);
}

/* Kontakt */

.contact__map-placeholder {
	background:
		linear-gradient(135deg, rgba(226, 221, 214, 0.72), rgba(184, 172, 160, 0.26)),
		var(--dc-cream);
	color: rgba(17, 24, 39, 0.62);
}

/* Footer */

.site-footer {
	background: var(--dc-navy);
}

.site-footer a:hover {
	color: var(--dc-taupe);
}

.site-footer__social a:hover {
	background: var(--dc-taupe);
	color: var(--dc-navy);
}

/* Mobilné CTA */

.mobile-cta {
	background: rgba(248, 246, 242, 0.96);
	box-shadow: 0 -8px 26px rgba(17, 24, 39, 0.12);
}

/* Hero PNG zub bez pozadia / bez kartového rámu */
.hero__media {
	background: transparent !important;
	box-shadow: none !important;
	border: 0 !important;
}

/* Hero obrázok zubu – bez rámu, bez pozadia, bez kartového efektu */
.hero__media {
	background: transparent !important;
	box-shadow: none !important;
	border: 0 !important;
}

.hero__image--png,
.hero__media img[src*="zub-denti"] {
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	border: 0 !important;
	border-radius: 0 !important;
	object-fit: contain !important;
	aspect-ratio: auto !important;
	width: 100% !important;
	max-width: 560px !important;
	height: auto !important;
	margin-inline: auto !important;
	display: block !important;
}

/* DentiClinic – moderný cenník */
.dc-price-page {
	background: #F8F6F2;
	padding: 80px 0;
}

.dc-price-wrap {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 24px;
}

.dc-price-hero {
	text-align: center;
	margin-bottom: 48px;
}

.dc-price-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(184, 172, 160, 0.20);
	border: 1px solid rgba(184, 172, 160, 0.35);
	color: #111827;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 18px;
}

.dc-price-title {
	font-size: clamp(36px, 5vw, 64px);
	line-height: 1.05;
	margin: 0 0 18px;
	color: #111827;
}

.dc-price-lead {
	max-width: 720px;
	margin: 0 auto;
	color: rgba(17, 24, 39, 0.68);
	font-size: 18px;
	line-height: 1.7;
}

.dc-price-note {
	margin: 28px auto 0;
	max-width: 760px;
	padding: 18px 22px;
	border-radius: 18px;
	background: #FFFFFF;
	border: 1px solid rgba(17, 24, 39, 0.08);
	color: rgba(17, 24, 39, 0.72);
	box-shadow: 0 12px 34px rgba(17, 24, 39, 0.06);
}

.dc-price-grid {
	display: grid;
	gap: 18px;
}

.dc-price-category {
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 16px 44px rgba(17, 24, 39, 0.07);
}

.dc-price-category summary {
	cursor: pointer;
	list-style: none;
	padding: 24px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	font-size: 22px;
	font-weight: 800;
	color: #111827;
}

.dc-price-category summary::-webkit-details-marker {
	display: none;
}

.dc-price-category summary::after {
	content: "+";
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #3A4256;
	color: #FFFFFF;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex: 0 0 34px;
}

.dc-price-category[open] summary::after {
	content: "–";
	background: #111827;
}

.dc-price-table {
	width: 100%;
	border-collapse: collapse;
}

.dc-price-table th,
.dc-price-table td {
	padding: 16px 28px;
	border-top: 1px solid rgba(17, 24, 39, 0.08);
	text-align: left;
	vertical-align: top;
}

.dc-price-table th {
	background: rgba(226, 221, 214, 0.48);
	color: #111827;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.dc-price-table td {
	color: rgba(17, 24, 39, 0.78);
	font-size: 15px;
	line-height: 1.5;
}

.dc-price-table td:nth-child(2),
.dc-price-table td:nth-child(3),
.dc-price-table th:nth-child(2),
.dc-price-table th:nth-child(3) {
	text-align: right;
	white-space: nowrap;
	font-weight: 700;
	color: #111827;
}

.dc-price-footer {
	margin-top: 36px;
	padding: 30px;
	border-radius: 24px;
	background: #111827;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.dc-price-footer h2 {
	margin: 0 0 8px;
	color: #FFFFFF;
	font-size: 28px;
}

.dc-price-footer p {
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
}

.dc-price-footer a {
	background: #B8ACA0;
	color: #111827;
	padding: 14px 24px;
	border-radius: 999px;
	font-weight: 800;
	text-decoration: none;
}

.dc-price-footer a:hover {
	background: #FFFFFF;
	color: #111827;
}

@media (max-width: 760px) {
	.dc-price-page {
		padding: 50px 0;
	}

	.dc-price-category summary {
		padding: 20px;
		font-size: 18px;
	}

	.dc-price-table,
	.dc-price-table thead,
	.dc-price-table tbody,
	.dc-price-table th,
	.dc-price-table td,
	.dc-price-table tr {
		display: block;
	}

	.dc-price-table thead {
		display: none;
	}

	.dc-price-table tr {
		border-top: 1px solid rgba(17, 24, 39, 0.08);
		padding: 14px 20px;
	}

	.dc-price-table td {
		border: 0;
		padding: 5px 0;
	}

	.dc-price-table td:nth-child(2),
	.dc-price-table td:nth-child(3) {
		text-align: left;
	}

	.dc-price-table td:nth-child(2)::before {
		content: "So ZP: ";
		font-weight: 600;
		color: rgba(17, 24, 39, 0.55);
	}

	.dc-price-table td:nth-child(3)::before {
		content: "Bez ZP: ";
		font-weight: 600;
		color: rgba(17, 24, 39, 0.55);
	}
}


/* =========================================
   DentiClinic – úprava stránky Cenník
   ========================================= */

/* Skrytie pôvodného nadpisu stránky Cenník */
body.page-id-17 .page-header,
body.page-id-17 .entry-header,
body.page-id-17 .page-title,
body.page-id-17 .entry-title {
	display: none !important;
}

/* Cenník bližšie pod menu */
body.page-id-17 .site-main,
body.page-id-17 main {
	padding-top: 20px !important;
}

/* Rozšírenie cenníka */
.dc-price-wrap {
	max-width: 1180px !important;
	width: 100%;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 24px !important;
	padding-right: 24px !important;
}

/* Vycentrovanie celého bloku cenníka */
.dc-price-page {
	text-align: center;
	padding-top: 50px !important;
}

/* Nadpis menší a krajší – max 2 riadky */
.dc-price-title {
	max-width: 900px;
	margin-left: auto !important;
	margin-right: auto !important;
	font-size: clamp(38px, 4.2vw, 58px) !important;
	line-height: 1.08 !important;
	letter-spacing: -0.04em;
}

/* Text pod nadpisom */
.dc-price-lead {
	max-width: 820px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	font-size: 17px !important;
	line-height: 1.65 !important;
}

/* Poznámka pod textom */
.dc-price-note {
	max-width: 880px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

/* Kategórie širšie a na stred */
.dc-price-grid {
	max-width: 980px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

/* Tabuľky nech ostanú čitateľné */
.dc-price-table td:first-child,
.dc-price-table th:first-child {
	text-align: left !important;
}

/* CTA box dole rovnaká šírka ako cenník */
.dc-price-footer {
	max-width: 980px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	text-align: left;
}

/* Mobilná úprava */
@media (max-width: 760px) {
	.dc-price-page {
		padding-top: 32px !important;
	}

	.dc-price-title {
		font-size: 34px !important;
		line-height: 1.12 !important;
	}

	.dc-price-wrap {
		padding-left: 18px !important;
		padding-right: 18px !important;
	}
}

/* Cenník – odstránenie veľkej hornej medzery */
body.page-id-17 .container.section {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

/* Cenník – samotný blok bližšie k menu */
body.page-id-17 .dc-price-page {
	padding-top: 20px !important;
	margin-top: 0 !important;
}

/* Cenník – menší horný priestor v hero časti */
body.page-id-17 .dc-price-hero {
	margin-top: 0 !important;
	margin-bottom: 36px !important;
}

/* Jemne zmenšiť hlavný nadpis */
body.page-id-17 .dc-price-title {
	font-size: clamp(34px, 3.6vw, 48px) !important;
	line-height: 1.08 !important;
	max-width: 980px !important;
}

/* Na širšej obrazovke nech je nadpis skôr na 1–2 riadky */
@media (min-width: 1100px) {
	body.page-id-17 .dc-price-title {
		font-size: 48px !important;
	}
}

/* =========================================================
   DentiClinic – jemné rozšírenie obsahu + vycentrovanie footra
   ========================================================= */

/* Celkové mierne rozšírenie obsahu webu */
.container {
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 32px;
	padding-right: 32px;
}

/* Hlavička nech ostane pekne zarovnaná s obsahom */
.site-header .container,
.site-header__inner,
.header__inner {
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
}

/* Hero sekcia – lepšie vyváženie šírky */
.hero .container,
.hero__inner,
.front-hero .container {
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
}

/* Footer – zarovnanie na rovnakú šírku ako hlavička */
.site-footer .container,
.footer .container,
.site-footer__inner,
.footer__inner {
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 32px;
	padding-right: 32px;
}

/* Footer obsah – krajšie rozloženie na celú šírku */
.site-footer__grid,
.footer__grid,
.footer-widgets,
.footer__top {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 64px;
	align-items: start;
	width: 100%;
}

/* Rýchle odkazy vo footri – nech nie sú príliš natlačené */
.site-footer a,
.footer a {
	text-decoration: none;
}

/* Spodný copyright zarovnať s obsahom */
.site-footer__bottom,
.footer__bottom {
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 32px;
	padding-right: 32px;
}

/* Väčší a vzdušnejší footer */
.site-footer,
.footer {
	padding-top: 72px;
	padding-bottom: 32px;
}

/* Mobil a tablet */
@media (max-width: 900px) {
	.container,
	.site-header .container,
	.site-header__inner,
	.header__inner,
	.site-footer .container,
	.footer .container,
	.site-footer__inner,
	.footer__inner,
	.site-footer__bottom,
	.footer__bottom {
		padding-left: 22px;
		padding-right: 22px;
	}

	.site-footer__grid,
	.footer__grid,
	.footer-widgets,
	.footer__top {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

@media (max-width: 520px) {
	.container,
	.site-footer .container,
	.footer .container {
		padding-left: 18px;
		padding-right: 18px;
	}
}

/* ==========================================================================
   DentiClinic – zdravotné poisťovne na hlavnej stránke
   ========================================================================== */

.stats--insurance {
	padding: clamp(46px, 5.5vw, 72px) 0;
	background:
		radial-gradient(
			900px 380px at 50% 0%,
			rgba(184, 172, 160, 0.14),
			transparent 68%
		),
		var(--dc-navy);
}

.stats__insurance {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.stats__insurance-kicker {
	margin: 0 0 8px;
	color: var(--dc-taupe);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.stats__insurance-title {
	margin: 0;
	color: #ffffff;
	font-size: clamp(1.8rem, 3.4vw, 2.7rem);
	line-height: 1.15;
}

.stats__insurance-text {
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 1rem;
}

.stats__insurance-logos {
	width: min(900px, 100%);
	margin-top: 30px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.stats__insurance-logos img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	background: transparent;
	border: 0;
	box-shadow: none;
}

@media (max-width: 760px) {
	.stats--insurance {
		padding: 42px 0;
	}

	.stats__insurance-title {
		font-size: 1.75rem;
	}

	.stats__insurance-text {
		font-size: 0.95rem;
	}

	.stats__insurance-logos {
		margin-top: 24px;
		padding-top: 22px;
	}
}

