/* =====================================================================
   LM Clinic — Transplantace vlasů a obočí (microsite)
   Scoped under .tx / .tx-nav / .tx-topbar so it never leaks elsewhere.
   Type: Cormorant (display serif) + Inter (UI/body). Brand brown #541619.
   ===================================================================== */

.tx,
.tx-nav,
.tx-topbar,
.tx-promo {
	--wine: #541619;
	--wine-deep: #3d0f12;
	--wine-soft: #6e2327;
	--gold: #b08d57;
	--paper: #ffffff;
	--cream: #f3efe6;
	--cream-2: #ece4d6;
	--ink: #241c1a;
	--ink-soft: #6c615b;
	--taupe: #ab9e91;
	--taupe-2: #b7ab9e;
	--line: rgba(36, 28, 26, 0.12);
	--shadow-sm: 0 6px 20px rgba(36, 22, 20, 0.06);
	--shadow-md: 0 20px 50px rgba(36, 22, 20, 0.13);
	--shadow-lg: 0 36px 80px rgba(36, 22, 20, 0.22);
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- base ---------- */
.tx {
	font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
	color: var(--ink);
	background: var(--paper);
	font-size: 17px;
	line-height: 1.62;
	font-weight: 400;
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
}

.tx *,
.tx-nav *,
.tx-topbar * {
	box-sizing: border-box;
}

.tx h1,
.tx h2,
.tx h3,
.tx .serif {
	font-family: 'Cormorant', Georgia, serif;
	font-weight: 500;
	line-height: 1.06;
	letter-spacing: 0.005em;
	color: var(--ink);
	margin: 0;
}

.tx p { margin: 0 0 1em 0; }
.tx a { color: var(--wine); text-decoration: none; transition: color 0.2s var(--ease); }
.tx b, .tx strong { font-weight: 700; }

.tx .wrap {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 40px;
}

.tx .section { padding: 96px 0; position: relative; }
.tx .bg-cream { background: var(--cream); }

.tx .eyebrow {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 12.5px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--wine);
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
}
.tx .eyebrow::before {
	content: '';
	width: 28px;
	height: 1.5px;
	background: var(--wine);
	display: inline-block;
}

.tx .h-sec {
	font-size: clamp(34px, 4.6vw, 56px);
	font-weight: 500;
}
.tx .lead {
	font-size: 18px;
	color: var(--ink-soft);
	max-width: 640px;
}

/* arrow link */
.tx .arrowlink {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-weight: 600;
	font-size: 15px;
	color: var(--wine);
}
.tx .arrowlink svg { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.tx .arrowlink:hover { text-decoration: none; }
.tx .arrowlink:hover svg { transform: translateX(4px); }

/* ---------- buttons ---------- */
.tx .btn {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.01em;
	padding: 16px 30px;
	border-radius: 999px;
	cursor: pointer;
	border: 1.5px solid transparent;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.2s, border-color 0.25s;
	white-space: nowrap;
}
.tx .btn svg { width: 17px; height: 17px; transition: transform 0.25s var(--ease); }
.tx .btn:hover svg { transform: translateX(4px); }

.tx .btn-wine { background: var(--wine); color: #fff; box-shadow: 0 12px 26px rgba(84, 22, 25, 0.28); }
.tx .btn-wine:hover { background: var(--wine-deep); color: #fff; transform: translateY(-3px); text-decoration: none; box-shadow: 0 18px 34px rgba(84, 22, 25, 0.36); }

.tx .btn-ghost { background: transparent; color: var(--ink); border-color: rgba(36, 28, 26, 0.25); }
.tx .btn-ghost:hover { border-color: var(--wine); color: var(--wine); transform: translateY(-3px); text-decoration: none; }

.tx .btn-light { background: #fff; color: var(--wine); }
.tx .btn-light:hover { background: var(--cream); color: var(--wine); transform: translateY(-3px); text-decoration: none; }

.tx .btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.tx .btn-outline-light:hover { border-color: #fff; color: #fff; transform: translateY(-3px); text-decoration: none; }

/* =====================================================================
   TOPBAR + NAV
   ===================================================================== */
.tx-topbar {
	background: var(--wine);
	color: #f4e9e3;
	font-family: 'Inter', sans-serif;
	text-align: center;
	font-size: 13.5px;
	letter-spacing: 0.02em;
	padding: 9px 16px;
}
.tx-topbar a { color: #fff; text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
.tx-topbar a:hover { color: #fff; opacity: 0.85; }

/* prominentní promo pruh (sleva) */
.tx-promo {
	display: block;
	background: var(--gold);
	color: var(--wine-deep);
	text-align: center;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 500;
	padding: 12px 16px;
	transition: background 0.2s;
}
.tx-promo:hover { background: #a17b46; color: var(--wine-deep); text-decoration: none; }
.tx-promo-in { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.tx-promo-in svg { width: 19px; height: 19px; flex: none; }
.tx-promo b { font-weight: 800; }
.tx-promo-cta { font-weight: 700; text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
@media (max-width: 600px) {
	.tx-promo { font-size: 13px; padding: 10px 14px; line-height: 1.35; }
	.tx-promo-cta { display: none; }
}

.tx-nav {
	position: sticky;
	top: 0;
	z-index: 200;
	font-family: 'Inter', sans-serif;
	background: transparent;
	transition: background 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
	border-bottom: 1px solid transparent;
}
.tx-nav.scrolled {
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: saturate(140%) blur(12px);
	-webkit-backdrop-filter: saturate(140%) blur(12px);
	border-bottom-color: var(--line);
	box-shadow: 0 8px 30px rgba(36, 22, 20, 0.07);
}
.tx-nav .bar {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 40px;
	height: 78px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.tx-nav .logo {
	font-family: 'Cormorant', serif;
	font-weight: 600;
	font-size: 30px;
	letter-spacing: 0.01em;
	color: #fff;
	transition: color 0.3s;
	line-height: 1;
}
.tx-nav.scrolled .logo { color: var(--wine); }
.tx-nav .logo:hover { text-decoration: none; }

.tx-nav .nav-right { display: flex; align-items: center; }
.tx-nav .nav-tagline {
	margin: 0;
	text-align: right;
	font-size: 13.5px;
	line-height: 1.35;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	max-width: 300px;
	text-shadow: 0 1px 6px rgba(20, 8, 8, 0.4);
}
.tx-nav .nav-actions { display: none; align-items: center; gap: 20px; }
.tx-nav .nav-phone { font-weight: 600; font-size: 15px; color: var(--ink); white-space: nowrap; }
.tx-nav .nav-phone:hover { color: var(--wine); text-decoration: none; }
.tx-nav .nav-actions .btn {
	display: inline-flex;
	align-items: center;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 14px;
	padding: 11px 22px;
	border-radius: 999px;
	background: var(--wine);
	color: #fff;
	white-space: nowrap;
	transition: background 0.25s, transform 0.25s;
}
.tx-nav .nav-actions .btn:hover { background: var(--wine-deep); transform: translateY(-2px); color: #fff; text-decoration: none; }

/* swap: tagline only at top, phone+CTA only when scrolled */
.tx-nav.scrolled .nav-tagline { display: none; }
.tx-nav.scrolled .nav-actions { display: flex; }

@media (max-width: 780px) {
	.tx-nav .nav-tagline { display: none; }
}
@media (max-width: 620px) {
	.tx-nav .bar { height: 64px; padding: 0 18px; }
	.tx-nav .logo { font-size: 25px; }
	.tx-nav .nav-phone { display: none; }
	.tx-nav .nav-actions .btn { padding: 10px 16px; font-size: 13px; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.tx .hero {
	position: relative;
	margin-top: -78px;            /* pulled under the transparent sticky nav */
	min-height: 760px;
	display: flex;
	align-items: flex-end;
	color: #fff;
	overflow: hidden;
	background: var(--wine);      /* hnědý podklad v okrajích (navazuje na horní pruh) */
}
.tx .hero .hero-bg {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1180px;           /* obrázek na šířku obsahu */
	background: #2a1a18;
	z-index: 0;
}
.tx .hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 26%; display: block; }
.tx .hero .hero-bg::after {
	content: '';
	position: absolute; inset: 0;
	background:
		linear-gradient(90deg, rgba(30, 12, 12, 0.82) 0%, rgba(30, 12, 12, 0.45) 42%, rgba(30, 12, 12, 0) 70%),
		linear-gradient(0deg, rgba(20, 8, 8, 0.6) 0%, rgba(20, 8, 8, 0) 45%);
}
.tx .hero .hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 40px 84px;
}
.tx .hero h1 {
	color: #fff;
	font-size: clamp(52px, 8vw, 104px);
	font-weight: 500;
	line-height: 0.98;
	max-width: 760px;
}
.tx .hero .sub {
	font-family: 'Cormorant', serif;
	font-size: clamp(24px, 3.2vw, 34px);
	font-weight: 500;
	color: #f3e7e2;
	margin-top: 16px;
}
.tx .hero-cta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px 28px;
	margin-top: 34px;
}
.tx .hero-cta .phone-big {
	font-family: 'Cormorant', serif;
	font-size: 30px;
	font-weight: 600;
	color: #fff;
}
.tx .hero-cta .phone-big:hover { color: #fff; text-decoration: none; opacity: 0.85; }

.tx .hero-dates {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: var(--gold);
	color: var(--wine-deep);
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.02em;
	padding: 9px 17px 8px;
	border-radius: 999px;
	margin-bottom: 22px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.tx .hero-dates svg { width: 17px; height: 17px; flex: none; }
.tx .hero-dates b { font-weight: 800; }

/* =====================================================================
   INTRO
   ===================================================================== */
.tx .intro { text-align: center; }
.tx .intro .intro-text {
	font-family: 'Cormorant', serif;
	font-size: clamp(26px, 3.4vw, 40px);
	line-height: 1.28;
	font-weight: 500;
	max-width: 920px;
	margin: 0 auto;
	color: var(--ink);
}
.tx .intro .intro-text b { color: var(--wine); font-weight: 600; }
.tx .intro .btn { margin-top: 36px; }

/* =====================================================================
   FEATURE STRIP (icons)
   ===================================================================== */
.tx .featrow {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}
.tx .feat .ic {
	width: 46px; height: 46px;
	color: var(--wine);
	margin-bottom: 16px;
}
.tx .feat .ic svg { width: 100%; height: 100%; stroke-width: 1.2; }
.tx .feat h4 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16px; margin: 0 0 4px; }
.tx .feat p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* =====================================================================
   DOCTORS BAND
   ===================================================================== */
.tx .doctors { background: var(--wine-deep); color: #fff; }
.tx .doctors-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 66px 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}
.tx .doctors .panel { padding: 0; }
.tx .doctors .panel p {
	font-family: 'Cormorant', serif;
	font-size: clamp(26px, 2.6vw, 36px);
	line-height: 1.22;
	font-weight: 500;
	margin: 0;
}
.tx .doctors .panel .nm { color: #f0d9cf; }
.tx .doctors .media img { width: 100%; height: 380px; object-fit: cover; border-radius: 14px; display: block; }

/* =====================================================================
   METHODS
   ===================================================================== */
.tx .methods .section-head { max-width: 760px; margin-bottom: 50px; }
.tx .methods .section-head .lead { margin-top: 18px; }

.tx .method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tx .method {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 34px 34px 30px;
	box-shadow: var(--shadow-sm);
	transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
	display: flex;
	flex-direction: column;
}
.tx .method:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.tx .method .m-code {
	font-family: 'Cormorant', serif;
	font-size: 32px;
	font-weight: 600;
	color: var(--wine);
	line-height: 1;
}
.tx .method .m-name { font-weight: 600; font-size: 16.5px; margin-top: 8px; color: var(--ink); }
.tx .method .m-diagram {
	margin: 22px 0 24px;
	background: #faf8f4;
	border-radius: 12px;
	padding: 16px;
	text-align: center;
}
.tx .method .m-diagram img { max-width: 100%; height: auto; display: block; margin: 0 auto; mix-blend-mode: multiply; }
.tx .method .m-desc { font-size: 15px; color: var(--ink-soft); line-height: 1.55; margin: 0 0 18px; }
.tx .method .m-checks { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 9px; }
.tx .method .m-checks li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; color: var(--ink); }
.tx .method .m-checks li svg { width: 17px; height: 17px; color: var(--wine); flex: none; }
.tx .method .arrowlink { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }

/* =====================================================================
   GALLERY (proměny + lightbox)
   ===================================================================== */
.tx .gallery .section-head { text-align: center; max-width: 740px; margin: 0 auto 50px; }
.tx .gallery .section-head .eyebrow { justify-content: center; }
.tx .gallery .section-head .lead { margin: 18px auto 0; }
.tx .gal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.tx .gal-item {
	position: relative;
	display: block;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	aspect-ratio: 1 / 1;
	background: var(--cream-2);
}
.tx .gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.tx .gal-item:hover img { transform: scale(1.045); }
.tx .gal-item::before {
	content: ''; position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(0deg, rgba(36, 22, 20, 0.34), transparent 42%);
	opacity: 0; transition: opacity 0.3s;
}
.tx .gal-item:hover::before { opacity: 1; }
.tx .gal-badge {
	position: absolute; top: 14px; left: 14px; z-index: 2;
	background: rgba(255, 255, 255, 0.92); color: var(--wine);
	font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
	padding: 6px 13px; border-radius: 999px;
}
.tx .gal-zoom {
	position: absolute; bottom: 14px; right: 14px; z-index: 2;
	width: 46px; height: 46px; border-radius: 50%;
	background: rgba(255, 255, 255, 0.94); color: var(--wine);
	display: grid; place-items: center;
	opacity: 0; transform: translateY(8px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.tx .gal-item:hover .gal-zoom { opacity: 1; transform: none; }
.tx .gal-zoom svg { width: 20px; height: 20px; }

@media (max-width: 560px) { .tx .gal-grid { grid-template-columns: 1fr; gap: 16px; } }

/* =====================================================================
   VIDEO SHOWCASE
   ===================================================================== */
.tx .video-band {
	background:
		radial-gradient(700px 360px at 85% 0%, rgba(176, 141, 87, 0.18), transparent 60%),
		var(--wine);
	color: #fff;
}
.tx .video-band .vb-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.tx .video-band .eyebrow { color: #e7c3a8; }
.tx .video-band .eyebrow::before { background: #e7c3a8; }
.tx .video-band h2 { color: #fff; font-size: clamp(30px, 3.6vw, 46px); }
.tx .video-band .vb-sub { color: #f0d9cf; margin-top: 14px; font-size: 17px; }
.tx .video-band .vb-note { margin-top: 22px; font-size: 13px; color: #d8b3a9; }

.tx .video-frame {
	position: relative;
	aspect-ratio: 16 / 10;
	border-radius: 16px;
	overflow: hidden;
	background: #1c0c0c center/cover no-repeat;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(255,255,255,0.12);
}
.tx .video-frame .vf-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.tx .video-frame .play {
	position: absolute; inset: 0; margin: auto;
	width: 84px; height: 84px;
	background: rgba(255,255,255,0.92);
	border-radius: 50%;
	display: grid; place-items: center;
	cursor: pointer;
	transition: transform 0.25s var(--ease), background 0.25s;
}
.tx .video-frame:hover .play { transform: scale(1.08); }
.tx .video-frame .play svg { width: 30px; height: 30px; color: var(--wine); margin-left: 4px; }
.tx .video-frame .vf-label {
	position: absolute; left: 20px; bottom: 18px; right: 20px;
	font-weight: 600; font-size: 14px; color: #fff;
	text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.tx .video-dots { display: flex; gap: 9px; margin-top: 22px; }
.tx .video-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.35); }
.tx .video-dots span.on { background: #fff; width: 26px; border-radius: 6px; }

/* vertical video reels */
.tx .vb-head { max-width: 760px; }
.tx .video-reels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 46px; }
.tx .reel {
	position: relative;
	aspect-ratio: 464 / 840;
	border-radius: 16px;
	overflow: hidden;
	background: #1a0a0a;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.tx .reel video { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 1040px) { .tx .video-reels { gap: 14px; } }
@media (max-width: 780px) {
	.tx .video-reels {
		grid-template-columns: none;
		grid-auto-flow: column;
		grid-auto-columns: 68%;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 10px;
		margin: 40px -28px 0; padding-left: 28px; padding-right: 28px;
	}
	.tx .reel { scroll-snap-align: center; }
}
@media (max-width: 560px) {
	.tx .video-reels { grid-auto-columns: 80%; margin-left: -18px; margin-right: -18px; padding-left: 18px; padding-right: 18px; }
}

/* =====================================================================
   CONSULT CTA
   ===================================================================== */
.tx .consult { text-align: center; }
.tx .consult h2 { font-size: clamp(30px, 4vw, 50px); max-width: 760px; margin: 0 auto; }
.tx .consult .lead { margin: 22px auto 0; }
.tx .consult .btn { margin-top: 32px; }

/* =====================================================================
   CLINIC PHOTO BAND
   ===================================================================== */
.tx .clinic-band { position: relative; height: 460px; overflow: hidden; }
.tx .clinic-band img { width: 100%; height: 100%; object-fit: cover; }
.tx .clinic-band .ph-note {
	position: absolute; inset: 0; display: grid; place-items: center;
	background: rgba(36,22,20,0.18); color: #fff; font-size: 14px; letter-spacing: 0.05em;
}

/* =====================================================================
   CHECKLIST SECTIONS (why-us, prubeh)
   ===================================================================== */
.tx .checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 48px; margin-top: 14px; }
.tx .checklist li {
	list-style: none;
	display: flex;
	gap: 14px;
	align-items: flex-start;
	font-size: 17px;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
}
.tx .checklist li svg { width: 22px; height: 22px; color: var(--wine); flex: none; margin-top: 2px; }
.tx .why .section-head, .tx .prubeh .section-head { margin-bottom: 40px; }
.tx .why h2, .tx .prubeh h2 { color: var(--wine); }

/* process stepper (Průběh léčby) */
.tx .process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: stp; }
.tx .process .step { position: relative; padding-top: 8px; }
.tx .process .step .num {
	font-family: 'Cormorant', serif; font-size: 22px; font-weight: 600; color: #fff;
	width: 54px; height: 54px; border-radius: 50%; background: var(--wine);
	display: grid; place-items: center; box-shadow: 0 10px 22px rgba(84,22,25,0.26); margin-bottom: 18px;
}
.tx .process .step h4 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 17px; margin: 0; }
.tx .process .step:not(:last-child)::after {
	content: ''; position: absolute; top: 35px; left: 64px; right: -10px; height: 1.5px;
	background: var(--cream-2);
}
@media (max-width: 780px) {
	.tx .process { grid-template-columns: 1fr; gap: 0; }
	.tx .process .step { display: flex; align-items: center; gap: 18px; padding: 12px 0; }
	.tx .process .step .num { margin-bottom: 0; width: 46px; height: 46px; font-size: 19px; }
	.tx .process .step:not(:last-child)::after { display: none; }
}

/* =====================================================================
   SEBEVEDOMI (krasava)
   ===================================================================== */
.tx .confidence { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.tx .confidence .c-media { position: relative; }
.tx .confidence .c-media img { width: 100%; height: 560px; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow-md); }
.tx .confidence .guarantee {
	display: inline-flex; align-items: center; gap: 10px;
	background: var(--cream); border: 1px solid var(--line);
	border-radius: 999px; padding: 9px 18px;
	font-size: 14px; font-weight: 600; color: var(--wine);
	margin-bottom: 22px;
}
.tx .confidence .guarantee svg { width: 18px; height: 18px; }
.tx .confidence h2 { font-size: clamp(34px, 4.4vw, 56px); }
.tx .confidence .lead { margin-top: 18px; }
.tx .confidence .btn { margin-top: 30px; }

/* =====================================================================
   PRICING
   ===================================================================== */
.tx .pricing h2 { font-size: clamp(34px, 5vw, 60px); }
.tx .pricing .p-sub { font-family: 'Cormorant', serif; font-size: clamp(22px, 2.6vw, 32px); color: var(--ink); margin-top: 6px; }
.tx .price-rows { margin-top: 40px; border-top: 1px solid var(--line); }
.tx .price-row {
	display: flex; align-items: center; gap: 26px;
	padding: 26px 0; border-bottom: 1px solid var(--line);
}
.tx .price-row .pr-amt { font-family: 'Cormorant', serif; font-size: clamp(26px, 3vw, 36px); font-weight: 600; color: var(--wine); min-width: 150px; }
.tx .price-row .pr-label { font-size: 20px; font-weight: 500; flex: 1; min-width: 180px; }
.tx .price-row .pr-note { font-size: 13px; color: var(--ink-soft); max-width: 320px; }
.tx .pricing .btn { margin-top: 40px; }

/* =====================================================================
   REVIEWS
   ===================================================================== */
.tx .reviews { background: var(--taupe); color: #fff; }
.tx .reviews .rev-head { text-align: center; margin-bottom: 44px; }
.tx .reviews h2 { color: #fff; font-size: clamp(34px, 4.6vw, 56px); }

.tx .rev-viewport { overflow: hidden; transition: height 0.45s var(--ease); }
.tx .rev-track { display: flex; align-items: flex-start; transition: transform 0.5s var(--ease); }
.tx .rev-slide { min-width: 100%; display: flex; justify-content: center; padding: 4px; box-sizing: border-box; }
.tx .rev-card {
	position: relative;
	background: var(--cream);
	color: var(--ink);
	border-radius: 18px;
	padding: 50px 54px 44px;
	max-width: 860px;
	width: 100%;
	text-align: center;
	box-shadow: var(--shadow-md);
}
.tx .rev-card .rev-quote {
	position: absolute; top: 18px; left: 36px;
	font-family: 'Cormorant', serif; font-size: 110px; line-height: 1;
	color: var(--wine); opacity: 0.14; pointer-events: none;
}
.tx .rev-card .rev-stars { color: var(--gold); letter-spacing: 3px; font-size: 16px; position: relative; }
.tx .rev-card .rev-text { font-size: 18px; line-height: 1.62; color: var(--ink); margin: 18px 0 26px; position: relative; }
.tx .rev-card .rev-author { font-family: 'Cormorant', serif; font-size: 25px; font-weight: 600; color: var(--wine); }
.tx .rev-card .rev-cat { display: block; font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-soft); margin-top: 5px; }

.tx .rev-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 36px; }
.tx .rev-controls button {
	width: 48px; height: 48px; border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.55); background: transparent; color: #fff;
	cursor: pointer; display: grid; place-items: center; transition: background 0.2s, color 0.2s, transform 0.2s;
}
.tx .rev-controls button:hover { background: #fff; color: var(--taupe); }
.tx .rev-controls button:active { transform: scale(0.94); }
.tx .rev-controls button svg { width: 18px; height: 18px; }
.tx .rev-counter { color: #fff; font-size: 15px; font-weight: 600; min-width: 56px; text-align: center; letter-spacing: 0.04em; }

/* =====================================================================
   FAQ
   ===================================================================== */
.tx .faq h2 { font-size: clamp(38px, 5vw, 64px); margin-bottom: 30px; }
.tx .faq-item { border-bottom: 1px solid var(--line); }
.tx .faq-item summary {
	list-style: none; cursor: pointer;
	display: flex; align-items: center; justify-content: space-between; gap: 20px;
	padding: 26px 0;
	font-family: 'Inter', sans-serif; font-weight: 600; font-size: 19px; color: var(--ink);
}
.tx .faq-item summary::-webkit-details-marker { display: none; }
.tx .faq-item summary .pm {
	flex: none; width: 30px; height: 30px; border-radius: 50%;
	border: 1.5px solid var(--wine); color: var(--wine);
	display: grid; place-items: center; position: relative; transition: background 0.25s, color 0.25s;
}
.tx .faq-item summary .pm::before,
.tx .faq-item summary .pm::after { content: ''; position: absolute; background: currentColor; border-radius: 2px; }
.tx .faq-item summary .pm::before { width: 12px; height: 2px; }
.tx .faq-item summary .pm::after { width: 2px; height: 12px; transition: transform 0.25s var(--ease); }
.tx .faq-item[open] summary .pm { background: var(--wine); color: #fff; }
.tx .faq-item[open] summary .pm::after { transform: scaleY(0); }
.tx .faq-answer { padding: 0 56px 26px 0; color: var(--ink-soft); font-size: 16.5px; }

/* =====================================================================
   FORM
   ===================================================================== */
.tx .formsec { background: var(--cream); }
.tx .form-card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 22px;
	box-shadow: var(--shadow-md);
	overflow: hidden;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
}
.tx .form-aside {
	background: radial-gradient(500px 320px at 0% 0%, rgba(176,141,87,0.22), transparent 60%), var(--wine);
	color: #fff;
	padding: 52px 46px;
	display: flex; flex-direction: column;
}
.tx .form-aside h2 { color: #fff; font-size: clamp(28px, 3.2vw, 40px); }
.tx .form-aside .fa-lead { color: #f0d9cf; margin-top: 16px; font-size: 16px; }
.tx .form-aside .fa-dates {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 24px;
	padding: 14px 18px;
	background: rgba(176, 141, 87, 0.16);
	border: 1px solid rgba(176, 141, 87, 0.55);
	border-radius: 12px;
}
.tx .form-aside .fa-dates svg { width: 26px; height: 26px; color: var(--gold); flex: none; }
.tx .form-aside .fa-dates span { display: block; font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase; color: #d8b3a9; margin-bottom: 1px; }
.tx .form-aside .fa-dates b { font-family: 'Cormorant', serif; font-size: 27px; font-weight: 600; color: #fff; line-height: 1.1; display: block; }
.tx .form-aside .fa-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 13px; }
.tx .form-aside .fa-list li { display: flex; gap: 12px; align-items: center; font-size: 15px; color: #f4e7e2; }
.tx .form-aside .fa-list svg { width: 19px; height: 19px; color: #e7c3a8; flex: none; }
.tx .form-aside .fa-phone { margin-top: auto; padding-top: 30px; }
.tx .form-aside .fa-phone span { display: block; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #d8b3a9; margin-bottom: 5px; }
.tx .form-aside .fa-phone a { font-family: 'Cormorant', serif; font-size: 26px; color: #fff; }

.tx .form-body { padding: 50px 46px; }
.tx .form-body h3 { font-family: 'Cormorant', serif; font-size: 28px; margin: 0 0 4px; }
.tx .form-body .fb-sub { color: var(--ink-soft); font-size: 15px; margin: 0 0 26px; }
.tx .ferr { background: #f7e7e7; border: 1px solid #d39b9b; color: #8c2f2f; padding: 13px 16px; border-radius: 10px; font-size: 14px; margin-bottom: 18px; }
.tx .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tx .field { margin-bottom: 16px; }
.tx .field.full { grid-column: 1 / -1; }
.tx .field label { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 7px 2px; }
.tx .field input, .tx .field select, .tx .field textarea {
	width: 100%; font-family: 'Inter', sans-serif; font-size: 16px; color: var(--ink);
	background: var(--cream); border: 1.5px solid transparent; border-radius: 11px; padding: 14px 16px;
	transition: border-color 0.2s, background 0.2s, box-shadow 0.2s; -webkit-appearance: none; appearance: none;
}
.tx .field textarea { resize: vertical; min-height: 96px; }
.tx .field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23541619' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; cursor: pointer;
}
.tx .field input:focus, .tx .field select:focus, .tx .field textarea:focus {
	outline: none; border-color: var(--wine); background: #fff; box-shadow: 0 0 0 4px rgba(84, 22, 25, 0.1);
}
.tx .consent { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 11px; line-height: 1.45; }
.tx .consent input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--wine); flex: none; }
.tx .consent a { text-decoration: underline; }
.tx .form-body .btn-wine { width: 100%; margin-top: 10px; padding: 17px; justify-content: center; font-size: 16px; }
.tx .form-note { text-align: center; font-size: 12.5px; color: var(--ink-soft); margin: 14px 0 0; }

/* =====================================================================
   FINAL CTA
   ===================================================================== */
.tx .final-cta {
	background: radial-gradient(700px 400px at 80% 120%, rgba(176,141,87,0.2), transparent 60%), var(--wine);
	color: #fff;
	text-align: center;
}
.tx .final-cta h2 { color: #fff; font-size: clamp(36px, 5.2vw, 66px); max-width: 880px; margin: 0 auto; }
.tx .final-cta .fc-lead { color: #f0d9cf; font-size: 18px; max-width: 620px; margin: 22px auto 0; }
.tx .final-cta .fc-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 40px; margin-top: 40px; }
.tx .final-cta .fc-links a { color: #fff; font-weight: 600; font-size: 17px; display: inline-flex; align-items: center; gap: 10px; }
.tx .final-cta .fc-links a:hover { color: #fff; opacity: 0.82; text-decoration: none; }
.tx .final-cta .fc-links svg { width: 19px; height: 19px; color: #e7c3a8; }

/* =====================================================================
   THANK YOU PAGE (transplantace-dekujeme)
   ===================================================================== */
.txd-head { position: absolute; top: 0; left: 0; right: 0; z-index: 10; }
.txd-head .bar { max-width: 1180px; margin: 0 auto; padding: 28px 40px; }
.txd-head .logo { font-family: 'Cormorant', serif; font-weight: 600; font-size: 30px; color: #fff; letter-spacing: 0.01em; line-height: 1; }
.txd-head .logo:hover { text-decoration: none; color: #fff; opacity: 0.85; }

.tx .txd {
	background:
		radial-gradient(820px 520px at 50% 0%, rgba(176, 141, 87, 0.20), transparent 62%),
		var(--wine);
	color: #fff;
	min-height: 88vh;
	display: grid;
	place-items: center;
	text-align: center;
	padding: 150px 24px 96px;
}
.tx .txd-card { max-width: 600px; }
.tx .txd .check {
	width: 96px; height: 96px; border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	display: grid; place-items: center; margin: 0 auto 34px;
	color: var(--gold);
}
.tx .txd .check svg { width: 46px; height: 46px; }
.tx .txd h1 { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(46px, 7vw, 78px); color: #fff; line-height: 1.02; margin: 0; }
.tx .txd .big { font-family: 'Cormorant', serif; font-size: clamp(22px, 3vw, 30px); color: #f0d9cf; margin: 14px 0 0; }
.tx .txd .lead2 { color: rgba(255, 255, 255, 0.82); font-size: 17px; line-height: 1.62; margin: 22px auto 0; max-width: 480px; }
.tx .txd-actions { display: flex; flex-wrap: wrap; gap: 16px 26px; align-items: center; justify-content: center; margin-top: 40px; }
.tx .txd-phone { font-family: 'Cormorant', serif; font-size: 26px; font-weight: 600; color: #fff; }
.tx .txd-phone:hover { color: var(--gold); text-decoration: none; }

@media (max-width: 560px) {
	.txd-head .bar { padding: 22px 18px; }
	.tx .txd { min-height: 84vh; padding: 120px 18px 70px; }
	.tx .rev-card { padding: 34px 22px 30px; }
	.tx .rev-card .rev-text { font-size: 16px; }
	.tx .rev-card .rev-quote { font-size: 80px; top: 14px; left: 20px; }
}

/* =====================================================================
   REVEAL
   ===================================================================== */
.tx .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.tx .reveal.in { opacity: 1; transform: none; }
.tx .reveal.d1 { transition-delay: 0.08s; }
.tx .reveal.d2 { transition-delay: 0.16s; }
.tx .reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .tx .reveal { opacity: 1 !important; transform: none !important; } }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1040px) {
	.tx .wrap { padding: 0 28px; }
	.tx .section { padding: 76px 0; }
	.tx .doctors .panel { padding: 56px 40px; }
	.tx .video-band .vb-grid { grid-template-columns: 1fr; gap: 34px; }
	.tx .confidence { gap: 40px; }
	.tx .confidence .c-media img { height: 460px; }
}

@media (max-width: 780px) {
	.tx { font-size: 16px; }
	.tx .featrow { grid-template-columns: 1fr 1fr; gap: 26px; }
	.tx .doctors-inner { grid-template-columns: 1fr; gap: 26px; padding: 48px 28px; }
	.tx .doctors .media { order: -1; }
	.tx .doctors .media img { height: 300px; }
	.tx .method-grid { grid-template-columns: 1fr; }
	.tx .confidence { grid-template-columns: 1fr; }
	.tx .confidence .c-media { order: -1; }
	.tx .confidence .c-media img { height: 400px; }
	.tx .checklist { grid-template-columns: 1fr; gap: 0; }
	.tx .rev-card { padding: 40px 34px 36px; }
	.tx .form-card { grid-template-columns: 1fr; }
	.tx .hero { min-height: 640px; }
}

@media (max-width: 560px) {
	.tx .wrap { padding: 0 18px; }
	.tx .section { padding: 60px 0; }
	.tx .doctors-inner { padding: 40px 18px; }
	.tx .featrow { grid-template-columns: 1fr; }
	.tx .hero .hero-inner { padding-bottom: 56px; }
	.tx .price-row { flex-wrap: wrap; gap: 6px 20px; }
	.tx .price-row .pr-note { max-width: none; }
	.tx .form-aside, .tx .form-body { padding: 34px 22px; }
	.tx .frow { grid-template-columns: 1fr; gap: 0; }
	.tx .hero-cta { gap: 16px; }
}
