/* ==========================================================================
   GUTTLOVA REALITY - design system
   ========================================================================== */

:root {
	--accent: #0c2749;
	--accent-light: #1a3a63;
	--ink: #1a1a1a;
	--ink-soft: #4a4a4a;
	--bg: #ffffff;
	--bg-soft: #f6f4ef;
	--bg-card: #f0ede5;
	--border: #e2ddd3;
	--white: #ffffff;
	--font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
	--font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
	--radius: 4px;
	--container: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--bg);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 32px;
}
@media (max-width: 600px) {
	.container { padding: 0 20px; }
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 0.5em;
	color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 3.8vw, 2.9rem); font-weight: 600; }
h3 { font-size: 1.45rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.kicker {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 1rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 32px;
	background: var(--accent);
	color: var(--white);
	font-weight: 600;
	font-size: 0.95rem;
	border: none;
	border-radius: var(--radius);
	cursor: pointer;
	transition: background 0.25s ease, transform 0.2s ease;
}
.btn:hover { background: var(--accent-light); transform: translateY(-1px); }

.btn-outline {
	background: transparent;
	color: var(--accent);
	border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--white); }

section { padding: 96px 0; }
@media (max-width: 768px) {
	section { padding: 64px 0; }
}

/* ===================== HEADER ===================== */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	background: rgba(255,255,255,0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s ease;
}
.site-header.is-scrolled {
	border-bottom-color: var(--border);
	box-shadow: 0 2px 16px rgba(12,39,73,.06);
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 18px;
	padding-bottom: 18px;
}
.site-logo { display: flex; align-items: center; }
.site-logo a { display: flex; align-items: center; }
.site-logo img {
	height: 52px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
}
.site-logo a.site-logo-text {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 600;
	color: var(--accent);
	white-space: nowrap;
	letter-spacing: 0.01em;
}
.primary-nav ul {
	display: flex;
	gap: 32px;
	list-style: none;
	margin: 0; padding: 0;
}
.primary-nav a {
	font-size: 0.92rem;
	font-weight: 500;
	color: var(--ink);
	transition: color 0.2s ease;
}
.primary-nav a:hover { color: var(--accent); }

.header-cta { display: flex; align-items: center; gap: 24px; }
.header-cta .btn { padding: 11px 24px; font-size: 0.88rem; }

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.menu-toggle span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--ink);
	margin: 5px 0;
}

@media (max-width: 900px) {
	.primary-nav {
		display: block;
		position: fixed;
		top: 76px; left: 0; right: 0;
		background: var(--white);
		border-bottom: 1px solid var(--border);
		padding: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s cubic-bezier(.22,.61,.36,1), padding 0.3s ease;
		box-shadow: 0 8px 24px rgba(12,39,73,.08);
	}
	.primary-nav.is-open {
		max-height: 400px;
		padding: 16px 0 24px;
	}
	.primary-nav ul {
		flex-direction: column;
		gap: 0;
		padding: 0 32px;
	}
	.primary-nav li { border-bottom: 1px solid var(--border); }
	.primary-nav a { display: block; padding: 14px 0; font-size: 1rem; }
	.header-cta .btn-text { display: none; }
	.menu-toggle { display: block; }
}

/* ===================== HERO ===================== */
.hero {
	padding: 180px 0 100px;
	background: var(--bg-soft);
	overflow: hidden;
}
.hero .container {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 64px;
	align-items: center;
}
.hero-content h1 {
	margin-bottom: 0.3em;
	font-size: clamp(1.6rem, 2.5vw, 2.15rem);
	line-height: 1.15;
}
@media (max-width: 900px) {
	.hero-content h1 { font-size: clamp(1.9rem, 6vw, 2.6rem); }
}
.hero-subtitle {
	font-size: 1.15rem;
	color: var(--ink-soft);
	max-width: 520px;
	margin-bottom: 2.2rem;
}
.hero-image-wrap {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	background: #ececec;
}
.hero-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	aspect-ratio: 4/5;
}
.hero-image-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 60%, rgba(12,39,73,0.15) 100%);
	pointer-events: none;
}

/* ===================== HERO BADGE - pás přes spodek fotky ===================== */
.hero-badge {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
}

/* --- varianta: text --- */
.hero-badge-text {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 20px;
	background: linear-gradient(180deg, rgba(12,39,73,0.0) 0%, rgba(12,39,73,0.78) 38%, rgba(12,39,73,0.92) 100%);
	backdrop-filter: blur(2px);
}
.hero-badge-text span {
	color: var(--white);
	font-weight: 700;
	font-size: 0.92rem;
	letter-spacing: 0.02em;
	text-align: center;
	text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.hero-badge-text::before {
	content: '★';
	color: #f0c14b;
	font-size: 0.95rem;
	flex-shrink: 0;
}

/* --- varianta: obrázek (medaile/odznak) jako pás --- */
.hero-badge-image {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 20px;
	background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.94) 35%, rgba(255,255,255,0.98) 100%);
	backdrop-filter: blur(3px);
	overflow: hidden;
}
.hero-badge-image .badge-icon-wrap {
	position: relative;
	width: 52px;
	height: 52px;
	min-width: 52px;
	min-height: 52px;
	max-width: 52px;
	max-height: 52px;
	border-radius: 50%;
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(12,39,73,0.25), 0 0 0 2px var(--accent);
	overflow: hidden;
	flex-shrink: 0;
}
.hero-badge-image img {
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	min-width: 0 !important;
	object-fit: contain;
	padding: 8px;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
	display: block;
}
.hero-badge-image .badge-caption {
	color: var(--accent);
	font-weight: 700;
	font-size: 0.85rem;
	line-height: 1.3;
	letter-spacing: 0.01em;
}

/* Lesklý paprsek, který periodicky přejede přes celý pás */
.hero-badge-image::after,
.hero-badge-text::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 55%;
	z-index: 2;
	background: linear-gradient(
		100deg,
		transparent 20%,
		rgba(255,255,255,0.55) 48%,
		rgba(255,255,255,0.55) 52%,
		transparent 80%
	);
	transform: translateX(-160%);
	animation: badge-shine 4.5s ease-in-out infinite;
	pointer-events: none;
}

@keyframes badge-shine {
	0%   { transform: translateX(-160%); }
	30%  { transform: translateX(220%); }
	100% { transform: translateX(220%); }
}

@media (max-width: 900px) {
	.hero-badge-text { padding: 12px 16px; }
	.hero-badge-text span { font-size: 0.8rem; }
	.hero-badge-image { padding: 10px 14px; gap: 10px; }
	.hero-badge-image .badge-icon-wrap {
		width: 42px; height: 42px; min-width: 42px; min-height: 42px; max-width: 42px; max-height: 42px;
	}
	.hero-badge-image .badge-caption { font-size: 0.75rem; }
}

@media (max-width: 900px) {
	.hero { padding: 140px 0 64px; }
	.hero .container { grid-template-columns: 1fr; gap: 32px; }
	.hero-image-wrap { order: -1; width: 100%; max-width: 480px; margin: 0 auto; }
	.hero-image-wrap img { aspect-ratio: 4/5; }
}

/* ===================== SLUŽBY ===================== */
.services-section { background: var(--bg); }
.services-header {
	max-width: 640px;
	margin-bottom: 56px;
}
.services-header p { font-size: 1.05rem; }
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}
.service-card {
	background: var(--bg);
	border-radius: var(--radius);
	overflow: hidden;
	transition: background 0.2s ease, box-shadow 0.3s ease, transform 0.3s ease;
	display: flex;
	flex-direction: column;
}
.service-card:hover {
	background: var(--bg-soft);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(12,39,73,.08);
}
.service-card-img {
	width: 100%;
	aspect-ratio: 4/3;
	overflow: hidden;
	background: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
}
.service-card-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 24px;
	box-sizing: border-box;
	transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body {
	padding: 32px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.service-number {
	font-family: var(--font-display);
	font-size: 2.6rem;
	font-weight: 400;
	color: var(--border);
	line-height: 1;
	margin-bottom: 16px;
	font-style: italic;
}
.service-card h3 {
	font-size: 1.3rem;
	margin-bottom: 10px;
	color: var(--accent);
}
.service-card p {
	font-size: 0.92rem;
	color: var(--ink-soft);
	margin: 0 0 auto;
	line-height: 1.65;
}
.service-link {
	display: inline-block;
	margin-top: 20px;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: 0.01em;
	transition: gap 0.2s ease;
}
.service-card:hover .service-link { text-decoration: underline; }
@media (max-width: 900px) {
	.services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
	.service-card { padding: 28px 24px; }
}

/* ===================== O MNĚ ===================== */
.about-section .container {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 72px;
	align-items: center;
}
.about-image img {
	border-radius: var(--radius);
	aspect-ratio: 3/4;
	object-fit: contain;
	width: 100%;
	background: #ececec;
}
.about-text p {
	white-space: pre-line;
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
	-webkit-hyphens: auto;
}

.badges-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 1.5rem 0 2rem;
	padding: 0;
}
.badge-item {
	display: inline-block;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--accent);
	background: var(--bg-card);
	border: 1px solid var(--border);
	padding: 7px 16px;
	border-radius: 999px;
}

/* Badge s obrázkem — hover náhled */
.badge-item-wrap {
	position: relative;
	list-style: none;
}
.badge-item-wrap .badge-item {
	cursor: pointer;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.badge-item-wrap:hover .badge-item,
.badge-item-wrap:focus-within .badge-item,
.badge-item-wrap.is-active .badge-item {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--white);
}
.badge-preview {
	position: absolute;
	bottom: calc(100% + 18px);
	left: 50%;
	transform: translate(-50%, 14px) scale(0.9);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s cubic-bezier(.22,.9,.34,1), transform 0.4s cubic-bezier(.22,.9,.34,1);
	background: var(--white);
	border-radius: 14px;
	box-shadow: 0 24px 56px rgba(12,39,73,0.28);
	padding: 14px;
	width: min(380px, 82vw);
	z-index: 30;
}
.badge-preview a {
	display: block;
	position: relative;
	cursor: zoom-in;
	border-radius: 9px;
	overflow: hidden;
}
.badge-preview img {
	width: 100%;
	height: auto;
	max-height: 60vh;
	object-fit: contain;
	border-radius: 9px;
	display: block;
	background: var(--bg-soft);
}
.badge-preview a::after {
	content: '🔍';
	position: absolute;
	top: 10px;
	right: 10px;
	width: 36px;
	height: 36px;
	background: rgba(255,255,255,0.92);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.badge-preview-caption {
	display: block;
	margin-top: 10px;
	font-size: 0.82rem;
	color: var(--ink-soft);
	text-align: center;
	line-height: 1.4;
}
.badge-preview-caption em {
	color: var(--accent);
	font-style: normal;
	font-weight: 600;
}
.badge-preview::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 9px solid transparent;
	border-top-color: var(--white);
}
.badge-item-wrap:hover .badge-preview,
.badge-item-wrap:focus-within .badge-preview,
.badge-item-wrap.is-active .badge-preview {
	opacity: 1;
	transform: translate(-50%, 0) scale(1);
	pointer-events: auto;
}
@media (max-width: 600px) {
	.badge-preview {
		position: fixed;
		bottom: auto;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) scale(0.9);
		width: min(340px, 88vw);
	}
	.badge-item-wrap:hover .badge-preview,
	.badge-item-wrap:focus-within .badge-preview,
	.badge-item-wrap.is-active .badge-preview {
		transform: translate(-50%, -50%) scale(1);
	}
	.badge-preview::after { display: none; }
}

@media (max-width: 900px) {
	.about-section .container { grid-template-columns: 1fr; gap: 40px; }
	.about-image { max-width: 360px; margin: 0 auto; }
}

/* ===================== NEMOVITOSTI ===================== */
.listings-section { background: var(--bg-soft); }
.listings-header {
	max-width: 640px;
	margin-bottom: 56px;
}
.listings-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.listing-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.listing-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(12,39,73,0.1);
}
.listing-thumb { aspect-ratio: 4/3; overflow: hidden; background: #ececec; }
.listing-thumb img { width: 100%; height: 100%; object-fit: contain; }
.listing-body { padding: 24px; }
.listing-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 10px;
}
.listing-tag {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--white);
	background: var(--accent);
	padding: 4px 10px;
	border-radius: 3px;
}
/* Stav: Prodáno */
.listing-tag--prodano {
	background: #c0392b;
}
/* Stav: Rezervováno */
.listing-tag--rezervovano {
	background: #d35400;
}
/* Stav: V nabídce */
.listing-tag--aktivni {
	background: #27ae60;
}
.listing-body h3 { margin-bottom: 6px; font-size: 1.15rem; }
.listing-location { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 14px; }
.listing-meta {
	display: flex;
	gap: 16px;
	font-size: 0.85rem;
	color: var(--ink-soft);
	border-top: 1px solid var(--border);
	padding-top: 14px;
	margin-top: 14px;
}
.listing-price {
	font-weight: 700;
	color: var(--accent);
	font-size: 1.15rem;
	margin-top: 12px;
}
.listings-footer { text-align: center; margin-top: 48px; }

@media (max-width: 900px) {
	.listings-grid { grid-template-columns: 1fr; }
}

/* ===================== REFERENCE ===================== */
.reviews-section { background: var(--bg-soft); }
.reviews-header { margin-bottom: 48px; }
.reviews-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
}
.reviews-stars { color: #f0c14b; font-size: 1.2rem; letter-spacing: 2px; }
.reviews-score { font-weight: 700; color: var(--ink); }
.reviews-source { color: var(--ink-soft); font-size: 0.88rem; }

.reviews-track-wrap {
	position: relative;
	overflow: hidden;
}
.reviews-track {
	display: flex;
	gap: 24px;
	transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}
.review-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 36px 32px;
	min-width: calc(33.333% - 16px);
	max-width: calc(33.333% - 16px);
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.review-stars { color: #f0c14b; font-size: 1rem; letter-spacing: 2px; }
.review-text {
	margin: 0;
	font-size: 0.97rem;
	line-height: 1.7;
	color: var(--ink-soft);
	font-style: italic;
	flex: 1;
}
.review-text::before { content: '"'; }
.review-text::after  { content: '"'; }
.review-author {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--accent);
	font-style: normal;
}
.reviews-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: var(--white);
	border: 1px solid var(--border);
	color: var(--accent);
	font-size: 1.8rem;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, box-shadow 0.2s;
	z-index: 2;
	padding: 0;
	line-height: 1;
}
.reviews-nav:hover { background: var(--accent); color: var(--white); box-shadow: 0 4px 12px rgba(12,39,73,.2); }
.reviews-prev { left: -20px; }
.reviews-next { right: -20px; }
.reviews-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 28px;
}
.reviews-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--border);
	border: none;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
	padding: 0;
}
.reviews-dot.is-active {
	background: var(--accent);
	transform: scale(1.3);
}
@media (max-width: 900px) {
	.review-card { min-width: calc(50% - 12px); max-width: calc(50% - 12px); }
	.reviews-prev { left: 0; }
	.reviews-next { right: 0; }
}
@media (max-width: 600px) {
	.review-card { min-width: 100%; max-width: 100%; padding: 28px 22px; }
}

/* ===================== KONTAKT ===================== */
.contact-section .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
}
.contact-info-list { list-style: none; margin: 2rem 0; padding: 0; }
.contact-info-list li {
	display: flex;
	gap: 14px;
	margin-bottom: 18px;
	font-size: 1.02rem;
}
.contact-info-list strong { color: var(--accent); min-width: 90px; display: inline-block; }

.contact-form { display: grid; gap: 16px; }
.contact-form input, .contact-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: 0.95rem;
	background: var(--bg-soft);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 900px) {
	.contact-section .container { grid-template-columns: 1fr; gap: 40px; }
	.contact-form .form-row { grid-template-columns: 1fr; }
}

/* ===================== FOOTER ===================== */
.site-footer {
	background: var(--accent);
	color: rgba(255,255,255,0.85);
	padding: 56px 0 28px;
}
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: var(--white); }
.footer-top {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 32px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(255,255,255,0.15);
	margin-bottom: 24px;
}
.footer-social { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-bottom {
	font-size: 0.85rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	color: rgba(255,255,255,0.6);
}

/* ===================== LIGHTBOX ===================== */
.lightbox-overlay {
	position: fixed;
	inset: 0;
	background: rgba(10,15,25,0.92);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	padding: 40px;
}
.lightbox-overlay.is-active { display: flex; }
.lightbox-overlay img {
	max-width: 90vw;
	max-height: 85vh;
	object-fit: contain;
	border-radius: var(--radius);
}
.lightbox-close {
	position: absolute;
	top: 24px; right: 32px;
	color: var(--white);
	font-size: 2rem;
	cursor: pointer;
	background: none;
	border: none;
}
.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.1);
	border: none;
	color: var(--white);
	font-size: 1.8rem;
	cursor: pointer;
	padding: 16px 20px;
	border-radius: var(--radius);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ===================== YOUTUBE SEKCE ===================== */
.youtube-section { background: var(--bg); }
.youtube-header { max-width: 680px; margin-bottom: 52px; }
.youtube-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.yt-card { display: flex; flex-direction: column; gap: 14px; }
.yt-thumb {
	position: relative;
	display: block;
	aspect-ratio: 16/9;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--ink);
}
.yt-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease, opacity 0.3s ease;
	opacity: 0.9;
}
.yt-thumb:hover img { transform: scale(1.04); opacity: 0.7; }
.yt-play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}
.yt-play svg { width: 56px; height: 40px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); }
.yt-thumb:hover .yt-play { transform: scale(1.1); }
.yt-title {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--ink);
	line-height: 1.4;
	margin: 0;
}
@media (max-width: 900px) { .youtube-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .youtube-grid { grid-template-columns: 1fr; } }

/* ===================== UTILITY ===================== */
.text-center { text-align: center; }
.breadcrumbs {
	font-size: 0.85rem;
	color: var(--ink-soft);
	padding: 140px 0 24px;
}
.breadcrumbs a { color: var(--accent); }

/* Animace — výchozí stav (neviditelný, posunutý dolů) */
[data-animate] {
	opacity: 0;
	transform: translateY(36px);
	transition: opacity 0.75s cubic-bezier(.22,.61,.36,1), transform 0.75s cubic-bezier(.22,.61,.36,1);
}
[data-animate].is-visible {
	opacity: 1;
	transform: translateY(0);
}
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.45s; }

/* Parallax hero overlay */
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 70% 60%, rgba(12,39,73,.04) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}
.hero { position: relative; }
.hero .container { position: relative; z-index: 1; }

/* ===================== SEKCE — SPODNÍ PŘECHOD ===================== */
/* Světlá sekce → tmavá: plynulý přechod dolů */
.services-section {
	position: relative;
}
.services-section::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 120px;
	background: linear-gradient(to bottom, transparent, var(--bg-soft));
	pointer-events: none;
}
.about-section::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 100px;
	background: linear-gradient(to bottom, transparent, var(--bg));
	pointer-events: none;
}
.about-section { position: relative; }

/* ===================== YOUTUBE — HOVER VIDEO PREVIEW ===================== */
.yt-thumb .yt-video-preview {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}
.yt-thumb:hover .yt-video-preview { opacity: 1; }
.yt-thumb:hover img:not(.yt-video-preview) { opacity: 0; }
.yt-thumb iframe.yt-hover-iframe {
	position: absolute;
	inset: -60px -10% -60px;
	width: 120%;
	height: calc(100% + 120px);
	border: 0;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.5s ease;
}
.yt-thumb:hover iframe.yt-hover-iframe { opacity: 1; }
.yt-thumb:hover .yt-play { opacity: 0; }

/* ===================== REALITNÍ PROCES ===================== */
.process-section {
	background: var(--accent);
	color: var(--white);
	padding: 96px 0;
	overflow: hidden;
}
.process-section .kicker { color: rgba(255,255,255,0.6); }
.process-section h2 { color: var(--white); margin-bottom: 64px; }
.process-wheel {
	position: relative;
	width: 680px;
	height: 680px;
	max-width: 92vw;
	max-height: 92vw;
	margin: 0 auto;
}
.process-center {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 148px;
	height: 148px;
	background: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 600;
	color: var(--accent);
	text-align: center;
	line-height: 1.3;
	border: 4px solid rgba(255,255,255,0.25);
	box-shadow: 0 8px 28px rgba(0,0,0,0.25);
	z-index: 3;
	overflow: hidden;
	padding: 10px;
	box-sizing: border-box;
}
.process-center img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.process-ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.15);
	animation: process-rotate 40s linear infinite;
}
.process-step {
	position: absolute;
	transform: translate(-50%, -50%);
	cursor: default;
	z-index: 2;
	width: 140px;
}
.process-step-inner {
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.22);
	border-radius: 8px;
	padding: 12px 14px;
	font-size: 0.76rem;
	font-weight: 600;
	color: var(--white);
	white-space: normal;
	line-height: 1.35;
	text-align: center;
	transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
	backdrop-filter: blur(4px);
}
.process-step:hover {
	z-index: 4;
}
.process-step:hover .process-step-inner {
	background: var(--white);
	color: var(--accent);
	transform: scale(1.1);
	box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.process-step-number {
	display: block;
	font-size: 0.62rem;
	opacity: 0.6;
	margin-bottom: 3px;
	letter-spacing: 0.08em;
}
/* Animace kroužení prstence */
@keyframes process-rotate {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}
/* Vstupní "roztočení" jednotlivých kroků při scrollu do view */
.process-step {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(-280deg) scale(0.3);
	transition: opacity 0.7s cubic-bezier(.22,.9,.34,1), transform 0.85s cubic-bezier(.22,.9,.34,1);
}
.process-wheel.is-spun .process-step {
	opacity: 1;
	transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

/* Na mobilu přejdeme na vertikální seznam */
@media (max-width: 760px) {
	.process-wheel { display: none; }
	.process-list { display: flex !important; }
}
.process-list {
	display: none;
	flex-direction: column;
	gap: 12px;
	margin-top: 32px;
}
.process-list-item {
	display: flex;
	align-items: center;
	gap: 16px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 8px;
	padding: 14px 18px;
	color: var(--white);
	font-size: 0.9rem;
	font-weight: 600;
}
.process-list-num {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 400;
	opacity: 0.4;
	min-width: 32px;
	font-style: italic;
}
.process-list-logo {
	display: flex;
	justify-content: center;
	margin-bottom: 24px;
}
.process-list-logo img {
	width: 100px;
	height: 100px;
	object-fit: contain;
	border-radius: 50%;
	background: var(--white);
	padding: 12px;
	box-sizing: border-box;
}

/* ===================== PATIČKA — SOCIÁLNÍ SÍTĚ ===================== */
.footer-social-label {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 12px;
}
.footer-social-icon {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 44px !important;
	height: 44px !important;
	min-width: 44px !important;
	min-height: 44px !important;
	max-width: 44px !important;
	max-height: 44px !important;
	border-radius: 50%;
	background: var(--white) !important;
	border: 1.5px solid rgba(255,255,255,0.9);
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	overflow: hidden;
	flex-shrink: 0;
}
.footer-social-icon:hover {
	transform: translateY(-3px) scale(1.08);
	box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.footer-social-icon img {
	width: 24px !important;
	height: 24px !important;
	max-width: 24px !important;
	max-height: 24px !important;
	min-width: 0 !important;
	object-fit: contain;
	display: block;
}

/* ===================== PATIČKA — KREDIT ===================== */
.footer-credit {
	text-align: center;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid rgba(255,255,255,0.1);
	font-size: 0.82rem;
	color: rgba(255,255,255,0.5);
}
.footer-credit a {
	color: #e63946;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.2s ease;
}
.footer-credit a:hover {
	color: #ff6b73;
	text-decoration: underline;
}

/* ===================== CONTACT FORM 7 — STYLOVÁNÍ ===================== */
.cf7-wrap .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.cf7-wrap .wpcf7-form p {
	margin: 0;
	color: inherit;
}
/* Řádky po dvou polích vedle sebe — obalte pár shortcodů do <div class="form-row">...</div> ve formuláři CF7 */
.cf7-wrap .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
@media (max-width: 600px) {
	.cf7-wrap .form-row { grid-template-columns: 1fr; }
}

.cf7-wrap input[type="text"],
.cf7-wrap input[type="email"],
.cf7-wrap input[type="tel"],
.cf7-wrap input[type="number"],
.cf7-wrap input[type="url"],
.cf7-wrap textarea,
.cf7-wrap select {
	width: 100%;
	padding: 15px 18px;
	border: 1px solid var(--border);
	border-radius: 10px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	background: var(--bg-soft);
	color: var(--ink);
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cf7-wrap input:focus,
.cf7-wrap textarea:focus,
.cf7-wrap select:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(12,39,73,0.08);
	background: var(--white);
}
.cf7-wrap input::placeholder,
.cf7-wrap textarea::placeholder { color: #9a9a9a; }

.cf7-wrap textarea { resize: vertical; min-height: 120px; }

/* Select — vlastní šipka */
.cf7-wrap select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23666666' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 18px center;
	padding-right: 44px;
	cursor: pointer;
}

/* Souhlas se zpracováním údajů (acceptance shortcode) */
.cf7-wrap .wpcf7-acceptance,
.cf7-wrap .cf7-consent {
	font-size: 0.82rem;
	color: var(--ink-soft);
	line-height: 1.5;
}
.cf7-wrap .wpcf7-acceptance a,
.cf7-wrap .cf7-consent a {
	color: var(--accent);
	text-decoration: underline;
}
.cf7-wrap .wpcf7-list-item { margin: 0; }

/* Tlačítko odeslat */
.cf7-wrap input[type="submit"],
.cf7-wrap .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: fit-content;
	padding: 16px 34px;
	background: var(--accent);
	color: var(--white);
	font-weight: 700;
	font-size: 0.95rem;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.2s ease;
}
.cf7-wrap input[type="submit"]:hover,
.cf7-wrap .wpcf7-submit:hover {
	background: var(--accent-light);
	transform: translateY(-1px);
}
.cf7-wrap input[type="submit"]::after {
	content: '→';
}

/* Stavy odeslání CF7 */
.cf7-wrap .wpcf7-spinner { margin-left: 10px; }
.cf7-wrap .wpcf7-not-valid-tip {
	font-size: 0.8rem;
	color: #c0392b;
	margin-top: 4px;
}
.cf7-wrap .wpcf7-response-output {
	border-radius: 10px;
	padding: 14px 18px;
	font-size: 0.88rem;
	margin-top: 8px;
}
.cf7-wrap form.sent .wpcf7-response-output {
	border-color: #27ae60;
	color: #1e7e42;
	background: rgba(39,174,96,0.08);
}
.cf7-wrap form.failed .wpcf7-response-output,
.cf7-wrap form.aborted .wpcf7-response-output {
	border-color: #c0392b;
	color: #922b21;
	background: rgba(192,57,43,0.08);
}
.cf7-wrap form.invalid .wpcf7-response-output {
	border-color: #d35400;
	color: #a04000;
	background: rgba(211,84,0,0.08);
}

/* Box pro formulář Odhad ceny na podstránce služby */
.estimate-form-box {
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 36px;
}
@media (max-width: 600px) {
	.estimate-form-box { padding: 24px 20px; }
}

/* ===================== DETAIL NEMOVITOSTI ===================== */
.property-page { padding-bottom: 96px; }

/* --- Galerie --- */
.property-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 130px;
	gap: 10px;
	margin-bottom: 40px;
	border-radius: 12px;
	overflow: hidden;
}
.property-gallery-item {
	position: relative;
	display: block;
	overflow: hidden;
	background: #ececec;
}
.property-gallery-item.is-main {
	grid-column: span 2;
	grid-row: span 2;
}
.property-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.property-gallery-item:hover img { transform: scale(1.05); }
.property-gallery-more {
	position: absolute;
	inset: 0;
	background: rgba(12,39,73,0.55);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.95rem;
}
@media (max-width: 900px) {
	.property-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 110px; }
	.property-gallery-item.is-main { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 560px) {
	.property-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 90px; }
}

/* --- Hlavička inzerátu --- */
.property-header { margin-bottom: 36px; }
.property-header-top {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}
.property-location-badge {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--accent);
	background: var(--bg-card);
	border: 1px solid var(--border);
	padding: 5px 12px;
	border-radius: 999px;
}
.property-header h1 { margin-bottom: 0.25em; }
.property-address {
	font-size: 1.1rem;
	color: var(--ink-soft);
	margin-bottom: 20px;
}
.property-quickfacts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 28px;
	font-size: 0.95rem;
	color: var(--ink-soft);
	padding-top: 18px;
	border-top: 1px solid var(--border);
}
.property-quickfacts strong { color: var(--ink); font-weight: 600; }

/* --- Hlavní layout: popis + sidebar --- */
.property-layout {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 56px;
	margin-bottom: 64px;
	align-items: start;
}
.property-video {
	aspect-ratio: 16/9;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 40px;
}
.property-video iframe { width: 100%; height: 100%; border: 0; }
.property-desc-title { font-size: 1.5rem; margin-bottom: 1rem; }
.property-description p { line-height: 1.75; color: var(--ink-soft); margin-bottom: 1.2em; }
.property-description strong { color: var(--ink); }

.property-sidebar { position: sticky; top: 110px; }
.property-price-card {
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 30px;
}
.property-price-label {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-soft);
	margin-bottom: 6px;
}
.property-price {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 600;
	color: var(--accent);
	margin-bottom: 24px;
}
.property-specs {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}
.property-specs li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 11px 0;
	border-bottom: 1px solid var(--border);
	font-size: 0.92rem;
}
.property-specs li span { color: var(--ink-soft); }
.property-specs li strong { color: var(--ink); text-align: right; }

@media (max-width: 900px) {
	.property-layout { grid-template-columns: 1fr; gap: 32px; }
	.property-sidebar { position: static; }
}

/* --- Kontaktní karta se zájmovým formulářem --- */
.property-contact-card {
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 48px;
	margin-bottom: 64px;
}
.property-contact-card h2 { margin-bottom: 32px; }
.property-contact-grid {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 48px;
	align-items: start;
}
.property-agent {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 14px;
}
.property-agent-photo {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--bg-card);
	border: 3px solid var(--white);
	box-shadow: 0 8px 24px rgba(12,39,73,0.15);
}
.property-agent-photo img { width: 100%; height: 100%; object-fit: cover; }
.property-agent-info { display: flex; flex-direction: column; gap: 4px; }
.property-agent-info strong { font-size: 1.05rem; color: var(--ink); }
.property-agent-info a { color: var(--accent); font-size: 0.92rem; }
.property-agent-info a:hover { text-decoration: underline; }

@media (max-width: 700px) {
	.property-contact-card { padding: 28px 22px; }
	.property-contact-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* --- Mapa --- */
.property-map-section { margin-bottom: 40px; }
.property-map-section h2 { margin-bottom: 20px; }
.property-map {
	aspect-ratio: 16/7;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--border);
}
.property-map iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 700px) {
	.property-map { aspect-ratio: 4/3; }
}

/* ===================== FILTR PODLE STAVU (archiv nemovitostí) ===================== */
.stav-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 8px;
}
.stav-filter-item {
	display: inline-flex;
	align-items: center;
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--ink-soft);
	background: var(--bg-soft);
	border: 1px solid var(--border);
	padding: 9px 20px;
	border-radius: 999px;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.stav-filter-item:hover {
	border-color: var(--accent);
	color: var(--accent);
}
.stav-filter-item.is-active {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--white);
}
