/* =====================================================================
   Voyago – hlavní stylopis tématu
   Obsah:
   1.  Proměnné a reset
   2.  Typografie a základní prvky
   3.  Utility (container, tlačítka, sekce)
   4.  Záhlaví a navigace
   5.  Hero sekce
   6.  Výhody (features)
   7.  Destinace
   8.  Výlety (karty)
   9.  Statistiky
   10. Recenze
   11. Blog
   12. Kontaktní formulář
   13. Newsletter
   14. Patička
   15. Vnitřní stránky (archiv, článek, detail, 404)
   16. Komentáře a stránkování
   17. Responzivita
   ===================================================================== */

/* 1. PROMĚNNÉ A RESET ------------------------------------------------- */
:root {
	--brand:        #F2792B;
	--brand-dark:   #D9641A;
	--brand-soft:   #FFF1E6;
	--ink:          #0E2A47;
	--ink-soft:     #1B3A5B;
	--teal:         #13808C;
	--muted:        #5C6B7E;
	--text:         #2C3A48;
	--line:         #E6EBF1;
	--paper:        #F4F7FA;
	--sand:         #FFF8F1;
	--white:        #FFFFFF;
	--star:         #F4A82B;

	--font-head: 'Poppins', 'Trebuchet MS', sans-serif;
	--font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

	--radius:    14px;
	--radius-lg: 24px;
	--radius-pill: 999px;

	--shadow-sm: 0 4px 14px rgba(14, 42, 71, .06);
	--shadow-md: 0 14px 34px rgba(14, 42, 71, .10);
	--shadow-lg: 0 26px 60px rgba(14, 42, 71, .16);

	--container: 1200px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: var(--brand); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--brand-dark); }

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; }

/* 2. TYPOGRAFIE ------------------------------------------------------- */
h1, h2, h3, h4, h5 {
	font-family: var(--font-head);
	color: var(--ink);
	line-height: 1.22;
	margin: 0 0 .5em;
	font-weight: 700;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

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

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	z-index: 999;
	background: var(--ink);
	color: #fff;
	padding: 12px 20px;
	border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible {
	outline: 3px solid rgba(242, 121, 43, .55);
	outline-offset: 2px;
}

/* 3. UTILITY ---------------------------------------------------------- */
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.section { padding: 92px 0; }
/* Když jsou třídy .section a .container na jednom prvku (blog, 404,
   prázdná stránka, stránky WooCommerce), zachovej vodorovné odsazení
   kontejneru – jinak by je svislé odsazení sekce přepsalo na nulu. */
.container.section { padding-left: 24px; padding-right: 24px; }
.section--paper { background: var(--paper); }

.section-head { max-width: 680px; margin: 0 0 48px; }
.section-head--row {
	max-width: none;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
}
.section-head--row .section-head__lead { max-width: 380px; margin: 0; }

.section-head__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--brand);
	margin: 0 0 12px;
}
.section-head__title {
	font-size: clamp(1.8rem, 1.2rem + 1.9vw, 2.7rem);
	margin: 0 0 14px;
}
.section-head__lead {
	font-size: 1.05rem;
	color: var(--muted);
	margin: 0;
}

.section-foot { text-align: center; margin-top: 48px; }

.anchor-offset {
	display: block;
	position: relative;
	top: -110px;
	visibility: hidden;
}

[id] { scroll-margin-top: 112px; }

/* Tlačítka */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 15px;
	line-height: 1;
	padding: 13px 26px;
	border: 2px solid transparent;
	border-radius: var(--radius-pill);
	cursor: pointer;
	transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease, border-color .18s ease;
	white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }

.btn--primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn--primary:hover {
	background: var(--brand-dark);
	border-color: var(--brand-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(242, 121, 43, .34);
}
.btn--ghost {
	background: rgba(255, 255, 255, .12);
	color: #fff;
	border-color: rgba(255, 255, 255, .55);
}
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 13.5px; }

/* Hvězdičkové hodnocení */
.rating { display: inline-flex; align-items: center; gap: 8px; }
.stars {
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 1;
	font-family: Arial, sans-serif;
}
.stars::before { content: "★★★★★"; color: #DCE2EA; letter-spacing: 2px; }
.stars__fill {
	position: absolute;
	left: 0; top: 0;
	overflow: hidden;
	white-space: nowrap;
}
.stars__fill::before { content: "★★★★★"; color: var(--star); letter-spacing: 2px; }
.rating__count { font-size: 13px; color: var(--muted); }

/* 4. ZÁHLAVÍ A NAVIGACE ---------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: #fff;
}

.topbar {
	background: var(--ink);
	color: rgba(255, 255, 255, .82);
	font-size: 13.5px;
	overflow: hidden;
	transition: max-height .3s ease, padding .3s ease;
	max-height: 60px;
}
.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 42px;
}
.topbar__contact { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar__contact li { display: flex; align-items: center; gap: 7px; }
.topbar a { color: rgba(255, 255, 255, .82); }
.topbar a:hover { color: #fff; }
.topbar .ico { width: 15px; height: 15px; fill: var(--brand); flex: none; }

.topbar__social { display: flex; align-items: center; gap: 10px; }
.topbar__social-label { opacity: .7; }
.topbar__social a {
	display: inline-flex;
	width: 28px; height: 28px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
}
.topbar__social a:hover { background: var(--brand); }
.topbar__social .ico { width: 15px; height: 15px; fill: #fff; }

.navbar {
	border-bottom: 1px solid var(--line);
	transition: box-shadow .25s ease;
}
.navbar__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 84px;
}

.site-branding { flex: none; }
.custom-logo, .site-branding img { height: 44px; width: auto; display: block; }

.main-nav { margin-left: auto; }
.main-nav .menu {
	display: flex;
	align-items: center;
	gap: 4px;
}
.main-nav .menu a {
	display: block;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 15px;
	color: var(--ink);
	padding: 10px 16px;
	border-radius: 8px;
}
.main-nav .menu a:hover,
.main-nav .menu .current-menu-item > a,
.main-nav .menu .current_page_item > a {
	color: var(--brand);
	background: var(--brand-soft);
}
.main-nav .sub-menu {
	position: absolute;
	min-width: 220px;
	background: #fff;
	box-shadow: var(--shadow-md);
	border-radius: 12px;
	padding: 8px;
	margin-top: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: .2s ease;
}
.main-nav .menu-item-has-children { position: relative; }
.main-nav .menu-item-has-children:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.navbar__actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
	display: none;
	width: 46px; height: 46px;
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 10px;
	cursor: pointer;
	padding: 0;
	position: relative;
}
.nav-toggle__bar {
	display: block;
	width: 20px; height: 2px;
	background: var(--ink);
	margin: 4px auto;
	transition: .25s ease;
}
.site-header.is-nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header.is-nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.site-header.is-nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.site-header.is-scrolled .topbar { max-height: 0; }
.site-header.is-scrolled .navbar { box-shadow: var(--shadow-sm); }
.site-header.is-scrolled .navbar__inner { min-height: 70px; }

/* 5. HERO ------------------------------------------------------------- */
.hero {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	overflow: hidden;
}
.hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, rgba(10, 28, 50, .86) 0%, rgba(10, 28, 50, .52) 52%, rgba(10, 28, 50, .12) 100%);
}
.hero__inner {
	position: relative;
	z-index: 2;
	padding: 56px 24px 52px;
}
.hero__content { max-width: 660px; }

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: rgba(255, 255, 255, .14);
	border: 1px solid rgba(255, 255, 255, .25);
	padding: 8px 16px;
	border-radius: var(--radius-pill);
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 13.5px;
	margin: 0 0 14px;
}
.hero__badge svg { width: 16px; height: 16px; fill: var(--brand); }

.hero__title {
	color: #fff;
	font-size: clamp(2rem, 1.2rem + 2.7vw, 3.05rem);
	font-weight: 800;
	line-height: 1.14;
	margin: 0 0 12px;
	letter-spacing: -.5px;
}
.hero__text {
	font-size: 1.04rem;
	color: rgba(255, 255, 255, .9);
	max-width: 540px;
	margin: 0 0 20px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Vyhledávací karta */
.hero-search {
	position: relative;
	z-index: 2;
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 24px;
	margin-top: 44px;
	color: var(--text);
}
.hero-search__title {
	font-family: var(--font-head);
	font-weight: 600;
	color: var(--ink);
	margin: 0 0 14px;
	font-size: 15px;
}
.hero-search__grid {
	display: grid;
	grid-template-columns: 1.7fr 1fr 1fr auto;
	gap: 14px;
	align-items: end;
}

.field { display: block; }
.field__label {
	display: block;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--muted);
	margin: 0 0 6px;
	text-transform: uppercase;
	letter-spacing: .05em;
}
.field__control {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--paper);
	border: 1.5px solid var(--line);
	border-radius: 12px;
	padding: 0 14px;
	transition: border-color .18s ease, background .18s ease;
}
.field__control:focus-within { border-color: var(--brand); background: #fff; }
.field__ico { width: 18px; height: 18px; fill: var(--brand); flex: none; }
.field__control input,
.field__control select {
	border: 0;
	background: transparent;
	padding: 14px 0;
	font-size: 15px;
	font-family: var(--font-body);
	color: var(--ink);
	width: 100%;
	outline: none;
}
.hero-search__submit { height: 52px; padding: 0 26px; }

.hero__trust {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 22px 44px;
	margin: 28px 0 0;
}
.hero__trust li { display: flex; flex-direction: column; gap: 4px; }
.hero__trust strong {
	font-family: var(--font-head);
	font-size: 1.5rem;
	color: #fff;
	font-weight: 700;
}
.hero__trust span { font-size: 13.5px; color: rgba(255, 255, 255, .78); }

/* 6. FEATURES --------------------------------------------------------- */
.features__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.feature-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px 26px;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: transparent;
}
.feature-card__icon {
	display: inline-flex;
	width: 58px; height: 58px;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: var(--brand-soft);
	margin-bottom: 18px;
}
.feature-card__icon svg { width: 28px; height: 28px; fill: var(--brand); }
.feature-card__title { font-size: 1.16rem; margin: 0 0 8px; }
.feature-card__text { font-size: .95rem; color: var(--muted); margin: 0; }

/* 7. DESTINACE -------------------------------------------------------- */
.destinations__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.destination-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 14px;
	color: var(--ink);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}
.destination-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); color: var(--ink); }
.destination-card__media {
	flex: none;
	width: 96px; height: 96px;
	border-radius: 12px;
	overflow: hidden;
}
.destination-card__media img { width: 100%; height: 100%; object-fit: cover; }
.destination-card__body { display: flex; flex-direction: column; }
.destination-card__name {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 1.15rem;
}
.destination-card__count { font-size: 13.5px; color: var(--muted); }
.destination-card__arrow {
	margin-left: auto;
	width: 38px; height: 38px;
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--paper);
	transition: background .2s ease, transform .2s ease;
}
.destination-card__arrow svg { width: 18px; height: 18px; fill: var(--brand); }
.destination-card:hover .destination-card__arrow { background: var(--brand); transform: translateX(3px); }
.destination-card:hover .destination-card__arrow svg { fill: #fff; }

/* 8. VÝLETY ---------------------------------------------------------- */
.tours__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
}
.tour-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tour-card:hover {
	transform: translateY(-7px);
	box-shadow: var(--shadow-lg);
	border-color: transparent;
}
.tour-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.tour-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.tour-card:hover .tour-card__media img { transform: scale(1.07); }
.tour-card__badge {
	position: absolute;
	top: 12px; left: 12px;
	background: var(--brand);
	color: #fff;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 12px;
	padding: 6px 12px;
	border-radius: var(--radius-pill);
}
.tour-card__duration {
	position: absolute;
	bottom: 12px; left: 12px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(14, 42, 71, .82);
	color: #fff;
	font-size: 12.5px;
	font-weight: 500;
	padding: 6px 11px;
	border-radius: var(--radius-pill);
}
.tour-card__duration svg { width: 14px; height: 14px; fill: var(--brand); }

.tour-card__body { padding: 18px 20px 8px; flex: 1; }
.tour-card__location {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 13px;
	font-weight: 500;
	color: var(--teal);
	margin: 0 0 8px;
}
.tour-card__location svg { width: 14px; height: 14px; fill: var(--teal); }
.tour-card__title {
	font-size: 1.07rem;
	line-height: 1.35;
	margin: 0 0 8px;
}
.tour-card__title a { color: var(--ink); }
.tour-card__title a:hover { color: var(--brand); }
.tour-card__excerpt {
	font-size: .9rem;
	color: var(--muted);
	margin: 0 0 12px;
}
.tour-card__rating { margin-bottom: 4px; }

.tour-card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 14px 20px 20px;
	border-top: 1px solid var(--line);
	margin-top: 6px;
}
.tour-card__price { display: flex; flex-direction: column; line-height: 1.2; }
.tour-card__price-label { font-size: 11.5px; color: var(--muted); }
.tour-card__price-value {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.18rem;
	color: var(--ink);
	white-space: nowrap;
}

/* 9. STATISTIKY ------------------------------------------------------- */
.stats {
	position: relative;
	background: linear-gradient(120deg, var(--ink) 0%, var(--ink-soft) 100%);
	color: #fff;
	padding: 74px 0;
	overflow: hidden;
}
.stats__pattern {
	position: absolute;
	inset: 0;
	background-size: 180px;
	opacity: .07;
}
.stats .container { position: relative; z-index: 2; }
.stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}
.stats__eyebrow {
	text-align: center;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--brand);
	margin: 0 0 10px;
}
.stats__heading {
	text-align: center;
	color: #fff;
	font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem);
	margin: 0 auto 46px;
	max-width: 560px;
}
.stat { text-align: center; }
.stat__num {
	display: inline-block;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 2.4rem;
	line-height: 1;
	color: var(--brand);
	margin-bottom: 14px;
}
.stat__name {
	color: #fff;
	font-family: var(--font-head);
	font-size: 1.16rem;
	margin: 0 0 8px;
}
.stat__label {
	font-size: .95rem;
	color: rgba(255, 255, 255, .78);
	margin: 0 auto;
	max-width: 230px;
}

/* 10. RECENZE --------------------------------------------------------- */
.testimonials__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.review-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px 24px;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.review-card__quote {
	width: 40px; height: 40px;
	fill: var(--brand-soft);
	position: absolute;
	top: 18px; right: 18px;
}
.review-card__stars { position: relative; z-index: 1; }
.review-card__text {
	margin: 0;
	font-size: .96rem;
	color: var(--text);
	flex: 1;
}
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
	width: 46px; height: 46px;
	flex: none;
	border-radius: 50%;
	background: var(--brand);
	color: #fff;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.15rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.review-card__meta { display: flex; flex-direction: column; }
.review-card__name { font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.review-card__tour { font-size: 13px; color: var(--muted); }

/* 11. BLOG ------------------------------------------------------------ */
.blog__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.post-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.post-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: transparent;
}
.post-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.post-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}
.post-card__cat {
	background: var(--brand-soft);
	color: var(--brand-dark);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 12px;
	padding: 4px 11px;
	border-radius: var(--radius-pill);
}
.post-card__date { font-size: 13px; color: var(--muted); }
.post-card__title { font-size: 1.16rem; line-height: 1.35; margin: 0 0 8px; }
.post-card__title a { color: var(--ink); }
.post-card__title a:hover { color: var(--brand); }
.post-card__excerpt { font-size: .93rem; color: var(--muted); margin: 0 0 16px; flex: 1; }
.post-card__more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 14px;
	color: var(--brand);
}
.post-card__more svg { width: 16px; height: 16px; fill: currentColor; transition: transform .2s ease; }
.post-card:hover .post-card__more svg { transform: translateX(4px); }

/* 12. KONTAKTNÍ FORMULÁŘ --------------------------------------------- */
.contact { position: relative; }
.contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 48px;
	align-items: start;
}
.contact__title { font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.3rem); margin: 0 0 14px; }
.contact__lead { color: var(--muted); margin: 0 0 28px; }

.contact__list { display: flex; flex-direction: column; gap: 18px; }
.contact__list li { display: flex; align-items: center; gap: 14px; }
.contact__ico {
	width: 50px; height: 50px;
	flex: none;
	border-radius: 14px;
	background: var(--brand-soft);
	display: flex;
	align-items: center;
	justify-content: center;
}
.contact__ico svg { width: 22px; height: 22px; fill: var(--brand); }
.contact__data { display: flex; flex-direction: column; }
.contact__label { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.contact__data a, .contact__data span:last-child {
	font-family: var(--font-head);
	font-weight: 600;
	color: var(--ink);
	font-size: 1.02rem;
}
.contact__data a:hover { color: var(--brand); }

.contact__form-wrap {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	padding: 34px;
}
.contact__form-title { font-size: 1.4rem; margin: 0 0 20px; }

.voyago-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.voyago-form__field { display: block; margin-bottom: 16px; }
.voyago-form__label {
	display: block;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 6px;
}
.voyago-form__label i { color: var(--brand); font-style: normal; }
.voyago-form input,
.voyago-form textarea,
.voyago-form select {
	width: 100%;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--ink);
	background: var(--paper);
	border: 1.5px solid var(--line);
	border-radius: 11px;
	padding: 12px 14px;
	transition: border-color .18s ease, background .18s ease;
}
.voyago-form input:focus,
.voyago-form textarea:focus,
.voyago-form select:focus {
	outline: none;
	border-color: var(--brand);
	background: #fff;
}
.voyago-form textarea { resize: vertical; min-height: 110px; }
.voyago-form__hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }

.voyago-form__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 6px;
}
.voyago-form__note { font-size: 12.5px; color: var(--muted); margin: 0; max-width: 320px; }
.voyago-form__note i { color: var(--brand); font-style: normal; }

.form-notice {
	border-radius: 12px;
	padding: 14px 18px;
	margin-bottom: 18px;
	font-size: 14.5px;
	font-weight: 500;
}
.form-notice.is-success { background: #E8F6EE; color: #1B7A45; border: 1px solid #BFE6CE; }
.form-notice.is-error   { background: #FDECEC; color: #C0392B; border: 1px solid #F3C9C5; }

/* 13. NEWSLETTER ------------------------------------------------------ */
.newsletter { padding: 0 0 92px; }
.newsletter__inner {
	background: linear-gradient(120deg, var(--brand) 0%, var(--brand-dark) 100%);
	border-radius: var(--radius-lg);
	padding: 44px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	color: #fff;
}
.newsletter__text { display: flex; align-items: center; gap: 20px; }
.newsletter__icon {
	width: 64px; height: 64px;
	flex: none;
	border-radius: 18px;
	background: rgba(255, 255, 255, .16);
	display: flex;
	align-items: center;
	justify-content: center;
}
.newsletter__icon svg { width: 30px; height: 30px; fill: #fff; }
.newsletter__title { color: #fff; font-size: 1.5rem; margin: 0 0 4px; }
.newsletter__lead { color: rgba(255, 255, 255, .9); margin: 0; font-size: .96rem; }

.newsletter__form-wrap { flex: none; width: 420px; max-width: 100%; }
.newsletter__form { display: flex; gap: 10px; }
.newsletter__form input {
	flex: 1;
	border: 0;
	border-radius: var(--radius-pill);
	padding: 14px 20px;
	font-size: 15px;
	font-family: var(--font-body);
}
.newsletter__form input:focus { outline: 3px solid rgba(255, 255, 255, .55); }
.newsletter__form .btn--primary {
	background: var(--ink);
	border-color: var(--ink);
}
.newsletter__form .btn--primary:hover {
	background: #fff;
	color: var(--ink);
	border-color: #fff;
}
.newsletter__fineprint { font-size: 12.5px; color: rgba(255, 255, 255, .82); margin: 10px 0 0; }
.newsletter .form-notice { color: var(--ink); }

/* 14. PATIČKA --------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .72); }
.footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 40px;
	padding: 70px 24px 54px;
}
.footer__logo { height: 46px; width: auto; margin-bottom: 18px; }
.footer__note { font-size: .92rem; margin: 0 0 20px; max-width: 320px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
	width: 38px; height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
}
.footer__social a:hover { background: var(--brand); }
.footer__social .ico { width: 17px; height: 17px; fill: #fff; }

.footer__title {
	color: #fff;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	margin: 0 0 18px;
}
.footer__list { display: flex; flex-direction: column; gap: 11px; }
.footer__list a { color: rgba(255, 255, 255, .72); font-size: .93rem; }
.footer__list a:hover { color: var(--brand); }
.footer__list--contact li { display: flex; flex-direction: column; gap: 1px; font-size: .93rem; }
.footer__list--contact span { font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: rgba(255, 255, 255, .45); }
.footer-widget { margin-bottom: 18px; }
.footer-widget__title { color: #fff; font-size: 1rem; }

.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); }
.footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px 24px;
	flex-wrap: wrap;
}
.footer__copy { margin: 0; font-size: .86rem; }
.footer__pay { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badge {
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 7px;
	padding: 5px 11px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, .82);
}

.to-top {
	position: fixed;
	right: 24px; bottom: 24px;
	width: 48px; height: 48px;
	border: 0;
	border-radius: 50%;
	background: var(--brand);
	color: #fff;
	cursor: pointer;
	box-shadow: var(--shadow-md);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: .25s ease;
	z-index: 55;
}
.to-top svg { width: 22px; height: 22px; fill: #fff; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--brand-dark); }

/* 15. VNITŘNÍ STRÁNKY ------------------------------------------------- */
.page-hero {
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	padding: 64px 0;
}
.page-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--brand);
	margin: 0 0 10px;
}
.page-hero__eyebrow svg { fill: var(--brand); }
.page-hero__title { font-size: clamp(1.8rem, 1.2rem + 2vw, 2.8rem); margin: 0; }
.page-hero__title span { color: var(--brand); }
.page-hero__desc { color: var(--muted); margin: 12px 0 0; max-width: 620px; }
.page-hero--post { background: var(--ink); border-bottom: 0; }
.page-hero--post .page-hero__title { color: #fff; }
.page-hero--post .page-hero__meta { color: rgba(255, 255, 255, .7); margin-top: 14px; font-size: 14px; }
.page-hero--post .page-hero__meta .sep { margin: 0 8px; }
.page-hero__tag {
	display: inline-block;
	background: var(--brand);
	color: #fff;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 12.5px;
	padding: 5px 13px;
	border-radius: var(--radius-pill);
	margin-bottom: 14px;
}
.page-hero__tag:hover { background: var(--brand-dark); color: #fff; }

.single-post { max-width: 800px; padding-top: 56px; padding-bottom: 80px; }
.single-post__media { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; }
.entry-content { font-size: 1.05rem; }
.entry-content h2 { margin-top: 1.6em; font-size: 1.6rem; }
.entry-content h3 { margin-top: 1.4em; font-size: 1.3rem; }
.entry-content img { border-radius: var(--radius); margin: 1.5em 0; }
.entry-content blockquote {
	margin: 1.6em 0;
	padding: 6px 0 6px 24px;
	border-left: 4px solid var(--brand);
	color: var(--ink);
	font-size: 1.12rem;
}
.entry-content a { text-decoration: underline; }
.single-post__tags { margin-top: 32px; font-size: 14px; }
.single-post__tags .tags-label { font-weight: 600; color: var(--ink); }

.tour-detail {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 40px;
	padding-top: 48px;
	padding-bottom: 80px;
	align-items: start;
}
.tour-detail__media { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 28px; }
.booking-box {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	padding: 26px;
	position: sticky;
	top: 120px;
}
.booking-box__price { margin: 0 0 18px; display: flex; flex-direction: column; }
.booking-box__price-label { font-size: 13px; color: var(--muted); }
.booking-box__price-value {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 1.9rem;
	color: var(--ink);
}
.booking-box__list { display: flex; flex-direction: column; gap: 12px; margin: 0 0 20px; }
.booking-box__list li {
	display: flex;
	justify-content: space-between;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--line);
	font-size: 14.5px;
}
.booking-box__list span { color: var(--muted); }
.booking-box__list strong { color: var(--ink); font-family: var(--font-head); }
.booking-box__cta { width: 100%; }
.booking-box__note { font-size: 12.5px; color: var(--muted); margin: 12px 0 0; text-align: center; }

.archive-note {
	background: var(--brand-soft);
	border-radius: 12px;
	padding: 14px 18px;
	color: var(--brand-dark);
	font-size: 14.5px;
	margin: 0 0 28px;
}

.empty-state { text-align: center; max-width: 520px; margin: 0 auto; padding: 40px 0; }
.empty-state h2 { font-size: 1.6rem; }
.empty-state p { color: var(--muted); margin-bottom: 24px; }

.error-404 { text-align: center; padding: 90px 0; }
.error-404__code {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: clamp(5rem, 3rem + 10vw, 9rem);
	color: var(--brand-soft);
	line-height: 1;
	margin: 0;
}
.error-404__title { font-size: clamp(1.6rem, 1.1rem + 1.8vw, 2.4rem); margin: 0 0 12px; }
.error-404__text { color: var(--muted); max-width: 500px; margin: 0 auto 26px; }
.error-404__search { max-width: 440px; margin: 0 auto 26px; }
.error-404__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Vyhledávací formulář */
.search-form { display: flex; gap: 10px; }
.search-form__field {
	flex: 1;
	font-family: var(--font-body);
	font-size: 15px;
	border: 1.5px solid var(--line);
	background: var(--paper);
	border-radius: var(--radius-pill);
	padding: 13px 20px;
}
.search-form__field:focus { outline: none; border-color: var(--brand); background: #fff; }

/* 16. KOMENTÁŘE A STRÁNKOVÁNÍ ---------------------------------------- */
.comments-area {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 0 80px;
	border-top: 1px solid var(--line);
}
.comments-area__title { font-size: 1.4rem; margin-bottom: 24px; }
.comment-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.comment-list .children { margin: 16px 0 0 32px; }
.comment-body {
	background: var(--paper);
	border-radius: var(--radius);
	padding: 18px 20px;
}
.comment-author { font-family: var(--font-head); font-weight: 600; }
.comment-author .avatar { border-radius: 50%; margin-right: 10px; vertical-align: middle; }
.comment-meta { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.comment-respond {
	background: var(--paper);
	border-radius: var(--radius);
	padding: 26px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	font-family: var(--font-body);
	font-size: 15px;
	border: 1.5px solid var(--line);
	border-radius: 11px;
	padding: 12px 14px;
	background: #fff;
	margin-top: 6px;
}
.comment-form textarea:focus,
.comment-form input:focus { outline: none; border-color: var(--brand); }

.pagination, .comments-pagination {
	margin-top: 48px;
	display: flex;
	justify-content: center;
}
.pagination .nav-links,
.comments-pagination .nav-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.pagination .page-numbers,
.comments-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 10px;
	border: 1.5px solid var(--line);
	font-family: var(--font-head);
	font-weight: 600;
	color: var(--ink);
}
.pagination .page-numbers:hover { border-color: var(--brand); color: var(--brand); }
.pagination .page-numbers.current {
	background: var(--brand);
	border-color: var(--brand);
	color: #fff;
}

/* WordPress zarovnání / podpisky */
.alignwide { width: 100%; }
.aligncenter { margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin: 6px 24px 16px 0; }
.alignright { float: right; margin: 6px 0 16px 24px; }
.wp-caption-text { font-size: 13px; color: var(--muted); text-align: center; }
.sticky .post-card { border-color: var(--brand); }
.bypostauthor > .comment-body { border-left: 3px solid var(--brand); }

/* 17. RESPONZIVITA ---------------------------------------------------- */
@media (max-width: 1080px) {
	.features__grid { grid-template-columns: repeat(2, 1fr); }
	.tours__grid { grid-template-columns: repeat(3, 1fr); }
	.testimonials__grid { grid-template-columns: repeat(2, 1fr); }
	.stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
	.footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 960px) {
	.section { padding: 70px 0; }
	.nav-toggle { display: block; }
	.navbar__cta { display: none; }
	.main-nav {
		position: absolute;
		left: 0; right: 0;
		top: 100%;
		background: #fff;
		border-bottom: 1px solid var(--line);
		box-shadow: var(--shadow-md);
		padding: 14px 24px 22px;
		display: none;
	}
	.site-header.is-nav-open .main-nav { display: block; }
	.main-nav .menu { flex-direction: column; align-items: stretch; gap: 2px; }
	.main-nav .menu a { padding: 13px 14px; }
	.main-nav .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		padding: 0 0 0 14px;
		margin: 0;
	}
	.hero-search__grid { grid-template-columns: 1fr 1fr; }
	.hero-search__submit { grid-column: 1 / -1; height: 54px; }
	.contact__grid { grid-template-columns: 1fr; gap: 36px; }
	.tour-detail { grid-template-columns: 1fr; }
	.booking-box { position: static; }
	.section-head--row { flex-direction: column; align-items: flex-start; gap: 14px; }
	.section-head--row .section-head__lead { max-width: none; }
	.newsletter__inner { flex-direction: column; align-items: flex-start; gap: 26px; padding: 36px 30px; }
	.newsletter__form-wrap { width: 100%; }
}

@media (max-width: 680px) {
	.container { padding: 0 18px; }
	.container.section { padding-left: 18px; padding-right: 18px; }
	.section { padding: 56px 0; }
	.custom-logo, .site-branding img { height: 40px; }
	.navbar__inner { gap: 14px; }
	.topbar__social-label { display: none; }
	.topbar__contact { gap: 16px; font-size: 12.5px; }
	.features__grid,
	.tours__grid,
	.destinations__grid,
	.testimonials__grid,
	.blog__grid,
	.stats__grid { grid-template-columns: 1fr; }
	.stats__grid { gap: 30px; }
	/* Karta výletu na mobilu: víc vzduchu nad hodnocením
	   a kompaktnější patička bez oddělovací linky. */
	.tour-card__body { padding-bottom: 4px; }
	.tour-card__rating { margin-top: 10px; margin-bottom: 0; }
	.tour-card__foot { margin-top: 0; padding: 10px 20px 18px; border-top: 0; }
	.hero__inner { padding: 56px 18px 54px; }
	.hero-search__grid { grid-template-columns: 1fr; }
	.hero-search { padding: 18px; }
	.hero__cta .btn { flex: 1; }
	/* Statistiky v hero sekci: tři údaje vedle sebe na jednom řádku,
	   obsah vycentrovaný vodorovně i svisle. */
	.hero__trust {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		align-items: center;
		gap: 16px 12px;
	}
	.hero__trust li { align-items: center; text-align: center; }
	.hero__trust strong { font-size: 1.3rem; }
	.hero__trust span { font-size: 11.5px; line-height: 1.32; }
	.voyago-form__row { grid-template-columns: 1fr; gap: 0; }
	.voyago-form__foot { flex-direction: column; align-items: stretch; }
	.voyago-form__foot .btn { width: 100%; }
	.contact__form-wrap { padding: 24px; }
	.newsletter__form { flex-direction: column; }
	.newsletter__text { flex-direction: column; align-items: flex-start; gap: 14px; }
	.footer__grid { grid-template-columns: 1fr; gap: 30px; padding: 50px 18px 40px; }
	.footer__bottom-inner { flex-direction: column; align-items: flex-start; }
	.error-404__actions { flex-direction: column; }
	.error-404__actions .btn { width: 100%; }
}

@media (max-width: 460px) {
	.custom-logo, .site-branding img { height: 32px; }
	.navbar__inner { gap: 10px; }
}

/* Omezení animací pro uživatele, kteří je nechtějí */
@media (prefers-reduced-motion: reduce) {
	* { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
