/* ============================================
   Webová Vizitka 2.0 — Base CSS
   Shared: reset, typography, BEM components, layout
   ============================================ */

/* ---- CSS Variables ---- */
:root {
	/* Colors (overridden by inline CSS from options) */
	--wv3-primary: #4F7F74;
	--wv3-primary-dark: color-mix(in srgb, var(--wv3-primary) 80%, #000);
	--wv3-primary-light: color-mix(in srgb, var(--wv3-primary) 15%, #fff);
	--wv3-primary-lighter: color-mix(in srgb, var(--wv3-primary) 6%, #fff);
	--wv3-accent-bg: color-mix(in srgb, var(--wv3-primary) 10%, #fff);

	--wv3-secondary: #F2B880;
	--wv3-secondary-dark: color-mix(in srgb, var(--wv3-secondary) 80%, #000);
	--wv3-secondary-light: color-mix(in srgb, var(--wv3-secondary) 15%, #fff);

	--wv3-text: #2D3436;
	--wv3-text-secondary: #636E72;
	--wv3-text-muted: #B2BEC3;

	--wv3-bg: #FFFFFF;
	--wv3-bg-light: #F8F9FA;
	--wv3-border: #E0E5E4;

	/* Typography */
	--wv3-font-body: "Inter", system-ui, -apple-system, sans-serif;
	--wv3-font-heading: "Inter", system-ui, -apple-system, sans-serif;

	/* Spacing (4px base) */
	--wv3-space-xs: 4px;
	--wv3-space-sm: 8px;
	--wv3-space-md: 16px;
	--wv3-space-lg: 24px;
	--wv3-space-xl: 32px;
	--wv3-space-2xl: 48px;
	--wv3-space-3xl: 64px;
	--wv3-space-section: 96px;

	/* Border radius */
	--wv3-radius-sm: 4px;
	--wv3-radius-md: 8px;
	--wv3-radius-lg: 16px;
	--wv3-radius-xl: 24px;
	--wv3-radius-full: 9999px;

	/* Shadows */
	--wv3-shadow-sm: 0 2px 8px rgba(45, 52, 54, 0.06);
	--wv3-shadow-md: 0 4px 16px rgba(45, 52, 54, 0.1);
	--wv3-shadow-lg: 0 8px 24px rgba(45, 52, 54, 0.12);

	/* Transitions */
	--wv3-transition-fast: 150ms ease;
	--wv3-transition-base: 300ms ease;

	/* Layout */
	--wv3-max-width: 1200px;
	--wv3-header-height: 80px;
	--wv3-announcement-height: 0px;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

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

body {
	font-family: var(--wv3-font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--wv3-text);
	background-color: var(--wv3-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: var(--wv3-primary);
	text-decoration: none;
	transition: color var(--wv3-transition-fast);
}

a:hover {
	color: var(--wv3-primary-dark);
}

/* ---- Global focus-visible — accessibility ---- */
:focus-visible {
	outline: 2px solid var(--wv3-primary);
	outline-offset: 2px;
}

button:focus-visible,
.wv3-btn:focus-visible,
.wv3-header__cta:focus-visible {
	outline: 2px solid var(--wv3-primary);
	outline-offset: 2px;
}

ul, ol {
	list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--wv3-font-heading);
	font-weight: 700;
	line-height: 1.2;
	color: var(--wv3-text);
}

h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
	font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}

h3 {
	font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

/* ---- Layout ---- */
.wv3-container {
	width: 100%;
	max-width: var(--wv3-max-width);
	margin: 0 auto;
	padding: 0 var(--wv3-space-lg);
}

.wv3-container--narrow {
	max-width: 800px;
}

.wv3-main {
	padding-top: calc(var(--wv3-header-height) + var(--wv3-announcement-height));
}

/* ---- Sections ---- */
.wv3-section {
	padding: var(--wv3-space-section) 0;
}

.wv3-section--light {
	background-color: var(--wv3-bg-light);
}

.wv3-section--centered {
	text-align: center;
}

.wv3-section__title {
	text-align: center;
	margin-bottom: var(--wv3-space-2xl);
	position: relative;
}

.wv3-section__subtitle {
	text-align: center;
	color: var(--wv3-text-secondary);
	font-size: 1.125rem;
	max-width: 640px;
	margin: calc(-1 * var(--wv3-space-lg)) auto var(--wv3-space-2xl);
	line-height: 1.7;
}

/* ---- Announcement bar ---- */
.wv3-announcement-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1001;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px var(--wv3-space-lg);
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
}

.wv3-announcement-bar__content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--wv3-space-sm);
	flex-wrap: wrap;
}

.wv3-announcement-bar__link {
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.wv3-announcement-bar__link:hover {
	opacity: 0.8;
}

.wv3-announcement-bar__close {
	position: absolute;
	right: var(--wv3-space-md);
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: inherit;
	font-size: 1.25rem;
	cursor: pointer;
	opacity: 0.7;
	padding: 4px 8px;
	line-height: 1;
}

.wv3-announcement-bar__close:hover {
	opacity: 1;
}

/* ---- Header ---- */
.wv3-header {
	position: fixed;
	top: var(--wv3-announcement-height);
	left: 0;
	right: 0;
	z-index: 1000;
	background: var(--wv3-bg);
	height: var(--wv3-header-height);
	transition: box-shadow var(--wv3-transition-base);
}

.wv3-header.scrolled {
	box-shadow: var(--wv3-shadow-md);
}

.wv3-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.wv3-header__logo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-decoration: none;
	margin-left: 0;
}

.wv3-header__logo img,
.wv3-header__logo .custom-logo {
	height: 42px;
	width: auto;
	max-height: none;
}

.wv3-header__logo .custom-logo-link {
	display: flex;
	align-items: center;
}

.wv3-header__site-name {
	font-family: var(--wv3-font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--wv3-text);
	line-height: 1.2;
}

.wv3-header__logo-claim {
	font-size: 0.875rem;
	font-weight: 400;
	color: var(--wv3-text-secondary, rgba(0, 0, 0, 0.6));
	line-height: 1.2;
}

/* ---- Navigation ---- */
.wv3-nav__list {
	display: flex;
	align-items: center;
	gap: var(--wv3-space-lg);
}

.wv3-nav__mobile-cta {
	display: none;
}

.wv3-nav__link {
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--wv3-text-secondary);
	transition: color var(--wv3-transition-fast);
	padding: var(--wv3-space-sm) 0;
}

.wv3-nav__link:hover,
.wv3-nav__link--active {
	color: var(--wv3-primary);
}

/* ---- Hamburger ---- */
.wv3-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.wv3-hamburger__line {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--wv3-text);
	border-radius: 2px;
	transition: transform var(--wv3-transition-base), opacity var(--wv3-transition-base);
}

.wv3-hamburger.active .wv3-hamburger__line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.wv3-hamburger.active .wv3-hamburger__line:nth-child(2) {
	opacity: 0;
}

.wv3-hamburger.active .wv3-hamburger__line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ---- Buttons ---- */
.wv3-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--wv3-space-sm);
	font-family: var(--wv3-font-body);
	font-weight: 600;
	font-size: 0.9375rem;
	padding: 12px 28px;
	border: none;
	border-radius: var(--wv3-radius-md);
	cursor: pointer;
	text-decoration: none;
	transition: all var(--wv3-transition-fast);
	line-height: 1.4;
}

.wv3-btn--primary {
	background: var(--wv3-primary);
	color: #fff;
}

.wv3-btn--primary:hover {
	background: var(--wv3-primary-dark);
	color: #fff;
}

.wv3-btn--secondary {
	background: transparent;
	color: var(--wv3-primary);
	border: 2px solid var(--wv3-primary);
}

.wv3-btn--secondary:hover {
	background: var(--wv3-primary);
	color: #fff;
}

.wv3-btn--large {
	padding: 16px 36px;
	font-size: 1.0625rem;
}

.wv3-btn--small {
	padding: 8px 20px;
	font-size: 0.8125rem;
}

/* ---- Cards ---- */
.wv3-card {
	background: var(--wv3-bg);
	border-radius: var(--wv3-radius-md);
	box-shadow: var(--wv3-shadow-sm);
	padding: var(--wv3-space-xl);
	transition: box-shadow var(--wv3-transition-base), transform var(--wv3-transition-base);
}

.wv3-card:hover {
	box-shadow: var(--wv3-shadow-md);
	transform: translateY(-2px);
}

.wv3-card__image {
	margin: calc(-1 * var(--wv3-space-xl)) calc(-1 * var(--wv3-space-xl)) var(--wv3-space-lg);
	border-radius: var(--wv3-radius-md) var(--wv3-radius-md) 0 0;
	overflow: hidden;
}

.wv3-card__image img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform var(--wv3-transition-base);
}

.wv3-card:hover .wv3-card__image img {
	transform: scale(1.05);
}

.wv3-card__image {
	overflow: hidden;
}

.wv3-card__icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--wv3-primary-light);
	color: var(--wv3-primary);
	border-radius: var(--wv3-radius-md);
	margin-bottom: var(--wv3-space-lg);
	transition: background var(--wv3-transition-base), color var(--wv3-transition-base);
}

.wv3-card:hover .wv3-card__icon {
	background: var(--wv3-primary);
	color: #fff;
}

.wv3-card__title {
	margin-bottom: var(--wv3-space-sm);
}

.wv3-card__text {
	color: var(--wv3-text-secondary);
	font-size: 0.9375rem;
}

/* ---- Hero ---- */
.wv3-hero {
	position: relative;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-color: var(--wv3-primary-lighter);
	padding: var(--wv3-space-3xl) 0;
}

.wv3-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%);
	pointer-events: none;
	opacity: 0;
}

.wv3-hero[style*="background-image"] .wv3-hero__overlay {
	opacity: 1;
}

.wv3-hero[style*="background-image"] .wv3-hero__title,
.wv3-hero[style*="background-image"] .wv3-hero__subtitle,
.wv3-hero[style*="background-image"] .wv3-hero__blurb {
	color: #fff;
}

.wv3-hero__inner {
	position: relative;
	z-index: 1;
}

.wv3-hero__content {
	max-width: 700px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.wv3-hero__title {
	margin-bottom: var(--wv3-space-md);
}

.wv3-hero__subtitle {
	font-size: clamp(1rem, 2vw, 1.25rem);
	color: var(--wv3-text-secondary);
	margin-bottom: var(--wv3-space-xl);
	line-height: 1.6;
}

.wv3-hero__cta {
	margin-top: 40px;
	margin-bottom: var(--wv3-space-xl);
}

.wv3-hero__blurbs {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wv3-space-sm);
}

.wv3-hero__blurb {
	display: flex;
	align-items: center;
	gap: var(--wv3-space-sm);
	color: var(--wv3-text-secondary);
	font-size: 0.9375rem;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(4px);
	padding: var(--wv3-space-sm) var(--wv3-space-md);
	border-radius: var(--wv3-radius-md);
}

.wv3-hero__blurb svg {
	color: var(--wv3-primary);
	flex-shrink: 0;
}

.wv3-hero[style*="background-image"] .wv3-hero__blurb {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(8px);
}

/* ---- Hero — Split layout (image right) ---- */
.wv3-hero--split .wv3-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--wv3-space-2xl);
	align-items: stretch;
}

.wv3-hero--split .wv3-hero__blurbs {
	/* Stay in left column under text content */
}

.wv3-hero__badge {
	display: inline-block;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--wv3-primary);
	background: var(--wv3-primary-light);
	padding: var(--wv3-space-xs) var(--wv3-space-md);
	border-radius: var(--wv3-radius-full);
	margin-bottom: var(--wv3-space-md);
}

/* H1 mode swap — badge as H1 keeps badge styling */
h1.wv3-hero__badge {
	font-size: 0.8125rem;
	line-height: 1.4;
}

/* H1 mode swap — title as span keeps heading styling */
span.wv3-hero__title {
	display: block;
	font-family: var(--wv3-font-heading);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: var(--wv3-space-md);
}

.wv3-hero[style*="background-image"] .wv3-hero__badge {
	color: #fff;
	background: rgba(255, 255, 255, 0.2);
}

.wv3-hero__review-badge {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--wv3-space-xs);
	font-size: 0.875rem;
	color: var(--wv3-text-secondary);
	opacity: 0.8;
	margin-bottom: 0;
}

.wv3-hero__review-badge .wv3-stars {
	gap: 4px;
}

.wv3-hero__review-badge .wv3-stars__star svg {
	width: 24px;
	height: 24px;
}

.wv3-hero__review-badge svg {
	color: #F59E0B;
	fill: #F59E0B;
}

.wv3-hero__review-row {
	display: flex;
	align-items: center;
	gap: var(--wv3-space-sm);
}

.wv3-hero__review-sources {
	display: block;
	height: 33px;
	width: auto;
	flex-shrink: 0;
	position: relative;
	top: -2px;
}

.wv3-hero[style*="background-image"] .wv3-hero__review-badge {
	color: rgba(255, 255, 255, 0.9);
}

.wv3-hero__image {
	position: relative;
	overflow: hidden;
}

.wv3-hero__image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--wv3-radius-lg);
}

/* ---- Process section (horizontal grid — default) ---- */
.wv3-process__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--wv3-space-2xl);
	margin-bottom: var(--wv3-space-2xl);
	position: relative;
}

.wv3-process__step {
	text-align: center;
	position: relative;
	padding-top: var(--wv3-space-xl);
}

.wv3-process__marker {
	display: flex;
	justify-content: center;
}

/* Connecting line between steps (horizontal) */
.wv3-process__step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: calc(var(--wv3-space-xl) + 28px);
	right: calc(-1 * var(--wv3-space-xl));
	width: calc(2 * var(--wv3-space-xl));
	height: 2px;
	background: var(--wv3-primary);
}

.wv3-process__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: var(--wv3-radius-full);
	background: var(--wv3-primary);
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: var(--wv3-space-md);
	position: relative;
	z-index: 1;
}

.wv3-process__step-title {
	margin-bottom: var(--wv3-space-sm);
}

.wv3-process__step-text {
	color: var(--wv3-text-secondary);
	font-size: 0.9375rem;
	line-height: 1.6;
}

.wv3-process__cta {
	text-align: center;
	margin-top: 75px;
}

/* ---- Venue slider (full-width) ---- */
.wv3-venue {
	padding: var(--wv3-space-section) 0;
}

.wv3-venue .wv3-section__title {
	margin-bottom: var(--wv3-space-2xl);
}

.wv3-venue__slider {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 1150px;
	margin: 0 auto;
}

.wv3-venue__track {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.wv3-venue__slide {
	flex: 0 0 100%;
	min-width: 100%;
	position: relative;
}

.wv3-venue__slide[data-venue-full]::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0);
	transition: background var(--wv3-transition-base);
	pointer-events: none;
}

.wv3-venue__slide[data-venue-full]:hover::after {
	background: rgba(0, 0, 0, 0.3);
}

.wv3-venue__slide[data-venue-full]::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	z-index: 1;
	width: 48px;
	height: 48px;
	border: 2px solid #fff;
	border-radius: var(--wv3-radius-full);
	transition: transform var(--wv3-transition-base);
	pointer-events: none;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat center / 24px 24px;
}

.wv3-venue__slide[data-venue-full]:hover::before {
	transform: translate(-50%, -50%) scale(1);
}

.wv3-venue__slide img {
	width: 100%;
	height: 600px;
	object-fit: cover;
	display: block;
}

.wv3-venue__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: var(--wv3-radius-full);
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: rgba(0, 0, 0, 0.3);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--wv3-transition-fast);
	z-index: 2;
	padding: 0;
}

.wv3-venue__nav:hover {
	background: var(--wv3-primary);
	border-color: var(--wv3-primary);
}

.wv3-venue__nav--prev {
	left: var(--wv3-space-lg);
}

.wv3-venue__nav--next {
	right: var(--wv3-space-lg);
}

.wv3-venue__dots {
	position: absolute;
	bottom: var(--wv3-space-lg);
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: var(--wv3-space-sm);
	z-index: 2;
}

.wv3-venue__dot {
	width: 10px;
	height: 10px;
	border-radius: var(--wv3-radius-full);
	background: rgba(255, 255, 255, 0.5);
	border: none;
	cursor: pointer;
	transition: all var(--wv3-transition-fast);
	padding: 0;
}

.wv3-venue__dot.active {
	background: #fff;
	width: 28px;
}

@media (max-width: 768px) {
	.wv3-venue__slide img {
		height: 300px;
	}
}

/* ---- Services grid ---- */
.wv3-services__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: var(--wv3-space-xl);
}

/* ---- Gallery grid ---- */
.wv3-gallery__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: var(--wv3-space-md);
}

.wv3-gallery__item {
	display: block;
	position: relative;
	border-radius: var(--wv3-radius-md);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	cursor: pointer;
}

.wv3-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--wv3-transition-base);
}

.wv3-gallery__item:hover img {
	transform: scale(1.05);
}

.wv3-gallery__item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0);
	transition: background var(--wv3-transition-base);
	pointer-events: none;
}

.wv3-gallery__item:hover::after {
	background: rgba(0, 0, 0, 0.3);
}

.wv3-gallery__item::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	z-index: 1;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #fff;
	border-radius: var(--wv3-radius-full);
	transition: transform var(--wv3-transition-base);
	pointer-events: none;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat center / 24px 24px;
}

.wv3-gallery__item:hover::before {
	transform: translate(-50%, -50%) scale(1);
}

/* ---- Reviews — horizontal scroll ---- */
.wv3-reviews {
	overflow-x: hidden;
}

.wv3-reviews__scroll {
	display: flex;
	gap: var(--wv3-space-xl);
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	scroll-behavior: smooth;
	overscroll-behavior-x: contain;
}

.wv3-reviews__scroll::-webkit-scrollbar {
	display: none;
}

.wv3-reviews__scroll > .wv3-reviews__card {
	min-width: calc(33.333% - var(--wv3-space-xl) * 2 / 3);
	max-width: calc(33.333% - var(--wv3-space-xl) * 2 / 3);
	scroll-snap-align: start;
	flex-shrink: 0;
}

.wv3-reviews__card {
	display: flex;
	flex-direction: column;
	gap: var(--wv3-space-md);
	padding: var(--wv3-space-xl);
	position: relative;
}

.wv3-reviews__text {
	font-style: italic;
	color: var(--wv3-text-secondary);
	line-height: 1.7;
	flex-grow: 1;
	font-size: 1rem;
	overflow-wrap: break-word;
	word-break: break-word;
}

.wv3-reviews__author {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--wv3-space-sm);
	padding-top: var(--wv3-space-md);
	border-top: 1px solid var(--wv3-border);
}

.wv3-reviews__name {
	font-weight: 600;
}

.wv3-reviews__source {
	display: inline-flex;
	align-items: center;
	gap: var(--wv3-space-xs);
	color: var(--wv3-text-muted);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	background: var(--wv3-bg-light);
	padding: 2px 10px;
	border-radius: var(--wv3-radius-full);
}

/* Reviews wrapper (for nav arrows positioning) */
.wv3-reviews__wrapper {
	position: relative;
}

/* Reviews nav arrows (desktop only, >3 reviews) */
.wv3-reviews__nav {
	display: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	background: var(--wv3-bg);
	border: 1px solid var(--wv3-border);
	border-radius: var(--wv3-radius-full);
	color: var(--wv3-text);
	cursor: pointer;
	align-items: center;
	justify-content: center;
	transition: all var(--wv3-transition-fast);
	box-shadow: var(--wv3-shadow-sm);
	z-index: 2;
}

.wv3-reviews__nav:hover {
	background: var(--wv3-primary);
	color: #fff;
	border-color: var(--wv3-primary);
	box-shadow: var(--wv3-shadow-md);
}

.wv3-reviews__nav--prev {
	left: -22px;
}

.wv3-reviews__nav--next {
	right: -22px;
}

/* Reviews footer */
.wv3-reviews__footer {
	text-align: center;
	margin-top: var(--wv3-space-2xl);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--wv3-space-sm);
}

.wv3-reviews__footer-stars {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 7px;
}

.wv3-reviews__footer-stars .wv3-hero__review-sources {
	position: relative;
	top: -2px;
}

.wv3-reviews__footer-stars .wv3-stars__star svg {
	width: 20px;
	height: 20px;
}

.wv3-reviews__footer-text {
	color: var(--wv3-text-secondary);
	font-size: 0.9375rem;
}

.wv3-reviews__footer-link {
	color: var(--wv3-primary);
	font-weight: 600;
	text-decoration: none;
	transition: color var(--wv3-transition-fast);
}

.wv3-reviews__footer-link:hover {
	color: var(--wv3-primary-dark);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Stars */
.wv3-stars {
	display: flex;
	gap: 2px;
}

.wv3-stars__star {
	color: var(--wv3-border);
}

.wv3-stars__star--filled {
	color: #F59E0B;
}

.wv3-stars__star svg {
	fill: currentColor;
}

/* ---- About ---- */
.wv3-about__grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: var(--wv3-space-3xl);
	align-items: stretch;
}

.wv3-about__photo {
	position: relative;
	aspect-ratio: 1 / 1;
}

.wv3-about__photo::after {
	content: "";
	position: absolute;
	bottom: -12px;
	right: -12px;
	width: 60%;
	height: 60%;
	background: var(--wv3-primary-light);
	border-radius: var(--wv3-radius-lg);
	z-index: -1;
}

.wv3-about__photo img {
	border-radius: var(--wv3-radius-lg);
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 1;
}

.wv3-about__quals {
	margin-top: var(--wv3-space-xl);
	display: flex;
	flex-wrap: wrap;
	gap: var(--wv3-space-sm);
}

.wv3-about__qual {
	display: flex;
	align-items: center;
	gap: var(--wv3-space-sm);
	background: var(--wv3-primary-lighter);
	padding: var(--wv3-space-sm) var(--wv3-space-md);
	border-radius: var(--wv3-radius-md);
	font-size: 0.9375rem;
}

.wv3-about__qual svg {
	color: var(--wv3-primary);
	flex-shrink: 0;
}

/* ---- Pricing ---- */
.wv3-pricing__category {
	margin-bottom: var(--wv3-space-md);
	margin-top: var(--wv3-space-xl);
	color: var(--wv3-primary);
	font-weight: 700;
}

.wv3-pricing__table {
	margin-bottom: var(--wv3-space-xl);
	background: var(--wv3-bg);
	border-radius: var(--wv3-radius-md);
	overflow: hidden;
	box-shadow: var(--wv3-shadow-sm);
}

.wv3-pricing__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--wv3-space-lg) var(--wv3-space-xl);
	border-bottom: 1px solid var(--wv3-border);
	gap: var(--wv3-space-md);
	transition: background var(--wv3-transition-fast);
}

.wv3-pricing__row:last-child {
	border-bottom: none;
}

.wv3-pricing__row:hover {
	background: var(--wv3-primary-lighter);
}

.wv3-pricing__name {
	font-size: 1.125rem;
	font-weight: 600;
}

.wv3-pricing__desc {
	display: block;
	font-size: 0.875rem;
	color: var(--wv3-text-secondary);
	font-weight: 400;
	margin-top: 2px;
}

.wv3-pricing__price {
	font-weight: 700;
	color: var(--wv3-primary);
	white-space: nowrap;
	font-size: 1.25rem;
}

.wv3-pricing__footer {
	margin-top: var(--wv3-space-lg);
	font-size: 0.875rem;
	color: var(--wv3-text-secondary);
	text-align: center;
	font-style: italic;
}

/* ---- Business info ---- */
.wv3-business-info__grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: var(--wv3-space-2xl);
	align-items: stretch;
}

.wv3-business-info__map-col {
	display: flex;
	flex-direction: column;
}

.wv3-business-info__card {
	background: var(--wv3-bg);
	padding: var(--wv3-space-2xl);
	border-radius: var(--wv3-radius-lg);
	box-shadow: var(--wv3-shadow-sm);
}

.wv3-business-info__card .wv3-section__title,
.wv3-business-info__details .wv3-section__title {
	text-align: left;
	margin-bottom: var(--wv3-space-xl);
}

.wv3-business-info__row {
	display: flex;
	align-items: center;
	gap: var(--wv3-space-md);
	margin-bottom: var(--wv3-space-md);
	padding: var(--wv3-space-sm) 0;
}

.wv3-business-info__row svg {
	color: var(--wv3-primary);
	flex-shrink: 0;
	width: 24px;
	height: 24px;
}

.wv3-business-info__row span,
.wv3-business-info__row a {
	font-size: 1.0625rem;
}

.wv3-business-info__row a {
	color: var(--wv3-text);
}

.wv3-business-info__row a:hover {
	color: var(--wv3-primary);
}

.wv3-business-info__social {
	display: flex;
	gap: var(--wv3-space-md);
	margin-top: var(--wv3-space-lg);
}

.wv3-business-info__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--wv3-radius-full);
	background: var(--wv3-primary-light);
	color: var(--wv3-primary);
	transition: all var(--wv3-transition-fast);
}

.wv3-business-info__social-link:hover {
	background: var(--wv3-primary);
	color: #fff;
}

.wv3-business-info__hours {
	margin-top: var(--wv3-space-xl);
}

.wv3-business-info__hours-title {
	display: flex;
	align-items: center;
	gap: var(--wv3-space-sm);
	margin-bottom: var(--wv3-space-md);
}

.wv3-business-info__hours-title svg {
	color: var(--wv3-primary);
}

.wv3-business-info__hours-list {
	display: flex;
	flex-direction: column;
	gap: var(--wv3-space-xs);
}

.wv3-business-info__hours-row {
	display: flex;
	justify-content: space-between;
	padding: var(--wv3-space-sm) var(--wv3-space-md);
	border-radius: var(--wv3-radius-sm);
}

.wv3-business-info__hours-row:nth-child(odd) {
	background: var(--wv3-bg-light);
}

.wv3-business-info__hours-row dt {
	font-weight: 500;
}

.wv3-business-info__hours-row dd {
	color: var(--wv3-text-secondary);
}

.wv3-business-info__hours-note {
	margin-top: var(--wv3-space-lg);
	color: var(--wv3-text-secondary);
	font-size: 0.875rem;
}

.wv3-business-info__map {
	border-radius: var(--wv3-radius-lg);
	overflow: hidden;
	min-height: 350px;
	flex: 1;
}

.wv3-business-info__map iframe {
	width: 100%;
	height: 100%;
	min-height: 350px;
	border: 0;
}

#wv3-leaflet-map {
	width: 100%;
	height: 100%;
	min-height: 350px;
	z-index: 1;
}

/* Custom map pin */
.wv3-map-pin {
	background: none !important;
	border: none !important;
}

.wv3-map-pin--parkovani,
.wv3-map-pin--zastavka,
.wv3-map-pin--jine {
	background: none !important;
	border: none !important;
}

/* Custom map popup */
.wv3-map-popup-wrapper .leaflet-popup-content-wrapper {
	border-radius: var(--wv3-radius-md);
	box-shadow: var(--wv3-shadow-md);
	padding: 0;
	font-family: var(--wv3-font-body);
}

.wv3-map-popup-wrapper .leaflet-popup-content {
	margin: 0;
	line-height: 1.4;
}

.wv3-map-popup-wrapper .leaflet-popup-tip {
	box-shadow: none;
}

.wv3-map-popup {
	padding: 12px 16px;
	text-align: center;
}

.wv3-map-popup__name {
	display: block;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--wv3-text);
	margin-bottom: 4px;
}

.wv3-map-popup__links {
	display: block;
	font-size: 0.8125rem;
}

.wv3-map-popup__links a {
	color: var(--wv3-primary);
	text-decoration: none;
	font-weight: 500;
}

.wv3-map-popup__links a:hover {
	text-decoration: underline;
}
.wv3-contact__form-title,
.wv3-contact__details-title {
	font-size: 1.625rem;
	font-weight: 600;
}

.wv3-contact__form-title {
	margin-bottom: 1rem;
}

.wv3-contact__details-title {
	margin-bottom: 0;
	padding-bottom: 0;
}

.wv3-contact__details-tagline {
	color: var(--wv3-text-secondary);
	font-size: 0.9375rem;
	margin-top: 0;
	margin-bottom: var(--wv3-space-lg);
}

/* ---- Contact ---- */
.wv3-contact {
	background-color: var(--wv3-primary-lighter);
}

.wv3-contact__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: var(--wv3-space-2xl);
	align-items: start;
}

.wv3-contact__form {
	background: var(--wv3-bg);
	padding: var(--wv3-space-2xl);
	border-radius: var(--wv3-radius-lg);
	box-shadow: var(--wv3-shadow-md);
}

.wv3-contact__details {
	display: flex;
	flex-direction: column;
	padding-top: var(--wv3-space-2xl);
}

.wv3-contact__detail-row + .wv3-contact__detail-row {
	margin-top: var(--wv3-space-lg);
}

.wv3-contact__detail-row {
	display: flex;
	gap: var(--wv3-space-md);
	align-items: flex-start;
	font-size: 1.0625rem;
}

.wv3-contact__detail-row svg {
	color: var(--wv3-primary);
	flex-shrink: 0;
	margin-top: 2px;
}

.wv3-contact__detail-row strong {
	display: block;
	margin-bottom: 2px;
}

.wv3-contact__detail-row a {
	color: var(--wv3-text);
}

.wv3-contact__detail-row a:hover,
.wv3-business-info__row a:hover {
	color: var(--wv3-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.wv3-contact__hours {
	display: flex;
	flex-direction: column;
	gap: var(--wv3-space-xs);
	margin-top: var(--wv3-space-xs);
}

.wv3-contact__hours-row {
	display: flex;
	justify-content: space-between;
	gap: var(--wv3-space-md);
}

.wv3-contact__hours-row dt {
	font-weight: 500;
	font-size: 0.9375rem;
}

.wv3-contact__hours-row dd {
	color: var(--wv3-text-secondary);
	font-size: 0.9375rem;
}

/* ---- Blog section ---- */
.wv3-blog-section__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: var(--wv3-space-xl);
}

/* ---- Post cards ---- */
.wv3-post-card {
	background: var(--wv3-bg);
	border-radius: var(--wv3-radius-md);
	box-shadow: var(--wv3-shadow-sm);
	overflow: hidden;
	transition: box-shadow var(--wv3-transition-base);
}

.wv3-post-card:hover {
	box-shadow: var(--wv3-shadow-md);
}

.wv3-post-card__image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.wv3-post-card__content {
	padding: var(--wv3-space-lg);
}

.wv3-post-card__date {
	display: block;
	font-size: 0.8125rem;
	color: var(--wv3-text-muted);
	margin-bottom: var(--wv3-space-sm);
}

.wv3-post-card__title {
	margin-bottom: var(--wv3-space-sm);
}

.wv3-post-card__title a {
	color: var(--wv3-text);
}

.wv3-post-card__title a:hover {
	color: var(--wv3-primary);
}

.wv3-post-card__excerpt {
	color: var(--wv3-text-secondary);
	font-size: 0.9375rem;
}

/* ---- Blog CTA ---- */
.wv3-blog-section__cta {
	text-align: center;
	margin-top: var(--wv3-space-2xl);
}

/* ---- Breadcrumbs ---- */
.wv3-breadcrumbs {
	font-size: 0.875rem;
	color: var(--wv3-text-secondary);
	margin-bottom: var(--wv3-space-md);
	text-align: center;
}

.wv3-breadcrumbs a {
	color: var(--wv3-text-secondary);
	text-decoration: none;
}

.wv3-breadcrumbs a:hover {
	color: var(--wv3-primary);
}

.wv3-breadcrumbs__sep {
	margin: 0 var(--wv3-space-xs);
}

/* ---- Archive section ---- */
.wv3-archive {
	padding-top: 50px;
	padding-bottom: var(--wv3-space-section);
	background-color: var(--wv3-bg-light);
}

/* ---- Archive description ---- */
.wv3-archive__description {
	color: var(--wv3-text-secondary);
	margin-bottom: var(--wv3-space-lg);
	max-width: 640px;
}

/* ---- Archive tabs ---- */
.wv3-archive__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wv3-space-sm);
	justify-content: center;
	margin-bottom: var(--wv3-space-2xl);
}

.wv3-archive__tab {
	display: inline-block;
	padding: var(--wv3-space-sm) var(--wv3-space-lg);
	border-radius: var(--wv3-radius-full);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--wv3-text-secondary);
	background: var(--wv3-bg);
	text-decoration: none;
	transition: all var(--wv3-transition-fast);
}

.wv3-archive__tab:hover {
	color: var(--wv3-primary);
	background: var(--wv3-primary-light);
}

.wv3-archive__tab--active {
	background: var(--wv3-primary);
	color: #fff;
}

.wv3-archive__tab--active:hover {
	background: var(--wv3-primary-dark);
	color: #fff;
}

/* ---- Post card category badge ---- */
.wv3-post-card__image {
	position: relative;
}

.wv3-post-card__category {
	position: absolute;
	top: var(--wv3-space-sm);
	left: var(--wv3-space-sm);
	display: inline-block;
	padding: 4px 10px 3px;
	border-radius: var(--wv3-radius-full);
	font-size: 0.75rem;
	font-weight: 600;
	background: var(--wv3-primary);
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	transition: background var(--wv3-transition-fast);
}

.wv3-post-card__category:hover {
	background: var(--wv3-primary-dark);
	color: #fff;
}

/* ---- Booking section ---- */
.wv3-booking {
	background-color: var(--wv3-accent-bg, var(--wv3-bg-light));
}

.wv3-booking__wrapper {
	background-color: #fff;
	padding: 1rem 1.7rem;
	border-radius: var(--wv3-radius-md);
	width: fit-content;
	margin: 0 auto;
}

/* ---- Posts list (blog/archive) ---- */
.wv3-posts {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: var(--wv3-space-xl);
}

/* ---- Article grid (content + sidebar) ---- */
.wv3-article {
	padding-top: 3.125rem;
}

.wv3-article__grid {
	display: grid;
	grid-template-columns: 2.8fr 1.2fr;
	gap: var(--wv3-space-2xl);
}

/* ---- Breadcrumb ---- */
.wv3-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--wv3-space-xs);
	font-size: 0.8125rem;
	color: var(--wv3-text-muted);
	margin-bottom: var(--wv3-space-lg);
}

.wv3-breadcrumb a {
	color: var(--wv3-text-secondary);
	text-decoration: none;
	transition: color var(--wv3-transition-fast);
}

.wv3-breadcrumb a:hover {
	color: var(--wv3-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.wv3-breadcrumb__sep {
	color: var(--wv3-text-muted);
}

.wv3-breadcrumb__current {
	color: var(--wv3-text);
	font-weight: 500;
}

/* ---- Sidebar ---- */
.wv3-sidebar {
	position: sticky;
	top: calc(var(--wv3-header-height) + var(--wv3-announcement-height) + var(--wv3-space-lg));
	align-self: start;
}

.wv3-sidebar__widget {
	background: var(--wv3-bg-light);
	border-radius: var(--wv3-radius-md);
	padding: var(--wv3-space-lg);
	margin-bottom: var(--wv3-space-lg);
}

.wv3-sidebar__title {
	font-size: 1.5rem;
	margin-bottom: var(--wv3-space-lg);
}

.wv3-sidebar__post {
	display: flex;
	gap: var(--wv3-space-md);
	align-items: center;
	padding: var(--wv3-space-md) 0;
	border-bottom: 1px solid var(--wv3-border);
	color: var(--wv3-text);
	text-decoration: none;
	transition: color var(--wv3-transition-fast);
}

.wv3-sidebar__post:first-of-type {
	padding-top: 0;
}

.wv3-sidebar__post:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.wv3-sidebar__post:hover {
	color: var(--wv3-primary);
}

.wv3-sidebar__post:hover .wv3-sidebar__post-title {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.wv3-sidebar__post-image {
	flex-shrink: 0;
	width: 3.75rem;
	height: 3.75rem;
	border-radius: var(--wv3-radius-sm);
	overflow: hidden;
}

.wv3-sidebar__post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--wv3-transition-base);
}

.wv3-sidebar__post:hover .wv3-sidebar__post-image img {
	transform: scale(1.1);
}

.wv3-sidebar__post-title {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.4;
	transition: text-decoration var(--wv3-transition-fast);
}

.wv3-sidebar__banner img {
	width: 100%;
	height: auto;
	border-radius: var(--wv3-radius-md);
}

.wv3-sidebar__banner-placeholder-inner {
	text-align: center;
	padding: var(--wv3-space-lg) var(--wv3-space-md);
	border: 2px dashed var(--wv3-border);
	border-radius: var(--wv3-radius-md);
	color: var(--wv3-text-muted);
}

.wv3-sidebar__banner-placeholder-inner .dashicons {
	font-size: 2rem;
	width: 2rem;
	height: 2rem;
	margin-bottom: var(--wv3-space-sm);
}

.wv3-sidebar__banner-placeholder-inner p {
	margin: 0 0 var(--wv3-space-xs);
	font-size: 0.875rem;
}

.wv3-sidebar__banner-placeholder-path {
	font-size: 0.75rem !important;
	color: var(--wv3-text-muted);
	font-style: italic;
}

/* ---- Article ---- */
.wv3-article__image {
	margin-bottom: var(--wv3-space-lg);
	border-radius: var(--wv3-radius-lg);
	overflow: hidden;
}

.wv3-article__image img {
	width: 100%;
	height: 25rem;
	object-fit: cover;
}

.wv3-article__header {
	margin-bottom: var(--wv3-space-xl);
}

.wv3-article__meta {
	display: flex;
	align-items: center;
	gap: var(--wv3-space-md);
	flex-wrap: wrap;
	margin-bottom: var(--wv3-space-sm);
}

.wv3-article__label {
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--wv3-primary);
	margin-top: var(--wv3-space-2xl);
	margin-bottom: 0;
}

.wv3-article__date {
	color: var(--wv3-text-muted);
	font-size: 0.875rem;
}

.wv3-article__title {
	margin-bottom: var(--wv3-space-sm);
	font-size: clamp(1.7rem, 4.25vw, 2.975rem);
}

.wv3-article__category {
	display: inline-block;
	padding: 2px 10px;
	border-radius: var(--wv3-radius-full);
	font-size: 0.75rem;
	font-weight: 600;
	background: var(--wv3-primary);
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	transition: background var(--wv3-transition-fast);
}

.wv3-article__category:hover {
	background: var(--wv3-primary-dark);
	color: #fff;
}

/* ---- Content (WYSIWYG) ---- */
.wv3-content p {
	margin-bottom: 1em;
}

.wv3-content h2, .wv3-content h3, .wv3-content h4 {
	margin: 1.5em 0 0.5em;
}

.wv3-content ul, .wv3-content ol {
	margin: 0.5em 0 1em 1.5em;
}

.wv3-content ul {
	list-style: disc;
}

.wv3-content ol {
	list-style: decimal;
}

.wv3-content li {
	margin-bottom: 0.25em;
}

.wv3-content img {
	border-radius: var(--wv3-radius-md);
	margin: 1em 0;
}

.wv3-content blockquote {
	border-left: 3px solid var(--wv3-primary);
	padding-left: var(--wv3-space-lg);
	color: var(--wv3-text-secondary);
	margin: 1em 0;
	font-style: italic;
}

/* ---- Author BIO ---- */
.wv3-author-bio {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wv3-space-lg);
	align-items: flex-start;
	padding: var(--wv3-space-xl);
	margin-top: var(--wv3-space-2xl);
	background: var(--wv3-bg-light);
	border-radius: var(--wv3-radius-lg);
}

.wv3-author-bio__photo {
	flex-shrink: 0;
	width: 5rem;
	height: 5rem;
	border-radius: var(--wv3-radius-full);
	overflow: hidden;
}

.wv3-author-bio__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wv3-author-bio__title {
	display: block;
	width: 100%;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--wv3-primary);
	margin-bottom: calc(-1 * var(--wv3-space-sm));
}

.wv3-author-bio__content {
	flex: 1;
	min-width: 0;
}

.wv3-author-bio__name {
	font-size: 1.5rem;
	margin-bottom: var(--wv3-space-xs);
}

.wv3-author-bio__text {
	color: var(--wv3-text-secondary);
	font-size: 0.9375rem;
	line-height: 1.6;
	margin: 0;
}

/* ---- Footer ---- */
.wv3-footer {
	background: var(--wv3-text);
	color: #fff;
	padding: var(--wv3-space-3xl) 0 var(--wv3-space-xl);
}

.wv3-footer a {
	color: rgba(255, 255, 255, 0.7);
}

.wv3-footer a:hover {
	color: #fff;
}

.wv3-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: var(--wv3-space-2xl);
	margin-bottom: var(--wv3-space-2xl);
}

.wv3-footer__brand-name {
	display: block;
	font-family: var(--wv3-font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	margin-top: var(--wv3-space-md);
	line-height: 1.2;
}

.wv3-footer__brand-claim {
	display: block;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.7);
	margin-top: var(--wv3-space-xs);
}

.wv3-footer__logo img,
.wv3-footer__logo .custom-logo {
	max-height: 58px;
	width: auto;
}

.wv3-footer__site-name {
	font-family: var(--wv3-font-heading);
	font-size: 1.25rem;
	font-weight: 700;
}

.wv3-footer__address {
	margin-top: 0;
}

.wv3-footer__title {
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: var(--wv3-space-lg);
	color: #fff;
}

.wv3-footer__link {
	display: flex;
	align-items: center;
	gap: var(--wv3-space-sm);
	margin-bottom: var(--wv3-space-sm);
	font-size: 0.9375rem;
}

.wv3-footer__link svg {
	flex-shrink: 0;
}

.wv3-footer__links {
	display: flex;
	flex-direction: column;
	gap: var(--wv3-space-sm);
}

.wv3-footer__links a {
	font-size: 0.9375rem;
}

.wv3-footer__cta {
	margin-top: var(--wv3-space-lg);
}

.wv3-footer__bottom {
	padding-top: calc(var(--wv3-space-xl) + 15px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--wv3-space-md);
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.5);
	text-align: center;
	line-height: 1.6;
}

.wv3-footer__legal-info {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.8125rem;
	text-align: center;
	line-height: 1.6;
}

.wv3-footer__legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--wv3-space-xs);
	font-size: 0.8125rem;
}

.wv3-footer__legal a {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.8125rem;
}

.wv3-footer__legal a:hover {
	color: rgba(255, 255, 255, 0.7);
}

.wv3-footer__legal-sep {
	color: rgba(255, 255, 255, 0.25);
}

.wv3-footer__credit {
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.8125rem;
	text-align: center;
}

.wv3-footer__credit a {
	color: rgba(255, 255, 255, 0.5);
}

.wv3-footer__credit a:hover {
	color: rgba(255, 255, 255, 0.7);
}

.wv3-footer__lokafi {
	text-align: center;
	margin-top: var(--wv3-space-md);
	width: 100%;
	display: flex;
	justify-content: center;
}

.wv3-footer__lokafi-badge {
	height: 48px;
	width: auto;
	margin-top: 0;
	opacity: 0.7;
	transition: opacity var(--wv3-transition-fast);
}

.wv3-footer__lokafi-badge:hover {
	opacity: 1;
}

.wv3-footer__lokafi-badge--dark {
	display: none;
}

.wv3-footer__cta-link {
	margin-top: var(--wv3-space-sm);
}

/* ---- Pagination ---- */
.wv3-pagination {
	margin-top: var(--wv3-space-2xl);
	display: flex;
	justify-content: center;
	gap: var(--wv3-space-sm);
}

.wv3-pagination .page-numbers {
	padding: var(--wv3-space-sm) var(--wv3-space-md);
	border: 1px solid var(--wv3-border);
	border-radius: var(--wv3-radius-sm);
	font-size: 0.875rem;
}

.wv3-pagination .page-numbers.current {
	background: var(--wv3-primary);
	color: #fff;
	border-color: var(--wv3-primary);
}

/* ---- Lightbox ---- */
.wv3-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.92);
	display: none;
	align-items: center;
	justify-content: center;
	padding: var(--wv3-space-2xl);
}

.wv3-lightbox.active {
	display: flex;
}

.wv3-lightbox__img {
	max-width: 90vw;
	max-height: 85vh;
	object-fit: contain;
	border-radius: var(--wv3-radius-sm);
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.wv3-lightbox.active .wv3-lightbox__img {
	opacity: 1;
	transform: scale(1);
}

.wv3-lightbox__close {
	position: absolute;
	top: var(--wv3-space-lg);
	right: var(--wv3-space-lg);
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: var(--wv3-radius-full);
	color: #fff;
	font-size: 1.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--wv3-transition-fast);
}

.wv3-lightbox__close:hover {
	background: rgba(255, 255, 255, 0.25);
}

.wv3-lightbox__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: var(--wv3-radius-full);
	color: #fff;
	font-size: 1.25rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--wv3-transition-fast);
}

.wv3-lightbox__nav:hover {
	background: rgba(255, 255, 255, 0.25);
}

.wv3-lightbox__nav--prev {
	left: var(--wv3-space-lg);
}

.wv3-lightbox__nav--next {
	right: var(--wv3-space-lg);
}

.wv3-lightbox__counter {
	position: absolute;
	bottom: var(--wv3-space-lg);
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
}

/* ---- Header CTA ---- */
.wv3-header__cta {
	padding: 8px 20px;
	font-size: 0.8125rem;
	white-space: nowrap;
}

/* ---- Card CTA ---- */
.wv3-card__cta {
	margin-top: auto;
	padding-top: var(--wv3-space-md);
}

.wv3-services__card {
	display: flex;
	flex-direction: column;
}

/* (carousel removed — reviews now use horizontal scroll grid) */

/* ---- Footer social icons ---- */
.wv3-footer__social {
	display: flex;
	gap: var(--wv3-space-md);
	margin-top: var(--wv3-space-lg);
}

.wv3-footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--wv3-radius-full);
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7);
	transition: all var(--wv3-transition-fast);
}

.wv3-footer__social-link:hover {
	background: var(--wv3-primary);
	color: #fff;
}

/* ---- Process — vertical timeline variant ---- */
/* Used by STARTER/CLASSIC templates via .wv3-process--timeline class */
.wv3-process--timeline .wv3-process__grid {
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 600px;
	margin: 0 auto 0;
}

.wv3-process--timeline .wv3-process__step {
	display: flex;
	gap: var(--wv3-space-lg);
	text-align: left;
	padding: 0 0 var(--wv3-space-xl);
	position: relative;
}

.wv3-process--timeline .wv3-process__step:last-child {
	padding-bottom: 0;
}

.wv3-process--timeline .wv3-process__step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 56px;
	left: 27px;
	width: 2px;
	height: calc(100% - 56px);
	background: var(--wv3-primary);
	right: auto;
}

.wv3-process--timeline .wv3-process__marker {
	flex-shrink: 0;
}

.wv3-process--timeline .wv3-process__content {
	padding-top: var(--wv3-space-md);
}

/* ---- Animations (IntersectionObserver) ---- */
/* JS adds .wv3-animate to body, then elements start hidden and animate in */
/* body prefix ensures higher specificity than template-specific overrides */
body.wv3-animate .wv3-card,
body.wv3-animate .wv3-gallery__item,
body.wv3-animate .wv3-reviews__card,
body.wv3-animate .wv3-pricing__row,
body.wv3-animate .wv3-process__step,
body.wv3-animate .wv3-about__qual,
body.wv3-animate .wv3-post-card {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--wv3-transition-base);
}

body.wv3-animate .wv3-card.visible,
body.wv3-animate .wv3-gallery__item.visible,
body.wv3-animate .wv3-reviews__card.visible,
body.wv3-animate .wv3-pricing__row.visible,
body.wv3-animate .wv3-process__step.visible,
body.wv3-animate .wv3-about__qual.visible,
body.wv3-animate .wv3-post-card.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ---- Desktop reviews nav ---- */
@media (min-width: 1024px) {
	.wv3-reviews__nav {
		display: flex;
	}
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.wv3-about__grid {
		grid-template-columns: 1fr;
		gap: var(--wv3-space-lg);
	}

	.wv3-about__photo img {
		height: 400px;
	}

	.wv3-article__grid {
		grid-template-columns: 1fr;
	}

	.wv3-sidebar {
		position: static;
	}

	.wv3-business-info__grid {
		grid-template-columns: 1fr;
	}

	.wv3-business-info__card {
		max-width: none;
	}

	.wv3-contact__grid {
		grid-template-columns: 1fr;
	}

	.wv3-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* Business info — amenities (A8) */
.wv3-business-info__amenities {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wv3-space-md);
	margin-top: var(--wv3-space-lg);
}

.wv3-business-info__amenity {
	display: flex;
	align-items: center;
	gap: var(--wv3-space-xs);
	font-size: 0.875rem;
	color: var(--wv3-text-secondary);
}

.wv3-business-info__amenity svg {
	color: var(--wv3-primary);
}

.wv3-business-info__amenities--below-map {
	flex-shrink: 0;
	background: var(--wv3-bg-light);
	border-radius: var(--wv3-radius-md);
	padding: var(--wv3-space-md) var(--wv3-space-lg);
}

@media (max-width: 768px) {
	:root {
		--wv3-space-section: 64px;
		--wv3-header-height: 64px;
	}

	/* Mobile nav */
	.wv3-hamburger {
		display: flex;
	}

	.wv3-nav {
		position: fixed;
		top: calc(var(--wv3-header-height) + var(--wv3-announcement-height));
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--wv3-bg);
		padding: var(--wv3-space-xl);
		transform: translateX(100%);
		transition: transform var(--wv3-transition-base);
		overflow-y: auto;
	}

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

	.wv3-nav__list {
		flex-direction: column;
		gap: 0;
	}

	.wv3-nav__link {
		display: block;
		padding: var(--wv3-space-md) 0;
		font-size: 1.125rem;
		border-bottom: 1px solid var(--wv3-border);
	}

	/* Footer */
	.wv3-footer__grid {
		grid-template-columns: 1fr;
		gap: var(--wv3-space-xl);
	}

	/* Hero */
	.wv3-hero {
		padding-top: var(--wv3-space-lg);
	}

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

	.wv3-hero__image {
		order: -1;
		max-width: 400px;
		height: 200px;
		margin: 0 auto;
		overflow: hidden;
		border-radius: var(--wv3-radius-md);
	}

	.wv3-hero__image picture {
		display: block;
		width: 100%;
		height: 100%;
	}

	.wv3-hero__image img {
		position: static;
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: var(--wv3-radius-md);
	}

	/* Venue — side padding on mobile */
	.wv3-venue__slider {
		padding: 0 var(--wv3-space-lg);
	}

	/* Grids */
	.wv3-services__grid,
	.wv3-blog-section__grid,
	.wv3-posts {
		grid-template-columns: 1fr;
	}

	.wv3-post-card__title {
		font-size: 1.38rem;
	}

	.wv3-reviews__scroll {
		gap: var(--wv3-space-md);
	}

	.wv3-reviews__scroll > .wv3-reviews__card {
		min-width: 88%;
		max-width: 88%;
		flex-shrink: 0;
	}

	/* Disable fade-in animation for gallery & reviews on mobile — keep swipe hint only */
	.wv3-animate .wv3-gallery__item,
	.wv3-animate .wv3-reviews__card {
		opacity: 1;
		transform: none;
	}

	/* H2 section titles bigger on mobile */
	.wv3-section__title {
		font-size: 2rem;
	}

	/* Hero — H1 bigger, subtitle smaller, badge closer to image */
	.wv3-hero--split .wv3-hero__inner {
		gap: var(--wv3-space-md);
	}

	.wv3-hero__title {
		font-size: clamp(2.3rem, 6.3vw, 3.5rem);
		margin-top: 5px;
	}

	.wv3-hero__subtitle {
		font-size: 17px;
	}

	/* Logo — reset margin on mobile */
	.wv3-header__logo {
		margin-left: 0;
	}

	/* Swipe hint animation */
	@keyframes wv3-swipe-hint {
		0%, 100% { transform: translateX(0); }
		30% { transform: translateX(-40px); }
		60% { transform: translateX(16px); }
	}

	.wv3-swipe-hint {
		animation: wv3-swipe-hint 1.5s ease-in-out;
	}

	/* Process — hide connecting line on mobile (horizontal only) */
	.wv3-process__grid:not(.wv3-process--timeline .wv3-process__grid) .wv3-process__step:not(:last-child)::after {
		display: none;
	}

	/* Header CTA — hide on mobile, show inside nav */
	.wv3-header__cta {
		display: none;
	}

	.wv3-nav__mobile-cta {
		display: block;
		margin-top: var(--wv3-space-lg);
		text-align: center;
	}

	/* Contact form — more padding on mobile */
	.wv3-contact__form {
		padding: var(--wv3-space-xl);
	}

	/* Lightbox nav */
	.wv3-lightbox__nav {
		width: 36px;
		height: 36px;
	}

	.wv3-lightbox__nav--prev {
		left: var(--wv3-space-sm);
	}

	.wv3-lightbox__nav--next {
		right: var(--wv3-space-sm);
	}

	/* Opening hours — full width on mobile */
	.wv3-business-info__hours-row {
		max-width: 100%;
	}

	/* Gallery — horizontal scroll like reviews */
	.wv3-gallery {
		overflow-x: hidden;
	}

	.wv3-gallery__grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: var(--wv3-space-md);
		scrollbar-width: none;
	}

	.wv3-gallery__grid::-webkit-scrollbar {
		display: none;
	}

	.wv3-gallery__grid > .wv3-gallery__item {
		min-width: 80%;
		max-width: 80%;
		scroll-snap-align: start;
		flex-shrink: 0;
		border-radius: 0;
	}

	/* Pricing — vertical stack on mobile */
	.wv3-pricing__row {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--wv3-space-xs);
	}

	/* Service card titles +39% on mobile (30% + 7%) */
	.wv3-card__title {
		font-size: 1.56rem;
	}

	/* Footer — center all content on mobile */
	.wv3-footer {
		text-align: center;
	}

	.wv3-footer__social {
		justify-content: center;
	}

	.wv3-footer__links {
		justify-content: center;
	}

	.wv3-footer__link {
		justify-content: center;
	}

	/* A1 — Center text globally on mobile, except form/detail wrappers */
	.wv3-section {
		text-align: center;
	}

	.wv3-section__title,
	.wv3-section__subtitle {
		text-align: center;
	}

	.wv3-contact__form,
	.wv3-author-bio,
	.wv3-article__main {
		text-align: left;
	}

	/* Business info — keep hours table left-aligned */
	.wv3-business-info__hours dd,
	.wv3-business-info__hours dt {
		text-align: left;
	}

	/* A3 — Disable hero image animation on mobile */
	.wv3-animate .wv3-hero__image {
		opacity: 1;
		transform: none;
		transition: none;
	}

	/* A4 — Business info centered on mobile */
	.wv3-business-info__card {
		padding-left: var(--wv3-space-lg);
		padding-right: var(--wv3-space-lg);
		text-align: center;
	}

	.wv3-business-info__card .wv3-section__title {
		text-align: center;
	}

	.wv3-business-info__row {
		justify-content: center;
	}

	.wv3-business-info__hours-title {
		justify-content: center;
	}

	.wv3-business-info__social {
		justify-content: center;
	}

	/* A5 — Amenities centered on mobile */
	.wv3-business-info__amenities {
		justify-content: center;
	}

	/* A6 — Booking buttons centered on mobile */
	.wv3-booking__wrapper {
		width: 100%;
	}

	.wv3-booking .fcal_wrap {
		text-align: center;
	}

	/* A7 — Business info underline centered on mobile */
	.wv3-business-info__card .wv3-section__title::after,
	.wv3-business-info__details .wv3-section__title::after {
		left: 50% !important;
		transform: translateX(-50%) !important;
	}

	/* A8 — Footer bottom separator 70% on mobile */
	.wv3-footer__bottom::before {
		max-width: 70% !important;
	}

	.wv3-footer__bottom {
		position: relative;
	}

	.wv3-footer__lokafi {
		margin-top: 15%;
	}

	/* Contact section — proper section spacing + centered on mobile */
	.wv3-contact {
		padding-top: var(--wv3-space-3xl);
		text-align: center;
	}

	.wv3-contact__inner {
		text-align: center;
	}

	.wv3-contact__form {
		text-align: left;
	}

	/* A10 — Author bio column layout on mobile */
	.wv3-author-bio {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	/* Hero — center all content on mobile */
	.wv3-hero__content {
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.wv3-hero__blurbs {
		justify-content: center;
	}

	.wv3-hero__review-badge {
		align-items: center;
	}

	/* Reviews — keep text left-aligned, fix vertical scroll */
	.wv3-reviews__text {
		text-align: left;
	}

	.wv3-reviews__scroll {
		overflow-y: hidden;
		touch-action: pan-x;
	}

	/* About — reduce gap between title and photo */
	.wv3-about__grid {
		gap: var(--wv3-space-sm);
	}

	/* About — center qualifications */
	.wv3-about__quals {
		justify-content: center;
	}

	.wv3-about__qual {
		text-align: center;
	}

	/* Pricing — center items on mobile */
	.wv3-pricing__row {
		align-items: center;
		text-align: center;
	}

	.wv3-pricing__name {
		text-align: center;
		width: 100%;
	}

	.wv3-pricing__desc {
		text-align: center;
	}

	.wv3-pricing__price {
		text-align: center;
	}

	/* Contact details — center on mobile, reduce gap from form */
	.wv3-contact__details {
		text-align: center;
		align-items: center;
		padding-top: var(--wv3-space-md);
	}

	.wv3-contact__detail-row {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	/* Footer — more space above Rozcestník */
	.wv3-footer__grid {
		margin-top: calc(var(--wv3-space-lg) * 1.1);
	}

	/* Footer brand-name — smaller font + less top margin on mobile */
	.wv3-footer__brand-name {
		font-size: 1.275rem;
		margin-top: var(--wv3-space-sm);
	}

	/* Hero badge — 10px top spacing from hero image on mobile */
	.wv3-hero__badge {
		margin-top: 10px;
	}

}

/* Accessibility — respect reduced motion preference. */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
