/*
Theme Name: TourVoz
Theme URI: https://tourvoz.com
Author: TourVoz
Author URI: https://tourvoz.com
Description: Frontend theme for the TourVoz travel website SaaS platform.
Version: 0.1.0
Text Domain: tourvoz
*/

/* =========================================================
   TourVoz — Base
========================================================= */

:root {
	--tv-text: #18201f;
	--tv-heading: #101716;
	--tv-muted: #68716f;
	--tv-border: #e5e8e7;
	--tv-soft: #f6f7f5;
	--tv-accent: #b78b52;
	--tv-accent-dark: #946b38;
	--tv-white: #ffffff;
	--tv-radius: 16px;
	--tv-container: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--tv-white);
	color: var(--tv-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.7;
}

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

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

p {
	margin-top: 0;
}


/* =========================================================
   Site Header
========================================================= */

.tourvoz-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid rgba(229, 232, 231, .95);
	box-shadow: 0 1px 0 rgba(16, 23, 22, .02);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.admin-bar .tourvoz-site-header {
	top: 32px;
}

.tourvoz-site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	width: min(calc(100% - 48px), 1380px);
	min-height: 78px;
	margin: 0 auto;
}

.tourvoz-site-brand {
	flex: 0 0 auto;
	min-width: 0;
}

.tourvoz-site-brand-link {
	display: inline-flex;
	align-items: center;
	max-width: 220px;
	color: var(--tv-heading);
	font-size: 21px;
	font-weight: 750;
	line-height: 1;
	text-decoration: none;
}

.tourvoz-site-brand-link:hover,
.tourvoz-site-brand-link:focus-visible {
	color: #1f4d45;
}

.tourvoz-site-logo {
	display: block;
	width: auto;
	height: auto;
	max-width: 180px;
	max-height: 52px;
	object-fit: contain;
}

.tourvoz-site-brand-name {
	display: block;
	line-height: 1.2;
}

.tourvoz-site-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 26px;
	min-width: 0;
}

.tourvoz-site-nav {
	display: block;
}

.tourvoz-site-menu,
.tourvoz-site-submenu,
.tourvoz-mobile-menu,
.tourvoz-mobile-submenu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tourvoz-site-menu {
	display: flex;
	align-items: center;
	gap: 30px;
}

.tourvoz-site-menu-item {
	position: relative;
}

.tourvoz-site-menu-item > a,
.tourvoz-site-menu-row > a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 78px;
	color: #26312e;
	font-size: 14px;
	font-weight: 650;
	line-height: 1;
	text-decoration: none;
	transition: color .2s ease;
}

.tourvoz-site-menu-item > a::after,
.tourvoz-site-menu-row > a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: #1f4d45;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .2s ease;
}

.tourvoz-site-menu-item > a:hover,
.tourvoz-site-menu-item > a:focus-visible,
.tourvoz-site-menu-row > a:hover,
.tourvoz-site-menu-row > a:focus-visible,
.tourvoz-site-menu-item.is-current > a,
.tourvoz-site-menu-item.is-current .tourvoz-site-menu-row > a {
	color: #1f4d45;
}

.tourvoz-site-menu-item > a:hover::after,
.tourvoz-site-menu-item > a:focus-visible::after,
.tourvoz-site-menu-row > a:hover::after,
.tourvoz-site-menu-row > a:focus-visible::after,
.tourvoz-site-menu-item.is-current > a::after,
.tourvoz-site-menu-item.is-current .tourvoz-site-menu-row > a::after {
	transform: scaleX(1);
}

.tourvoz-site-menu-row {
	display: flex;
	align-items: center;
	gap: 5px;
}

.tourvoz-site-submenu-toggle,
.tourvoz-mobile-submenu-toggle,
.tourvoz-site-menu-toggle {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	font: inherit;
	cursor: pointer;
}

.tourvoz-site-submenu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 34px;
	padding: 0;
	color: #66706d;
	background: transparent;
	border-radius: 6px;
}

.tourvoz-site-submenu-toggle svg,
.tourvoz-mobile-submenu-toggle svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform .2s ease;
}

.tourvoz-site-submenu-toggle:hover,
.tourvoz-site-submenu-toggle:focus-visible {
	color: #1f4d45;
	background: #f3f5f3;
}

.tourvoz-site-mega-menu {
	position: absolute;
	top: calc(100% - 6px);
	left: 50%;
	z-index: 60;
	width: min(860px, calc(100vw - 64px));
	padding-top: 12px;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 10px);
	transition:
		opacity .18s ease,
		visibility .18s ease,
		transform .18s ease;
	pointer-events: none;
}

.tourvoz-site-mega-menu-inner {
	overflow: hidden;
	background: #fff;
	border: 1px solid #e3e7e5;
	border-radius: 18px;
	box-shadow: 0 22px 60px rgba(20, 31, 28, .14);
}

.tourvoz-site-mega-menu-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 20px 22px 18px;
	border-bottom: 1px solid #edf0ee;
	background: #fbfcfb;
}

.tourvoz-site-mega-menu-head > div {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.tourvoz-site-mega-menu-eyebrow {
	color: #8c6b45;
	font-size: 10px;
	font-weight: 750;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.tourvoz-site-mega-menu-title {
	color: #17211f;
	font-size: 18px;
	font-weight: 750;
	line-height: 1.25;
}

.tourvoz-site-mega-menu-all {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	flex: 0 0 auto;
	color: #1f4d45;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.tourvoz-site-mega-menu-all span {
	transition: transform .18s ease;
}

.tourvoz-site-mega-menu-all:hover span,
.tourvoz-site-mega-menu-all:focus-visible span {
	transform: translateX(2px);
}

.tourvoz-site-mega-menu-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 6px 10px;
	max-height: 420px;
	margin: 0;
	padding: 16px 18px 18px;
	overflow-y: auto;
	list-style: none;
	scrollbar-width: thin;
	scrollbar-color: #cfd8d4 transparent;
}

.tourvoz-site-mega-menu-grid::-webkit-scrollbar {
	width: 8px;
}

.tourvoz-site-mega-menu-grid::-webkit-scrollbar-thumb {
	background: #cfd8d4;
	border-radius: 999px;
}

.tourvoz-site-mega-menu-grid li {
	min-width: 0;
}

.tourvoz-site-mega-menu-grid a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 42px;
	padding: 9px 11px;
	color: #2d3734;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	text-decoration: none;
	transition:
		color .18s ease,
		background-color .18s ease,
		transform .18s ease;
}

.tourvoz-site-mega-menu-grid a:hover,
.tourvoz-site-mega-menu-grid a:focus-visible {
	color: #173b35;
	background: #f2f6f4;
	transform: translateY(-1px);
}

.tourvoz-site-mega-menu-grid a > span:first-child {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.tourvoz-site-mega-menu-arrow {
	flex: 0 0 auto;
	color: #9aa5a1;
	font-size: 12px;
	opacity: .75;
	transition: transform .18s ease, color .18s ease;
}

.tourvoz-site-mega-menu-grid a:hover .tourvoz-site-mega-menu-arrow,
.tourvoz-site-mega-menu-grid a:focus-visible .tourvoz-site-mega-menu-arrow {
	color: #1f4d45;
	transform: translate(1px, -1px);
}

.tourvoz-site-menu-item.has-submenu:hover > .tourvoz-site-mega-menu,
.tourvoz-site-menu-item.has-submenu:focus-within > .tourvoz-site-mega-menu,
.tourvoz-site-menu-item.has-submenu.is-submenu-open > .tourvoz-site-mega-menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
	pointer-events: auto;
}

.tourvoz-site-menu-item.has-submenu.is-submenu-open .tourvoz-site-submenu-toggle svg {
	transform: rotate(180deg);
}


.tourvoz-site-menu-parent-label {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 78px;
	color: #26312e;
	font-size: 14px;
	font-weight: 650;
	line-height: 1;
	white-space: nowrap;
}

.tourvoz-site-dropdown {
	position: absolute;
	top: calc(100% - 6px);
	left: 50%;
	z-index: 55;
	width: 250px;
	max-height: 360px;
	margin: 0;
	padding: 10px;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #e3e7e5;
	border-radius: 14px;
	box-shadow: 0 18px 46px rgba(20, 31, 28, .12);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 8px);
	transition:
		opacity .18s ease,
		visibility .18s ease,
		transform .18s ease;
	pointer-events: none;
	scrollbar-width: thin;
	scrollbar-color: #cfd8d4 transparent;
}

.tourvoz-site-dropdown li + li {
	margin-top: 2px;
}

.tourvoz-site-dropdown a {
	display: block;
	padding: 10px 12px;
	color: #2d3734;
	border-radius: 9px;
	font-size: 14px;
	font-weight: 550;
	line-height: 1.4;
	text-decoration: none;
	transition: color .18s ease, background-color .18s ease;
}

.tourvoz-site-dropdown a:hover,
.tourvoz-site-dropdown a:focus-visible {
	color: #173b35;
	background: #f2f6f4;
}

.tourvoz-site-menu-item.has-submenu:hover > .tourvoz-site-dropdown,
.tourvoz-site-menu-item.has-submenu:focus-within > .tourvoz-site-dropdown,
.tourvoz-site-menu-item.has-submenu.is-submenu-open > .tourvoz-site-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
	pointer-events: auto;
}

.tourvoz-site-header-cta,
.tourvoz-mobile-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	color: #fff;
	background: #1f4d45;
	border: 1px solid #1f4d45;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.tourvoz-site-header-cta:hover,
.tourvoz-site-header-cta:focus-visible,
.tourvoz-mobile-cta:hover,
.tourvoz-mobile-cta:focus-visible {
	color: #fff;
	background: #173b35;
	border-color: #173b35;
	transform: translateY(-1px);
}

.tourvoz-site-menu-toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 1px solid #dfe4e1;
	border-radius: 10px;
}

.tourvoz-site-menu-toggle span {
	display: block;
	width: 18px;
	height: 1.5px;
	background: #1f2a27;
	border-radius: 999px;
	transition: transform .2s ease, opacity .2s ease;
}

.tourvoz-site-header.is-menu-open .tourvoz-site-menu-toggle span:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}

.tourvoz-site-header.is-menu-open .tourvoz-site-menu-toggle span:nth-child(2) {
	opacity: 0;
}

.tourvoz-site-header.is-menu-open .tourvoz-site-menu-toggle span:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

.tourvoz-mobile-navigation {
	display: none;
	background: #fff;
	border-top: 1px solid #eef0ef;
}

.tourvoz-mobile-navigation-inner {
	width: min(calc(100% - 32px), 720px);
	margin: 0 auto;
	padding: 18px 0 24px;
}

.tourvoz-mobile-menu-item {
	border-bottom: 1px solid #edf0ee;
}

.tourvoz-mobile-menu-item > a,
.tourvoz-mobile-menu-row > a,
.tourvoz-mobile-menu-parent-label {
	display: flex;
	align-items: center;
	min-height: 54px;
	color: #26312e;
	font-size: 16px;
	font-weight: 650;
	line-height: 1.25;
	text-decoration: none;
}

.tourvoz-mobile-menu-item.is-current > a,
.tourvoz-mobile-menu-item.is-current .tourvoz-mobile-menu-row > a {
	color: #1f4d45;
}

.tourvoz-mobile-menu-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.tourvoz-mobile-menu-row > a,
.tourvoz-mobile-menu-parent-label {
	flex: 1 1 auto;
}

.tourvoz-mobile-menu-parent-label {
	display: flex;
	align-items: center;
	min-height: 54px;
	color: #26312e;
	font-size: 16px;
	font-weight: 650;
	line-height: 1.25;
}

.tourvoz-mobile-submenu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	color: #52605c;
	background: #f4f6f4;
	border-radius: 9px;
}

.tourvoz-mobile-submenu-toggle.is-open svg {
	transform: rotate(180deg);
}

.tourvoz-mobile-submenu {
	display: none;
	padding: 0 0 14px 14px;
}

.tourvoz-mobile-submenu.is-open {
	display: block;
}

.tourvoz-mobile-submenu a {
	display: block;
	padding: 9px 12px;
	color: #66706d;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 550;
	line-height: 1.4;
}

.tourvoz-mobile-submenu a:hover,
.tourvoz-mobile-submenu a:focus-visible {
	color: #1f4d45;
	background: #f4f6f4;
}

.tourvoz-mobile-cta {
	width: 100%;
	min-height: 50px;
	margin-top: 20px;
	border-radius: 10px;
}

@media (max-width: 1240px) {
	.tourvoz-site-mega-menu {
		width: min(760px, calc(100vw - 48px));
	}

	.tourvoz-site-mega-menu-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1080px) {
	.tourvoz-site-menu {
		gap: 22px;
	}

	.tourvoz-site-header-actions {
		gap: 18px;
	}
}

@media (max-width: 960px) {
	.tourvoz-site-header-inner {
		width: min(calc(100% - 32px), 1380px);
		min-height: 70px;
	}

	.tourvoz-site-nav,
	.tourvoz-site-header-cta {
		display: none;
	}

	.tourvoz-site-menu-toggle {
		display: flex;
	}

	.tourvoz-site-header.is-menu-open .tourvoz-mobile-navigation {
		display: block;
	}

	body.tourvoz-mobile-menu-open {
		overflow: hidden;
	}
}

@media (max-width: 782px) {
	.admin-bar .tourvoz-site-header {
		top: 46px;
	}
}

@media (max-width: 480px) {
	.tourvoz-site-header-inner {
		width: calc(100% - 24px);
		min-height: 66px;
	}

	.tourvoz-site-logo {
		max-width: 150px;
		max-height: 44px;
	}

	.tourvoz-site-brand-link {
		max-width: 170px;
		font-size: 19px;
	}
}


/* =========================================================
   Tour Layout
========================================================= */

.tourvoz-tour {
	width: 100%;
	overflow: hidden;
}

.tourvoz-tour-container {
	width: min(calc(100% - 48px), var(--tv-container));
	margin: 0 auto;
}


/* =========================================================
   Hero
========================================================= */

.tourvoz-tour-hero {
	padding-bottom: 0;
}

.tourvoz-tour-hero-image {
	width: min(calc(100% - 48px), 1380px);
	height: clamp(420px, 55vw, 680px);
	margin: 0 auto;
	overflow: hidden;
	border-radius: 22px;
	background: var(--tv-soft);
}

.tourvoz-tour-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tourvoz-tour-hero .tourvoz-tour-container {
	padding-top: 48px;
	padding-bottom: 30px;
}

.tourvoz-tour-destinations {
	margin-bottom: 12px;
	color: var(--tv-accent-dark);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tourvoz-tour-title {
	max-width: 900px;
	margin: 0;
	color: var(--tv-heading);
	font-size: clamp(38px, 5vw, 64px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.tourvoz-tour-themes {
	margin-top: 18px;
	color: var(--tv-muted);
	font-size: 17px;
}


/* =========================================================
   Quick Information
========================================================= */

.tourvoz-tour-quick-info {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 8px 0 72px;
	border-top: 1px solid var(--tv-border);
	border-bottom: 1px solid var(--tv-border);
}

.tourvoz-info-item {
	position: relative;
	padding: 27px 28px;
}

.tourvoz-info-item:first-child {
	padding-left: 0;
}

.tourvoz-info-item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 25%;
	right: 0;
	width: 1px;
	height: 50%;
	background: var(--tv-border);
}

.tourvoz-info-item span {
	display: block;
	margin-bottom: 4px;
	color: var(--tv-muted);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.tourvoz-info-item strong {
	display: block;
	color: var(--tv-heading);
	font-size: 18px;
	font-weight: 650;
	line-height: 1.4;
}


/* =========================================================
   General Sections
========================================================= */

.tourvoz-tour-section {
	max-width: 960px;
	margin: 0 0 82px;
}

.tourvoz-tour-section > h2 {
	margin: 0 0 28px;
	color: var(--tv-heading);
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.tourvoz-tour-copy {
	max-width: 820px;
	color: #39413f;
	font-size: 18px;
	line-height: 1.85;
}

.tourvoz-tour-copy p:last-child {
	margin-bottom: 0;
}


/* =========================================================
   Highlights
========================================================= */

.tourvoz-tour-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tourvoz-highlights {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 22px;
}

.tourvoz-highlights li {
	position: relative;
	padding: 18px 20px 18px 48px;
	background: var(--tv-soft);
	border-radius: 12px;
	font-weight: 500;
}

.tourvoz-highlights li::before {
	content: "✓";
	position: absolute;
	top: 17px;
	left: 20px;
	color: var(--tv-accent-dark);
	font-weight: 800;
}


/* =========================================================
   Itinerary
========================================================= */

.tourvoz-itinerary-section {
	max-width: none;
}

.tourvoz-itinerary {
	padding: 18px 36px;
	background: #f7f8fc;
	border-radius: 16px;
}

.tourvoz-itinerary-item {
	margin: 0;
	border: 0;
	border-bottom: 1px solid #dfe3ec;
	background: transparent;
}

.tourvoz-itinerary-item:last-child {
	border-bottom: 0;
}


/* Summary */

.tourvoz-itinerary-summary {
	display: grid;
	grid-template-columns: 34px 1fr 28px;
	align-items: center;
	gap: 18px;
	min-height: 88px;
	padding: 20px 0;
	cursor: pointer;
	list-style: none;
}

.tourvoz-itinerary-summary::-webkit-details-marker {
	display: none;
}

.tourvoz-itinerary-summary::marker {
	display: none;
	content: "";
}


/* Timeline Marker */

.tourvoz-itinerary-marker {
	position: relative;
	display: block;
	width: 22px;
	height: 22px;
	border: 1.8px solid #263532;
	border-radius: 50%;
}

.tourvoz-itinerary-item[open] .tourvoz-itinerary-marker::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	background: #355f57;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}


/* Title */

.tourvoz-itinerary-summary-title {
	color: #20282d;
	font-size: 20px;
	font-weight: 650;
	line-height: 1.4;
}


/* Plus / Minus */

.tourvoz-itinerary-icon {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
}

.tourvoz-itinerary-icon::before,
.tourvoz-itinerary-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: #66706f;
	transform: translate(-50%, -50%);
}

.tourvoz-itinerary-icon::before {
	width: 14px;
	height: 1.5px;
}

.tourvoz-itinerary-icon::after {
	width: 1.5px;
	height: 14px;
	transition: opacity 0.2s ease;
}

.tourvoz-itinerary-item[open] .tourvoz-itinerary-icon::after {
	opacity: 0;
}


/* Expanded Content */

.tourvoz-itinerary-content {
	padding:
		0
		46px
		30px
		52px;
}

.tourvoz-itinerary-description {
	max-width: 820px;
	color: #41494f;
	font-size: 16px;
	line-height: 1.8;
}

.tourvoz-itinerary-description p:last-child {
	margin-bottom: 0;
}


/* Image */

.tourvoz-itinerary-image {
	width: 100%;
	max-width: 320px;
	margin-top: 22px;
	overflow: hidden;
	border-radius: 10px;
	background: #e9ecef;
}

.tourvoz-itinerary-image img {
	display: block;
	width: 100%;
	height: 190px;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.tourvoz-itinerary-image:hover img {
	transform: scale(1.025);
}

/* =========================================================
   Itinerary Gallery
========================================================= */

.tourvoz-itinerary-gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-top: 22px;
}

.tourvoz-itinerary-gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	background: #eef0f2;
	aspect-ratio: 4 / 3;
	cursor: zoom-in;
}

.tourvoz-itinerary-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.tourvoz-itinerary-gallery-item:hover img {
	transform: scale(1.035);
}


/* =========================================================
   Lightbox
========================================================= */

.tourvoz-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 40px 90px;
	background: rgba(0, 0, 0, 0.88);
}

.tourvoz-lightbox.is-open {
	display: flex;
}

.tourvoz-lightbox-stage {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	max-height: 100%;
}

.tourvoz-lightbox-image {
	display: block;
	max-width: min(88vw, 1400px);
	max-height: 86vh;
	width: auto;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.tourvoz-lightbox-close {
	position: absolute;
	top: 20px;
	right: 26px;
	z-index: 3;
	width: 46px;
	height: 46px;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 38px;
	line-height: 1;
	cursor: pointer;
}

.tourvoz-lightbox-nav {
	position: absolute;
	top: 50%;
	z-index: 3;
	width: 54px;
	height: 54px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 42px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition:
		background 0.2s ease,
		transform 0.2s ease;
}

.tourvoz-lightbox-nav:hover {
	background: rgba(255, 255, 255, 0.22);
}

.tourvoz-lightbox-prev {
	left: 24px;
}

.tourvoz-lightbox-next {
	right: 24px;
}

.tourvoz-lightbox-counter {
	position: absolute;
	left: 50%;
	bottom: -34px;
	padding: 5px 10px;
	border-radius: 20px;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	font-size: 13px;
	line-height: 1;
	transform: translateX(-50%);
}

@media (max-width: 700px) {

	.tourvoz-lightbox {
		padding: 22px 48px;
	}

	.tourvoz-lightbox-image {
		max-width: 92vw;
		max-height: 82vh;
	}

	.tourvoz-lightbox-nav {
		width: 42px;
		height: 42px;
		font-size: 32px;
	}

	.tourvoz-lightbox-prev {
		left: 8px;
	}

	.tourvoz-lightbox-next {
		right: 8px;
	}

	.tourvoz-lightbox-close {
		top: 10px;
		right: 12px;
	}
}


/* Meals / Accommodation */

.tourvoz-itinerary-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 32px;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid #e1e4ea;
}

.tourvoz-itinerary-meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #3d4746;
	font-size: 15px;
}

.tourvoz-itinerary-meta-icon {
	font-size: 17px;
	line-height: 1;
}


/* Mobile */

@media (max-width: 700px) {

	.tourvoz-itinerary {
		padding: 8px 18px;
		border-radius: 12px;
	}

	.tourvoz-itinerary-summary {
		grid-template-columns: 26px 1fr 22px;
		gap: 12px;
		min-height: 72px;
		padding: 16px 0;
	}

	.tourvoz-itinerary-marker {
		width: 19px;
		height: 19px;
	}

	.tourvoz-itinerary-summary-title {
		font-size: 17px;
	}

	.tourvoz-itinerary-content {
		padding:
			0
			0
			24px
			38px;
	}

	.tourvoz-itinerary-image {
		max-width: 100%;
	}

	.tourvoz-itinerary-image img {
		height: 180px;
	}

	.tourvoz-itinerary-meta {
		flex-direction: column;
		gap: 10px;
	}

}


/* =========================================================
   Included / Excluded
========================================================= */

.tourvoz-inclusions-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.tourvoz-inclusions-grid > div {
	padding: 28px;
	border: 1px solid var(--tv-border);
	border-radius: var(--tv-radius);
}

.tourvoz-inclusions-grid > div:first-child {
	background: #f8faf7;
}

.tourvoz-inclusions-grid > div:last-child {
	background: #faf9f8;
}

.tourvoz-inclusions-grid h3 {
	margin: 0 0 18px;
	color: var(--tv-heading);
	font-size: 19px;
}

.tourvoz-inclusions-grid li {
	padding: 8px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.055);
}

.tourvoz-inclusions-grid li:last-child {
	border-bottom: 0;
}


/* =========================================================
   Tour Information
========================================================= */

.tourvoz-tour-information {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border: 1px solid var(--tv-border);
	border-radius: var(--tv-radius);
	overflow: hidden;
}

.tourvoz-tour-information > div {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 24px 26px;
	border-bottom: 1px solid var(--tv-border);
}

.tourvoz-tour-information > div:nth-child(odd) {
	border-right: 1px solid var(--tv-border);
}

.tourvoz-tour-information > div:last-child,
.tourvoz-tour-information > div:nth-last-child(2):nth-child(odd) {
	border-bottom: 0;
}

.tourvoz-tour-information strong {
	color: var(--tv-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.tourvoz-tour-information span {
	color: var(--tv-heading);
	font-size: 16px;
	font-weight: 550;
}


/* =========================================================
   Temporary Footer
========================================================= */

body > footer {
	margin-top: 90px;
	padding: 30px 28px;
	border-top: 1px solid var(--tv-border);
	color: var(--tv-muted);
	font-size: 14px;
}

body > footer a {
	text-decoration: underline;
}


/* =========================================================
   Responsive
========================================================= */

@media (max-width: 900px) {

	.tourvoz-tour-container {
		width: min(calc(100% - 36px), var(--tv-container));
	}

	.tourvoz-tour-hero-image {
		width: calc(100% - 36px);
		height: 460px;
		border-radius: 16px;
	}

	.tourvoz-tour-quick-info {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tourvoz-info-item {
		padding: 22px 18px;
	}

	.tourvoz-info-item:first-child {
		padding-left: 18px;
	}

	.tourvoz-info-item:nth-child(2)::after {
		display: none;
	}

	.tourvoz-info-item:nth-child(-n+2) {
		border-bottom: 1px solid var(--tv-border);
	}

	.tourvoz-highlights,
	.tourvoz-inclusions-grid {
		grid-template-columns: 1fr;
	}
}


@media (max-width: 600px) {

	body {
		font-size: 15px;
	}

	body > header {
		padding: 18px;
	}

	.tourvoz-tour-container {
		width: calc(100% - 32px);
	}

	.tourvoz-tour-hero-image {
		width: calc(100% - 32px);
		height: 330px;
		border-radius: 14px;
	}

	.tourvoz-tour-hero .tourvoz-tour-container {
		padding-top: 30px;
	}

	.tourvoz-tour-title {
		font-size: 36px;
	}

	.tourvoz-tour-themes {
		font-size: 15px;
	}

	.tourvoz-tour-quick-info {
		margin-bottom: 54px;
	}

	.tourvoz-info-item {
		padding: 18px 12px;
	}

	.tourvoz-info-item:first-child {
		padding-left: 12px;
	}

	.tourvoz-info-item strong {
		font-size: 15px;
	}

	.tourvoz-tour-section {
		margin-bottom: 58px;
	}

	.tourvoz-tour-section > h2 {
		margin-bottom: 20px;
		font-size: 28px;
	}

	.tourvoz-tour-copy {
		font-size: 16px;
	}

	.tourvoz-highlights {
		grid-template-columns: 1fr;
	}

	.tourvoz-itinerary-item {
		padding: 20px;
	}

	.tourvoz-itinerary-item h3 {
		font-size: 19px;
	}

	.tourvoz-itinerary-image {
		margin-left: -20px;
		margin-right: -20px;
		border-radius: 0;
	}

	.tourvoz-tour-information {
		grid-template-columns: 1fr;
	}

	.tourvoz-tour-information > div,
	.tourvoz-tour-information > div:nth-child(odd) {
		border-right: 0;
		border-bottom: 1px solid var(--tv-border);
	}

	.tourvoz-tour-information > div:last-child {
		border-bottom: 0;
	}
}

/* =========================================================
   FAQ
========================================================= */

.tourvoz-faq {
	border-top: 1px solid var(--tv-border);
}

.tourvoz-faq-item {
	border-bottom: 1px solid var(--tv-border);
}

/* Question row */
.tourvoz-faq-summary {
	display: grid;
	grid-template-columns: 1fr 26px;
	align-items: center;
	gap: 20px;
	padding: 22px 0;
	cursor: pointer;
	list-style: none !important;
}

/* Remove native details marker */
.tourvoz-faq-summary::-webkit-details-marker {
	display: none !important;
}

.tourvoz-faq-summary::marker {
	content: "" !important;
	font-size: 0;
}

/* Question */
.tourvoz-faq-question {
	color: var(--tv-heading);
	font-size: 17px;
	font-weight: 650;
	line-height: 1.5;
	letter-spacing: -0.01em;
}

/* Custom +/- icon */
.tourvoz-faq-icon {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
}

.tourvoz-faq-icon::before,
.tourvoz-faq-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: #65706d;
	transform: translate(-50%, -50%);
}

.tourvoz-faq-icon::before {
	width: 14px;
	height: 1.5px;
}

.tourvoz-faq-icon::after {
	width: 1.5px;
	height: 14px;
	transition: opacity 0.2s ease;
}

/* Open = minus */
.tourvoz-faq-item[open] .tourvoz-faq-icon::after {
	opacity: 0;
}

/* Answer */
.tourvoz-faq-answer {
	max-width: 820px;
	padding: 0 46px 24px 0;
	color: #5f6866;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.75;
}

.tourvoz-faq-answer p {
	margin-top: 0;
	margin-bottom: 12px;
}

.tourvoz-faq-answer p:last-child {
	margin-bottom: 0;
}

/* Mobile */
@media (max-width: 767px) {

	.tourvoz-faq-summary {
		grid-template-columns: 1fr 22px;
		gap: 14px;
		padding: 18px 0;
	}

	.tourvoz-faq-question {
		font-size: 16px;
	}

	.tourvoz-faq-answer {
		padding: 0 30px 20px 0;
		font-size: 15px;
	}
}

/* =========================================================
   TOURVOZ — INQUIRY CTA
========================================================= */

.tourvoz-tour-cta {
	margin-top: 88px;
	margin-bottom: 72px;
	padding: 0;
}

.tourvoz-tour-cta-inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 56px;

	padding: 48px 52px;

	background: #f4f6f5;
	border: 1px solid var(--tv-border);
	border-radius: 16px;
}

.tourvoz-tour-cta-content {
	max-width: 720px;
}

.tourvoz-tour-cta-content h2 {
	margin: 0 0 14px;
	color: var(--tv-heading);
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.025em;
}

.tourvoz-tour-cta-content p {
	margin: 0;
	color: #59615f;
	font-size: 16px;
	line-height: 1.75;
}

.tourvoz-tour-cta-action {
	flex-shrink: 0;
}

.tourvoz-tour-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 52px;
	padding: 0 28px;

	background: var(--tv-heading);
	color: #fff !important;

	border: 1px solid var(--tv-heading);
	border-radius: 8px;

	font-size: 15px;
	font-weight: 650;
	line-height: 1;
	text-decoration: none !important;

	transition:
		background-color 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

.tourvoz-tour-cta-button::after {
	content: "→";
	margin-left: 10px;
	font-size: 17px;
	transition: transform 0.2s ease;
}

.tourvoz-tour-cta-button:hover {
	background: transparent;
	color: var(--tv-heading) !important;
}

.tourvoz-tour-cta-button:hover::after {
	transform: translateX(3px);
}


/* Mobile */
@media (max-width: 768px) {

	.tourvoz-tour-cta {
		margin-top: 64px;
		margin-bottom: 52px;
	}

	.tourvoz-tour-cta-inner {
		grid-template-columns: 1fr;
		gap: 28px;

		padding: 34px 28px;
		border-radius: 14px;
	}

	.tourvoz-tour-cta-content h2 {
		font-size: 28px;
	}

	.tourvoz-tour-cta-action {
		width: 100%;
	}

	.tourvoz-tour-cta-button {
		width: 100%;
	}

}

/* =========================================================
   TourVoz Inquiry Form
   ========================================================= */

#tourvoz-inquiry {
	scroll-margin-top: 40px;
}

.tourvoz-inquiry-form-wrap {
	--tv-form-primary: #1F4D45;
	--tv-form-primary-hover: #173B35;
	--tv-form-accent: #B98545;
	--tv-form-heading: #15201D;
	--tv-form-text: #3F4946;
	--tv-form-muted: #6F7875;
	--tv-form-border: #DDE2DF;
	--tv-form-bg: #F7F8F6;

	max-width: 100%;
	margin-top: 30px;
	padding: 36px;
	background: var(--tv-form-bg);
	border: 1px solid var(--tv-form-border);
	border-radius: 16px;
}


/* Success message */

.tourvoz-inquiry-success {
	margin-bottom: 24px;
	padding: 14px 18px;
	color: var(--tv-form-primary);
	background: #EDF4F1;
	border: 1px solid #D2E2DC;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
}


/* Grid */

.tourvoz-inquiry-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px 24px;
}

.tourvoz-inquiry-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.tourvoz-inquiry-field.full {
	grid-column: 1 / -1;
}


/* Labels */

.tourvoz-inquiry-field > label:not(.tourvoz-inquiry-choice) {
	color: var(--tv-form-heading);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.4;
}


/* Inputs */

.tourvoz-inquiry-field input[type="text"],
.tourvoz-inquiry-field input[type="email"],
.tourvoz-inquiry-field input[type="number"],
.tourvoz-inquiry-field input[type="date"],
.tourvoz-inquiry-field select,
.tourvoz-inquiry-field textarea {
	box-sizing: border-box;
	width: 100%;
	min-height: 50px;
	margin: 0;
	padding: 12px 14px;

	color: var(--tv-form-heading);
	background: #FFFFFF;

	border: 1px solid var(--tv-form-border);
	border-radius: 9px;

	font-family: inherit;
	font-size: 15px;
	line-height: 1.5;

	box-shadow: none;
	outline: none;

	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		background-color 0.2s ease;
}

.tourvoz-inquiry-field textarea {
	min-height: 150px;
	resize: vertical;
}

.tourvoz-inquiry-field input::placeholder,
.tourvoz-inquiry-field textarea::placeholder {
	color: #929A97;
	opacity: 1;
}


/* Select */

.tourvoz-inquiry-field select {
	cursor: pointer;
}


/* Focus */

.tourvoz-inquiry-field input:focus,
.tourvoz-inquiry-field select:focus,
.tourvoz-inquiry-field textarea:focus {
	border-color: var(--tv-form-primary);
	background: #FFFFFF;
	box-shadow: 0 0 0 3px rgba(31, 77, 69, 0.10);
}


/* Readonly Interested Tour */

.tourvoz-inquiry-field input[readonly] {
	color: #59635F;
	background: #EEF1EF;
	cursor: default;
}


/* Flexible date */

.tourvoz-inquiry-choice {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	align-self: flex-start;
	gap: 8px;

	margin-top: 2px;

	color: var(--tv-form-muted);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;

	cursor: pointer;
}

.tourvoz-inquiry-choice input[type="checkbox"] {
	width: 16px;
	height: 16px;
	margin: 0;

	accent-color: var(--tv-form-primary);
	cursor: pointer;
}


/* Submit */

.tourvoz-inquiry-actions {
	margin-top: 26px;
}

.tourvoz-inquiry-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 52px;
	padding: 0 28px;

	color: #FFFFFF;
	background: var(--tv-form-primary);

	border: 1px solid var(--tv-form-primary);
	border-radius: 9px;

	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;

	cursor: pointer;

	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.tourvoz-inquiry-submit:hover {
	color: #FFFFFF;
	background: var(--tv-form-primary-hover);
	border-color: var(--tv-form-primary-hover);
	transform: translateY(-1px);
}

.tourvoz-inquiry-submit:focus-visible {
	outline: 3px solid rgba(31, 77, 69, 0.18);
	outline-offset: 3px;
}


/* =========================================================
   Tour CTA color update
   ========================================================= */

.tourvoz-tour-cta a,
.tourvoz-cta-primary,
.tourvoz-tour-cta-primary {
	color: #FFFFFF;
	background: #1F4D45;
	border-color: #1F4D45;
}

.tourvoz-tour-cta a:hover,
.tourvoz-cta-primary:hover,
.tourvoz-tour-cta-primary:hover {
	color: #FFFFFF;
	background: #173B35;
	border-color: #173B35;
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

	.tourvoz-inquiry-form-wrap {
		margin-top: 22px;
		padding: 24px 20px;
		border-radius: 14px;
	}

	.tourvoz-inquiry-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.tourvoz-inquiry-field.full {
		grid-column: auto;
	}

	.tourvoz-inquiry-actions {
		margin-top: 22px;
	}

	.tourvoz-inquiry-submit {
		width: 100%;
	}

}

/* =========================================================
   Tour CTA — WhatsApp secondary action
========================================================= */

.tourvoz-tour-cta-action {
	display: flex;
	align-items: center;
	gap: 12px;
}


/* Primary inquiry button */
.tourvoz-tour-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 52px;
	padding: 0 28px;

	background: #1F4D45 !important;
	color: #FFFFFF !important;

	border: 1px solid #1F4D45 !important;
	border-radius: 9px;

	font-size: 15px;
	font-weight: 700;
	text-decoration: none !important;

	white-space: nowrap;
}

.tourvoz-tour-cta-button:hover {
	background: #173B35 !important;
	border-color: #173B35 !important;
	color: #FFFFFF !important;
}


/* WhatsApp secondary button */
.tourvoz-tour-whatsapp-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 52px;
	padding: 0 22px;

	background: transparent !important;
	color: #1F4D45 !important;

	border: 1px solid #BFCBC7 !important;
	border-radius: 9px;

	font-size: 15px;
	font-weight: 600;
	text-decoration: none !important;

	white-space: nowrap;

	transition:
		background-color 0.2s ease,
		border-color 0.2s ease;
}

.tourvoz-tour-whatsapp-link:hover {
	background: #EEF4F1 !important;
	border-color: #1F4D45 !important;
	color: #173B35 !important;
}


/* Mobile */
@media (max-width: 767px) {

	.tourvoz-tour-cta-action {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.tourvoz-tour-cta-button,
	.tourvoz-tour-whatsapp-link {
		width: 100%;
	}
}

/* =========================================================
   Site Footer
========================================================= */

.tourvoz-site-footer {
	margin-top: 88px;
	padding: 36px 0;
	background: #f7f8f6;
	border-top: 1px solid #e3e7e4;
}

.tourvoz-site-footer-inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;

	width: min(100% - 40px, 1380px);
	margin: 0 auto;
}

.tourvoz-site-footer-brand-link {
	color: #15201d;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
}

.tourvoz-site-footer-brand-link:hover {
	color: #1f4d45;
}

.tourvoz-site-footer-copy {
	margin: 10px 0 0;
	color: #6d7673;
	font-size: 14px;
	line-height: 1.6;
}

.tourvoz-site-footer-meta p {
	margin: 0;
	color: #7b8380;
	font-size: 13px;
	line-height: 1.5;
	text-align: right;
}

@media (max-width: 767px) {

	.tourvoz-site-footer {
		margin-top: 64px;
		padding: 28px 0;
	}

	.tourvoz-site-footer-inner {
		flex-direction: column;
		align-items: flex-start;
		width: min(100% - 28px, 1380px);
	}

	.tourvoz-site-footer-meta p {
		text-align: left;
	}
}

/* =========================================================
   Destination Hub
========================================================= */

.tourvoz-destination-hub {
	width: 100%;
	overflow: hidden;
}

.tourvoz-destination-container {
	width: min(calc(100% - 48px), var(--tv-container));
	margin: 0 auto;
}

.tourvoz-destination-section {
	padding: 88px 0;
}

.tourvoz-destination-section-label,
.tourvoz-destination-eyebrow {
	margin: 0 0 12px;
	color: var(--tv-accent-dark);
	font-size: 13px;
	font-weight: 750;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.tourvoz-destination-section-heading {
	max-width: 760px;
	margin-bottom: 38px;
}

.tourvoz-destination-section-heading h2,
.tourvoz-destination-copy h2,
.tourvoz-destination-cta h2 {
	margin: 0;
	color: var(--tv-heading);
	font-size: clamp(30px, 3.4vw, 44px);
	font-weight: 700;
	line-height: 1.14;
	letter-spacing: -.03em;
}

.tourvoz-destination-section-heading > p:last-child {
	margin: 14px 0 0;
	color: var(--tv-muted);
	font-size: 17px;
}

/* Hero */
.tourvoz-destination-hero {
	position: relative;
	width: min(calc(100% - 48px), 1380px);
	height: clamp(500px, 58vw, 720px);
	margin: 0 auto;
	overflow: hidden;
	border-radius: 22px;
	background: #27312f;
}

.tourvoz-destination-hero-media,
.tourvoz-destination-hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.tourvoz-destination-hero-image { object-fit: cover; }

.tourvoz-destination-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10,16,15,.06) 25%, rgba(10,16,15,.72) 100%);
}

.tourvoz-destination-hero-content {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	padding-bottom: 58px;
	color: #fff;
}

.tourvoz-destination-hero .tourvoz-destination-eyebrow { color: rgba(255,255,255,.8); }

.tourvoz-destination-hero h1 {
	max-width: 900px;
	margin: 0;
	color: #fff;
	font-size: clamp(44px, 6vw, 76px);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -.045em;
}

.tourvoz-destination-hero-intro {
	max-width: 780px;
	margin: 20px 0 0;
	color: rgba(255,255,255,.9);
	font-size: 18px;
	line-height: 1.75;
}

/* About */
.tourvoz-destination-about-section { padding-bottom: 18px; }

.tourvoz-destination-about-grid {
	display: grid;
	grid-template-columns: minmax(180px,.38fr) minmax(0,1fr);
	gap: 80px;
	align-items: start;
}

.tourvoz-destination-about-title h2 {
	margin: 0;
	font-size: clamp(30px,3vw,42px);
	line-height: 1.15;
	letter-spacing: -.03em;
}

.tourvoz-destination-description {
	max-width: 790px;
	color: #3f4846;
	font-size: 18px;
	line-height: 1.9;
}
.tourvoz-destination-description p:last-child { margin-bottom: 0; }

/* Why visit + facts */
.tourvoz-destination-intro-grid {
	display: grid;
	grid-template-columns: minmax(0,1.45fr) minmax(280px,.55fr);
	gap: 76px;
	align-items: start;
}

.tourvoz-destination-richtext {
	max-width: 760px;
	margin-top: 24px;
	color: #414a48;
	font-size: 17px;
	line-height: 1.85;
}

.tourvoz-destination-facts {
	display: grid;
	gap: 1px;
	overflow: hidden;
	border: 1px solid var(--tv-border);
	border-radius: var(--tv-radius);
	background: var(--tv-border);
}

.tourvoz-destination-fact { padding: 25px 26px; background: #fff; }
.tourvoz-destination-fact-label {
	display: block;
	margin-bottom: 6px;
	color: var(--tv-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.tourvoz-destination-fact strong { color: var(--tv-heading); font-size: 17px; line-height: 1.45; }

/* Highlights */
.tourvoz-destination-highlights-section {
	background: var(--tv-soft);
}

.tourvoz-destination-highlights-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.tourvoz-destination-highlight-card {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 58px;
	padding: 13px 22px;
	border: 1px solid #e5e8e4;
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 1px 2px rgba(20, 32, 29, 0.02);
	transition:
		transform 0.22s ease,
		box-shadow 0.22s ease,
		background-color 0.22s ease,
		border-color 0.22s ease;
}

.tourvoz-destination-highlight-card:nth-child(3n + 1) {
	background: #f8f3ea;
}

.tourvoz-destination-highlight-card:nth-child(3n + 2) {
	background: #eef4f1;
}

.tourvoz-destination-highlight-card:nth-child(3n + 3) {
	background: #f4f1ec;
}

.tourvoz-destination-highlight-card:hover {
	transform: translateY(-3px);
	background: #ffffff;
	border-color: #d7ddd9;
	box-shadow: 0 8px 22px rgba(20, 32, 29, 0.08);
}

.tourvoz-destination-highlight-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	margin: 0;
	color: #9a6b32;
	font-size: 11px;
	font-weight: 750;
	line-height: 1;
	letter-spacing: .06em;
}

.tourvoz-destination-highlight-card h3 {
	margin: 0;
	color: #15201d;
	font-size: 15px;
	font-weight: 650;
	line-height: 1.3;
}

/* Tour cards */
.tourvoz-destination-tour-grid {
	display: grid;
	grid-template-columns: repeat(3,minmax(0,1fr));
	gap: 28px;
}
.tourvoz-destination-tour-card {
	overflow: hidden;
	border: 1px solid var(--tv-border);
	border-radius: 15px;
	background: #fff;
}
.tourvoz-destination-tour-image-link {
	display: block;
	aspect-ratio: 4/3;
	overflow: hidden;
	background: var(--tv-soft);
}
.tourvoz-destination-tour-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}
.tourvoz-destination-tour-card:hover .tourvoz-destination-tour-image { transform: scale(1.025); }
.tourvoz-destination-tour-card-body { padding: 22px 22px 24px; }
.tourvoz-destination-tour-card h3 {
	margin: 0 0 18px;
	font-size: 20px;
	line-height: 1.35;
}
.tourvoz-destination-tour-card h3 a:hover { color: #1f4d45; }
.tourvoz-destination-tour-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #1f4d45;
	font-size: 14px;
	font-weight: 700;
}

/* FAQ */
.tourvoz-destination-faq-section { background: #fafbf9; }
.tourvoz-destination-faq-wrap { max-width: 920px; }
.tourvoz-destination-faq-list { border-top: 1px solid var(--tv-border); }
.tourvoz-destination-faq-item { border-bottom: 1px solid var(--tv-border); }
.tourvoz-destination-faq-item summary {
	position: relative;
	padding: 23px 44px 23px 0;
	color: var(--tv-heading);
	font-size: 17px;
	font-weight: 650;
	line-height: 1.5;
	cursor: pointer;
	list-style: none;
}
.tourvoz-destination-faq-item summary::-webkit-details-marker { display: none; }
.tourvoz-destination-faq-item summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 4px;
	color: var(--tv-muted);
	font-size: 24px;
	font-weight: 400;
	transform: translateY(-50%);
}
.tourvoz-destination-faq-item[open] summary::after { content: "−"; }
.tourvoz-destination-faq-answer {
	max-width: 780px;
	padding: 0 44px 24px 0;
	color: #5d6664;
	font-size: 15px;
	line-height: 1.8;
}
.tourvoz-destination-faq-answer p:last-child { margin-bottom: 0; }

/* CTA */
.tourvoz-destination-cta-section { padding-bottom: 20px; }
.tourvoz-destination-cta {
	display: grid;
	grid-template-columns: minmax(0,1fr) auto;
	align-items: center;
	gap: 54px;
	padding: 48px 52px;
	border: 1px solid var(--tv-border);
	border-radius: 16px;
	background: #f4f6f5;
}
.tourvoz-destination-cta > div:first-child { max-width: 720px; }
.tourvoz-destination-cta > div:first-child > p:last-child {
	margin: 14px 0 0;
	color: #59615f;
	font-size: 16px;
	line-height: 1.75;
}
.tourvoz-destination-cta-actions { display: flex; gap: 12px; }
.tourvoz-destination-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 25px;
	border-radius: 9px;
	font-size: 15px;
	font-weight: 700;
	white-space: nowrap;
}
.tourvoz-destination-button-primary { color: #fff !important; background: #1f4d45; border: 1px solid #1f4d45; }
.tourvoz-destination-button-primary:hover { background: #173b35; border-color: #173b35; }
.tourvoz-destination-button-secondary { color: #1f4d45 !important; background: transparent; border: 1px solid #bfcbc7; }
.tourvoz-destination-button-secondary:hover { background: #eef4f1; border-color: #1f4d45; }

@media (max-width: 900px) {
	.tourvoz-destination-container { width: min(calc(100% - 36px), var(--tv-container)); }
	.tourvoz-destination-hero { width: calc(100% - 36px); height: 560px; border-radius: 16px; }
	.tourvoz-destination-about-grid,
	.tourvoz-destination-intro-grid { grid-template-columns: 1fr; gap: 36px; }
	.tourvoz-destination-tour-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }

	.tourvoz-destination-highlight-card {
		min-height: 56px;
		padding: 12px 18px;
	}
	.tourvoz-destination-cta { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 600px) {
	.tourvoz-destination-container { width: calc(100% - 32px); }
	.tourvoz-destination-section { padding: 62px 0; }
	.tourvoz-destination-hero { width: calc(100% - 32px); height: 480px; border-radius: 14px; }
	.tourvoz-destination-hero-content { padding-bottom: 34px; }
	.tourvoz-destination-hero h1 { font-size: 43px; }
	.tourvoz-destination-hero-intro { margin-top: 14px; font-size: 16px; line-height: 1.65; }
	.tourvoz-destination-about-section { padding-bottom: 0; }
	.tourvoz-destination-description,
	.tourvoz-destination-richtext { font-size: 16px; }
	.tourvoz-destination-tour-grid { grid-template-columns: 1fr; }

	.tourvoz-destination-highlights-grid {
		gap: 10px;
	}

	.tourvoz-destination-highlight-card {
		min-height: 50px;
		padding: 10px 15px;
		border-radius: 12px;
	}

	.tourvoz-destination-highlight-card h3 {
		font-size: 14px;
	}

	.tourvoz-destination-highlight-card:hover {
		transform: translateY(-2px);
	}
	.tourvoz-destination-cta { padding: 34px 26px; }
	.tourvoz-destination-cta-actions { flex-direction: column; align-items: stretch; }
	.tourvoz-destination-button { width: 100%; }
}

/* =========================================================
   Destination Hub - Tour Card Meta / Price
   ========================================================= */

.tourvoz-destination-tour-card {
	display: flex;
	flex-direction: column;
	transition:
		transform .24s ease,
		box-shadow .24s ease,
		border-color .24s ease;
}

.tourvoz-destination-tour-card:hover {
	transform: translateY(-4px);
	border-color: #d9dfdc;
	box-shadow: 0 14px 34px rgba(20, 32, 29, .08);
}

.tourvoz-destination-tour-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 28px 30px 30px;
}

.tourvoz-destination-tour-meta-top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px 10px;
	margin-bottom: 20px;
	color: var(--tv-accent-dark);
	font-size: 11px;
	font-weight: 750;
	line-height: 1.35;
	letter-spacing: .065em;
	text-transform: uppercase;
}

.tourvoz-destination-tour-meta-top span + span::before {
	content: "·";
	margin-right: 10px;
	color: #aeb6b3;
}

.tourvoz-destination-tour-card h3 {
	margin: 0 0 20px;
}

.tourvoz-destination-tour-group {
	margin: 0;
	color: var(--tv-muted);
	font-size: 14px;
	line-height: 1.5;
}

.tourvoz-destination-tour-card-footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin-top: auto;
	padding-top: 32px;
}

.tourvoz-destination-tour-price {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-height: 43px;
}

.tourvoz-destination-tour-price > span {
	color: var(--tv-muted);
	font-size: 11px;
	font-weight: 650;
	line-height: 1.3;
	letter-spacing: .055em;
	text-transform: uppercase;
}

.tourvoz-destination-tour-price strong {
	color: var(--tv-heading);
	font-size: 20px;
	font-weight: 750;
	line-height: 1.25;
}

.tourvoz-destination-tour-price-empty {
	visibility: hidden;
}

.tourvoz-destination-tour-link span {
	transition: transform .2s ease;
}

.tourvoz-destination-tour-link:hover span {
	transform: translateX(3px);
}

@media (max-width: 600px) {
	.tourvoz-destination-tour-card-body {
		padding: 24px 24px 26px;
	}

	.tourvoz-destination-tour-meta-top {
		margin-bottom: 16px;
	}

	.tourvoz-destination-tour-card h3 {
		margin-bottom: 16px;
	}

	.tourvoz-destination-tour-card-footer {
		align-items: center;
		padding-top: 26px;
	}
}

/* =========================================================
   General Inquiry - Homepage
   ========================================================= */

.tourvoz-page-main {
	width: 100%;
}

.tourvoz-page-content {
	max-width: 1100px;
	margin: 60px auto;
	padding: 0 24px;
}

.tourvoz-general-inquiry {
	padding: 88px 24px 96px;
	background: #f7f8f7;
	border-top: 1px solid #e7ebe9;
}

.tourvoz-general-inquiry-inner {
	max-width: 1080px;
	margin: 0 auto;
}

.tourvoz-general-inquiry-heading {
	max-width: 720px;
	margin: 0 auto 42px;
	text-align: center;
}

.tourvoz-general-inquiry-eyebrow {
	margin: 0 0 12px;
	color: var(--tv-accent-dark);
	font-size: 12px;
	font-weight: 750;
	line-height: 1.4;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.tourvoz-general-inquiry-heading h2 {
	margin: 0 0 16px;
	color: var(--tv-heading);
	font-size: clamp(32px, 4vw, 46px);
	font-weight: 750;
	line-height: 1.15;
	letter-spacing: -.025em;
}

.tourvoz-general-inquiry-heading > p:last-child {
	max-width: 620px;
	margin: 0 auto;
	color: var(--tv-muted);
	font-size: 16px;
	line-height: 1.75;
}

.tourvoz-general-inquiry .tourvoz-inquiry-form-wrap {
	margin: 0;
}

@media (max-width: 768px) {
	.tourvoz-page-content {
		margin: 40px auto;
		padding: 0 20px;
	}

	.tourvoz-general-inquiry {
		padding: 64px 18px 72px;
	}

	.tourvoz-general-inquiry-heading {
		margin-bottom: 32px;
	}

	.tourvoz-general-inquiry-heading h2 {
		font-size: 32px;
	}

	.tourvoz-general-inquiry-heading > p:last-child {
		font-size: 15px;
	}
}

/* =========================================================
   TourVoz Homepage Hero Slider
   ========================================================= */

.tourvoz-home {
	width: 100%;
}

.tourvoz-home-hero {
	position: relative;
	width: 100%;
	height: 640px;
	min-height: 640px;
	overflow: hidden;
	background: #16231f;
}

.tourvoz-home-hero-slides {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/* Slides -------------------------------------------------- */

.tourvoz-home-hero-slide {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0;
	visibility: hidden;
	transition: opacity .65s ease, visibility .65s ease;
}

.tourvoz-home-hero-slide.is-active {
	z-index: 2;
	opacity: 1;
	visibility: visible;
}

.tourvoz-home-hero-slide.no-image {
	background: linear-gradient(135deg, #16231f 0%, #20332d 55%, #2d443d 100%);
}

/* Overlay ------------------------------------------------- */

.tourvoz-home-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		90deg,
		rgba(15, 25, 22, .76) 0%,
		rgba(15, 25, 22, .56) 42%,
		rgba(15, 25, 22, .22) 72%,
		rgba(15, 25, 22, .10) 100%
	);
	pointer-events: none;
}

/* Content ------------------------------------------------- */

.tourvoz-home-container {
	width: min(1080px, calc(100% - 48px));
	margin: 0 auto;
}

.tourvoz-home-hero-content {
	position: relative;
	z-index: 3;
	width: min(1080px, calc(100% - 48px));
	margin: 0 auto;
	padding-top: 90px;
	padding-bottom: 90px;
}

.tourvoz-home-hero-eyebrow {
	margin: 0 0 18px;
	color: #d4b173;
	font-size: 12px;
	font-weight: 750;
	line-height: 1.4;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.tourvoz-home-hero-slide h1,
.tourvoz-home-hero-slide h2 {
	max-width: 680px;
	margin: 0 0 24px;
	color: #fff;
	font-size: clamp(48px, 6vw, 72px);
	font-weight: 750;
	line-height: 1.04;
	letter-spacing: -.04em;
}

.tourvoz-home-hero-description {
	max-width: 600px;
	margin: 0;
	color: rgba(255, 255, 255, .84);
	font-size: 18px;
	line-height: 1.7;
}

/* Buttons ------------------------------------------------- */

.tourvoz-home-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.tourvoz-home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 26px;
	border: 1px solid transparent;
	border-radius: 9px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

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

.tourvoz-home-btn-primary {
	color: #fff;
	background: #b28b4e;
	border-color: #b28b4e;
}

.tourvoz-home-btn-primary:hover {
	color: #fff;
	background: #9c773f;
	border-color: #9c773f;
}

.tourvoz-home-btn-secondary {
	color: #fff;
	background: rgba(15, 25, 22, .10);
	border-color: rgba(255, 255, 255, .55);
}

.tourvoz-home-btn-secondary:hover {
	color: #fff;
	background: rgba(255, 255, 255, .10);
	border-color: #fff;
}

/* Slider arrows ------------------------------------------ */

.tourvoz-home-hero-arrow {
	position: absolute;
	top: 50%;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	color: #fff;
	background: rgba(15, 25, 22, .28);
	border: 1px solid rgba(255, 255, 255, .38);
	border-radius: 50%;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background-color .2s ease, border-color .2s ease;
}

.tourvoz-home-hero-arrow:hover {
	background: rgba(15, 25, 22, .58);
	border-color: rgba(255, 255, 255, .75);
}

.tourvoz-home-hero-prev {
	left: 28px;
}

.tourvoz-home-hero-next {
	right: 28px;
}

/* Slider dots -------------------------------------------- */

.tourvoz-home-hero-dots {
	position: absolute;
	z-index: 10;
	left: 50%;
	bottom: 28px;
	display: flex;
	align-items: center;
	gap: 9px;
	transform: translateX(-50%);
}

.tourvoz-home-hero-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	background: rgba(255, 255, 255, .48);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	transition: width .25s ease, background-color .25s ease;
}

.tourvoz-home-hero-dot.is-active {
	width: 26px;
	background: #fff;
}

/* Responsive --------------------------------------------- */

@media (max-width: 768px) {
	.tourvoz-home-hero {
		height: 560px;
		min-height: 560px;
	}

	.tourvoz-home-hero-content {
		width: calc(100% - 40px);
		padding-top: 72px;
		padding-bottom: 82px;
	}

	.tourvoz-home-hero-slide h1,
	.tourvoz-home-hero-slide h2 {
		font-size: 44px;
	}

	.tourvoz-home-hero-description {
		font-size: 16px;
	}

	.tourvoz-home-hero-arrow {
		top: auto;
		bottom: 20px;
		width: 40px;
		height: 40px;
		transform: none;
	}

	.tourvoz-home-hero-prev {
		left: 20px;
	}

	.tourvoz-home-hero-next {
		right: 20px;
	}

	.tourvoz-home-hero-dots {
		bottom: 36px;
	}
}

@media (max-width: 480px) {
	.tourvoz-home-hero {
		height: 520px;
		min-height: 520px;
	}

	.tourvoz-home-hero-slide h1,
	.tourvoz-home-hero-slide h2 {
		font-size: 38px;
	}

	.tourvoz-home-hero-actions {
		gap: 10px;
	}

	.tourvoz-home-btn {
		min-height: 48px;
		padding: 0 20px;
	}
}

/* =========================================================
   TourVoz Homepage — Popular Destinations
========================================================= */

.tourvoz-home-destinations {
	padding: 96px 28px 104px;
	background: var(--tv-white);
}

.tourvoz-home-destinations .tourvoz-home-container {
	width: min(var(--tv-container), 100%);
	margin: 0 auto;
}

.tourvoz-home-section-heading {
	max-width: 720px;
	margin: 0 auto 48px;
	text-align: center;
}

.tourvoz-home-section-eyebrow {
	margin: 0 0 12px;
	color: var(--tv-accent-dark);
	font-size: 12px;
	font-weight: 750;
	line-height: 1.4;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.tourvoz-home-section-heading h2 {
	margin: 0 0 16px;
	color: var(--tv-heading);
	font-size: clamp(34px, 4vw, 48px);
	font-weight: 750;
	line-height: 1.12;
	letter-spacing: -.03em;
}

.tourvoz-home-section-heading > p:last-child {
	max-width: 650px;
	margin: 0 auto;
	color: var(--tv-muted);
	font-size: 16px;
	line-height: 1.75;
}

.tourvoz-home-destination-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	width: 100%;
}

/* Keep small destination sets visually balanced. */
.tourvoz-home-destination-grid.is-count-1 {
	grid-template-columns: minmax(0, 380px);
	justify-content: center;
}

.tourvoz-home-destination-grid.is-count-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 788px;
	margin: 0 auto;
}

.tourvoz-home-destination-grid.is-count-4 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 800px;
	margin: 0 auto;
}

.tourvoz-home-destination-card {
	min-width: 0;
	height: 100%;
	margin: 0;
	overflow: hidden;
	background: var(--tv-white);
	border: 1px solid var(--tv-border);
	border-radius: var(--tv-radius);
	box-shadow: 0 12px 34px rgba(16, 23, 22, .06);
	transition:
		transform .25s ease,
		box-shadow .25s ease,
		border-color .25s ease;
}

.tourvoz-home-destination-card:hover {
	transform: translateY(-5px);
	border-color: rgba(183, 139, 82, .42);
	box-shadow: 0 18px 44px rgba(16, 23, 22, .11);
}

.tourvoz-home-destination-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.tourvoz-home-destination-media {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--tv-soft);
}

.tourvoz-home-destination-image,
.tourvoz-home-destination-media > img,
.tourvoz-home-destination-image-placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.tourvoz-home-destination-image,
.tourvoz-home-destination-media > img {
	object-fit: cover;
	object-position: center center;
	transition: transform .45s ease;
}

.tourvoz-home-destination-card:hover .tourvoz-home-destination-image,
.tourvoz-home-destination-card:hover .tourvoz-home-destination-media > img {
	transform: scale(1.045);
}

.tourvoz-home-destination-image-placeholder {
	background:
		linear-gradient(135deg, rgba(183, 139, 82, .13), rgba(31, 61, 59, .08)),
		var(--tv-soft);
}

.tourvoz-home-destination-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 26px 28px 28px;
}

.tourvoz-home-destination-content h3 {
	margin: 0 0 12px;
	color: var(--tv-heading);
	font-size: 25px;
	font-weight: 750;
	line-height: 1.2;
	letter-spacing: -.02em;
}

.tourvoz-home-destination-content > p {
	display: -webkit-box;
	min-height: 81px;
	margin: 0 0 22px;
	overflow: hidden;
	color: var(--tv-muted);
	font-size: 15px;
	line-height: 1.8;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.tourvoz-home-destination-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: var(--tv-accent-dark);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.4;
	letter-spacing: .02em;
}

.tourvoz-home-destination-cta span {
	font-size: 17px;
	line-height: 1;
	transition: transform .2s ease;
}

.tourvoz-home-destination-card:hover .tourvoz-home-destination-cta span {
	transform: translateX(4px);
}

.tourvoz-home-destination-card-link:focus-visible {
	outline: 3px solid rgba(183, 139, 82, .42);
	outline-offset: -3px;
}

@media (max-width: 900px) {
	.tourvoz-home-destination-grid,
	.tourvoz-home-destination-grid.is-count-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: none;
	}

	.tourvoz-home-destination-grid.is-count-1 {
		grid-template-columns: minmax(0, 380px);
	}

	.tourvoz-home-destination-grid.is-count-2 {
		max-width: none;
	}
}

@media (max-width: 640px) {
	.tourvoz-home-destinations {
		padding: 68px 18px 76px;
	}

	.tourvoz-home-section-heading {
		margin-bottom: 34px;
		text-align: left;
	}

	.tourvoz-home-section-heading h2 {
		font-size: 34px;
	}

	.tourvoz-home-section-heading > p:last-child {
		font-size: 15px;
	}

	.tourvoz-home-destination-grid,
	.tourvoz-home-destination-grid.is-count-1,
	.tourvoz-home-destination-grid.is-count-2,
	.tourvoz-home-destination-grid.is-count-4 {
		grid-template-columns: 1fr;
		max-width: none;
		gap: 22px;
	}

	.tourvoz-home-destination-content {
		padding: 22px 22px 24px;
	}

	.tourvoz-home-destination-content h3 {
		font-size: 23px;
	}

	.tourvoz-home-destination-content > p {
		min-height: 0;
		margin-bottom: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tourvoz-home-destination-card,
	.tourvoz-home-destination-image,
	.tourvoz-home-destination-media > img,
	.tourvoz-home-destination-cta span {
		transition: none;
	}

	.tourvoz-home-destination-card:hover {
		transform: none;
	}

	.tourvoz-home-destination-card:hover .tourvoz-home-destination-image,
	.tourvoz-home-destination-card:hover .tourvoz-home-destination-media > img {
		transform: none;
	}
}


/* =========================================================
   TourVoz Homepage — Featured Tours
========================================================= */

.tourvoz-home-featured-tours {
	padding: 96px 28px 104px;
	background: #fbfaf7;
	border-top: 1px solid rgba(183, 139, 82, .10);
}

.tourvoz-home-featured-tours .tourvoz-home-container {
	width: min(var(--tv-container), 100%);
	margin: 0 auto;
}

.tourvoz-home-featured-tour-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	width: 100%;
}

.tourvoz-home-featured-tour-grid.is-count-1 {
	grid-template-columns: minmax(0, 380px);
	justify-content: center;
}

.tourvoz-home-featured-tour-grid.is-count-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 788px;
	margin: 0 auto;
}

.tourvoz-home-featured-tour-grid.is-count-4 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 800px;
	margin: 0 auto;
}

.tourvoz-home-featured-tour-card {
	display: flex;
	min-width: 0;
	height: 100%;
	margin: 0;
	flex-direction: column;
	overflow: hidden;
	background: var(--tv-white);
	border: 1px solid var(--tv-border);
	border-radius: var(--tv-radius);
	box-shadow: 0 12px 34px rgba(16, 23, 22, .055);
	transition:
		transform .25s ease,
		box-shadow .25s ease,
		border-color .25s ease;
}

.tourvoz-home-featured-tour-card:hover {
	transform: translateY(-5px);
	border-color: rgba(183, 139, 82, .42);
	box-shadow: 0 18px 44px rgba(16, 23, 22, .11);
}

.tourvoz-home-featured-tour-image-link {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--tv-soft);
}

.tourvoz-home-featured-tour-image,
.tourvoz-home-featured-tour-image-link > img,
.tourvoz-home-featured-tour-image-placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.tourvoz-home-featured-tour-image,
.tourvoz-home-featured-tour-image-link > img {
	object-fit: cover;
	object-position: center center;
	transition: transform .45s ease;
}

.tourvoz-home-featured-tour-card:hover .tourvoz-home-featured-tour-image,
.tourvoz-home-featured-tour-card:hover .tourvoz-home-featured-tour-image-link > img {
	transform: scale(1.04);
}

.tourvoz-home-featured-tour-image-placeholder {
	background:
		linear-gradient(135deg, rgba(183, 139, 82, .13), rgba(31, 61, 59, .08)),
		var(--tv-soft);
}

.tourvoz-home-featured-tour-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 27px 28px 29px;
}

.tourvoz-home-featured-tour-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px 10px;
	min-height: 15px;
	margin: 0 0 16px;
	color: var(--tv-accent-dark);
	font-size: 11px;
	font-weight: 750;
	line-height: 1.35;
	letter-spacing: .065em;
	text-transform: uppercase;
}

.tourvoz-home-featured-tour-meta span + span::before {
	content: "·";
	margin-right: 10px;
	color: #aeb6b3;
}

.tourvoz-home-featured-tour-body h3 {
	margin: 0 0 12px;
	color: var(--tv-heading);
	font-size: 22px;
	font-weight: 750;
	line-height: 1.3;
	letter-spacing: -.02em;
}

.tourvoz-home-featured-tour-body h3 a {
	color: inherit;
	text-decoration: none;
	transition: color .2s ease;
}

.tourvoz-home-featured-tour-body h3 a:hover {
	color: var(--tv-accent-dark);
}

.tourvoz-home-featured-tour-theme {
	margin: 0;
	color: var(--tv-muted);
	font-size: 14px;
	line-height: 1.55;
}

.tourvoz-home-featured-tour-footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin-top: auto;
	padding-top: 30px;
}

.tourvoz-home-featured-tour-price {
	display: flex;
	min-height: 43px;
	flex-direction: column;
	gap: 1px;
}

.tourvoz-home-featured-tour-price > span {
	color: var(--tv-muted);
	font-size: 11px;
	font-weight: 650;
	line-height: 1.3;
	letter-spacing: .055em;
	text-transform: uppercase;
}

.tourvoz-home-featured-tour-price strong {
	color: var(--tv-heading);
	font-size: 20px;
	font-weight: 750;
	line-height: 1.25;
}

.tourvoz-home-featured-tour-price.is-empty {
	visibility: hidden;
}

.tourvoz-home-featured-tour-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--tv-accent-dark);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.4;
	text-decoration: none;
	white-space: nowrap;
}

.tourvoz-home-featured-tour-link span {
	font-size: 17px;
	line-height: 1;
	transition: transform .2s ease;
}

.tourvoz-home-featured-tour-link:hover span {
	transform: translateX(4px);
}

.tourvoz-home-featured-tour-image-link:focus-visible,
.tourvoz-home-featured-tour-body h3 a:focus-visible,
.tourvoz-home-featured-tour-link:focus-visible {
	outline: 3px solid rgba(183, 139, 82, .42);
	outline-offset: 3px;
}

@media (max-width: 900px) {
	.tourvoz-home-featured-tour-grid,
	.tourvoz-home-featured-tour-grid.is-count-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: none;
	}

	.tourvoz-home-featured-tour-grid.is-count-1 {
		grid-template-columns: minmax(0, 380px);
	}

	.tourvoz-home-featured-tour-grid.is-count-2 {
		max-width: none;
	}
}

@media (max-width: 640px) {
	.tourvoz-home-featured-tours {
		padding: 68px 18px 76px;
	}

	.tourvoz-home-featured-tour-grid,
	.tourvoz-home-featured-tour-grid.is-count-1,
	.tourvoz-home-featured-tour-grid.is-count-2,
	.tourvoz-home-featured-tour-grid.is-count-4 {
		grid-template-columns: 1fr;
		max-width: none;
		gap: 22px;
	}

	.tourvoz-home-featured-tour-body {
		padding: 23px 22px 25px;
	}

	.tourvoz-home-featured-tour-body h3 {
		font-size: 21px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tourvoz-home-featured-tour-card,
	.tourvoz-home-featured-tour-image,
	.tourvoz-home-featured-tour-image-link > img,
	.tourvoz-home-featured-tour-link span {
		transition: none;
	}

	.tourvoz-home-featured-tour-card:hover,
	.tourvoz-home-featured-tour-card:hover .tourvoz-home-featured-tour-image,
	.tourvoz-home-featured-tour-card:hover .tourvoz-home-featured-tour-image-link > img {
		transform: none;
	}
}


/* =========================================================
   TourVoz Homepage — Why Travel With Us
   ========================================================= */

.tourvoz-home-why {
    padding: 96px 24px 104px;
    background: #f7f5f0;
}

.tourvoz-home-why-heading {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.tourvoz-home-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.tourvoz-home-why-grid.is-count-1 {
    grid-template-columns: minmax(0, 300px);
    justify-content: center;
}

.tourvoz-home-why-grid.is-count-2 {
    grid-template-columns: repeat(2, minmax(0, 300px));
    justify-content: center;
}

.tourvoz-home-why-grid.is-count-3,
.tourvoz-home-why-grid.is-count-5,
.tourvoz-home-why-grid.is-count-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tourvoz-home-why-card {
    position: relative;
    min-width: 0;
    padding: 34px 30px 32px;
    background: #fff;
    border: 1px solid rgba(24, 32, 31, .08);
    border-radius: var(--tv-radius);
    box-shadow: 0 10px 32px rgba(16, 23, 22, .045);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.tourvoz-home-why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(183, 139, 82, .28);
    box-shadow: 0 16px 38px rgba(16, 23, 22, .075);
}

.tourvoz-home-why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 0 24px;
    color: var(--tv-accent-dark);
    background: rgba(183, 139, 82, .11);
    border-radius: 14px;
}

.tourvoz-home-why-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tourvoz-home-why-card h3 {
    margin: 0 0 12px;
    color: var(--tv-heading);
    font-size: 20px;
    font-weight: 750;
    line-height: 1.3;
    letter-spacing: -.015em;
}

.tourvoz-home-why-card > p {
    margin: 0;
    color: var(--tv-muted);
    font-size: 15px;
    line-height: 1.75;
}

@media (max-width: 980px) {
    .tourvoz-home-why-grid,
    .tourvoz-home-why-grid.is-count-3,
    .tourvoz-home-why-grid.is-count-5,
    .tourvoz-home-why-grid.is-count-6 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .tourvoz-home-why {
        padding: 68px 18px 76px;
    }

    .tourvoz-home-why-heading {
        margin-bottom: 34px;
    }

    .tourvoz-home-why-card {
        padding: 28px 24px 27px;
    }
}

@media (max-width: 620px) {
    .tourvoz-home-why-grid,
    .tourvoz-home-why-grid.is-count-1,
    .tourvoz-home-why-grid.is-count-2,
    .tourvoz-home-why-grid.is-count-3,
    .tourvoz-home-why-grid.is-count-4,
    .tourvoz-home-why-grid.is-count-5,
    .tourvoz-home-why-grid.is-count-6 {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   TourVoz Footer
========================================================= */

.tourvoz-site-footer {
	margin-top: 0;
	background: #17211f;
	color: rgba(255,255,255,.78);
}

.tourvoz-site-footer-cta {
	padding: 0 24px;
	background: #f7f5f0;
}

.tourvoz-site-footer-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	max-width: var(--tv-container);
	margin: 0 auto;
	padding: 42px 0;
	border-top: 1px solid #e5e3dc;
}

.tourvoz-site-footer-cta-inner > div {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.tourvoz-site-footer-cta-inner span {
	color: #8b6a44;
	font-size: 11px;
	font-weight: 750;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.tourvoz-site-footer-cta-inner strong {
	color: var(--tv-heading);
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 750;
	line-height: 1.2;
	letter-spacing: -.025em;
}

.tourvoz-site-footer-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 24px;
	border: 1px solid #17211f;
	border-radius: 999px;
	background: #17211f;
	color: #fff !important;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none !important;
	white-space: nowrap;
	transition: transform .18s ease, background-color .18s ease;
}

.tourvoz-site-footer-cta-button:hover,
.tourvoz-site-footer-cta-button:focus-visible {
	background: #293632;
	transform: translateY(-1px);
}

.tourvoz-site-footer-main {
	padding: 72px 24px 58px;
}

.tourvoz-site-footer-inner {
	display: grid;
	grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(130px, .75fr));
	gap: 42px;
	max-width: var(--tv-container);
	margin: 0 auto;
}

.tourvoz-site-footer-brand {
	max-width: 320px;
}

.tourvoz-site-footer-brand-link {
	display: inline-flex;
	align-items: center;
	color: #fff !important;
	text-decoration: none !important;
}

.tourvoz-site-footer-logo {
	display: block;
	width: auto;
	max-width: 170px;
	max-height: 50px;
	object-fit: contain;
}

.tourvoz-site-footer-brand-name {
	font-size: 22px;
	font-weight: 750;
	letter-spacing: -.02em;
}

.tourvoz-site-footer-copy {
	margin: 18px 0 0;
	color: rgba(255,255,255,.62);
	font-size: 14px;
	line-height: 1.75;
}

.tourvoz-site-footer-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin-top: 20px;
}

.tourvoz-site-footer-socials a {
	color: rgba(255,255,255,.82) !important;
	font-size: 12px;
	font-weight: 650;
	text-decoration: none !important;
}

.tourvoz-site-footer-socials a:hover,
.tourvoz-site-footer-socials a:focus-visible {
	color: #fff !important;
}

.tourvoz-site-footer-heading {
	margin: 0 0 16px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .01em;
}

.tourvoz-site-footer-column ul {
	display: grid;
	gap: 11px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tourvoz-site-footer-column a,
.tourvoz-site-footer-column span {
	color: rgba(255,255,255,.66);
	font-size: 13px;
	line-height: 1.55;
	text-decoration: none;
	transition: color .18s ease;
}

.tourvoz-site-footer-column a:hover,
.tourvoz-site-footer-column a:focus-visible {
	color: #fff;
}

.tourvoz-site-footer-bottom {
	border-top: 1px solid rgba(255,255,255,.11);
}

.tourvoz-site-footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	max-width: var(--tv-container);
	margin: 0 auto;
	padding: 20px 24px 24px;
}

.tourvoz-site-footer-bottom p {
	margin: 0;
	color: rgba(255,255,255,.48);
	font-size: 11px;
	line-height: 1.5;
}

.tourvoz-site-footer-bottom-links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.tourvoz-site-footer-bottom-links a {
	color: rgba(255,255,255,.58);
	font-size: 11px;
	text-decoration: none;
}

.tourvoz-site-footer-bottom-links a:hover,
.tourvoz-site-footer-bottom-links a:focus-visible {
	color: #fff;
}

@media (max-width: 980px) {
	.tourvoz-site-footer-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tourvoz-site-footer-brand {
		max-width: none;
	}
}

@media (max-width: 720px) {
	.tourvoz-site-footer-cta {
		padding: 0 20px;
	}

	.tourvoz-site-footer-cta-inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 34px 0;
	}

	.tourvoz-site-footer-main {
		padding: 52px 20px 42px;
	}

	.tourvoz-site-footer-inner {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.tourvoz-site-footer-bottom-inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 18px 20px 22px;
	}
}


/* Footer desktop alignment: brand and menu group headings share the same top line */
@media (min-width: 981px) {
	.tourvoz-site-footer-inner {
		align-items: start;
	}

	.tourvoz-site-footer-brand,
	.tourvoz-site-footer-column,
	.tourvoz-site-footer-contact {
		align-self: start;
		margin-top: 0;
	}

	.tourvoz-site-footer-brand-link,
	.tourvoz-site-footer-heading {
		margin-top: 0;
	}
}

/* =========================================================
   TourVoz — Structured Blog Article
========================================================= */

.single-post .tourvoz-article {
	width: 100%;
	overflow: hidden;
	background: #fff;
	color: var(--tv-text);
}

.single-post .tourvoz-article-container {
	width: min(calc(100% - 48px), 1180px);
	margin: 0 auto;
}

/* Header */

.single-post .tourvoz-article-hero {
	padding: 82px 0 30px;
	background:
		linear-gradient(180deg, #f8faf8 0%, #ffffff 100%);
}

.single-post .tourvoz-article-hero-inner {
	max-width: 940px;
}


.single-post .tourvoz-article-title {
	max-width: 900px;
	margin: 0;
	color: var(--tv-heading);
	font-size: clamp(44px, 5.5vw, 68px);
	font-weight: 750;
	line-height: 1.07;
	letter-spacing: -.045em;
}

.single-post .tourvoz-article-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
	margin-top: 22px;
	color: #7a8481;
	font-size: 13px;
	font-weight: 550;
}


.single-post .tourvoz-article-meta-categories {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
}

.single-post .tourvoz-article-meta-categories a {
	color: #946b38;
	font-weight: 650;
	text-decoration: none;
	transition: color .18s ease;
}

.single-post .tourvoz-article-meta-categories a:hover,
.single-post .tourvoz-article-meta-categories a:focus-visible {
	color: #1f4d45;
}

.single-post .tourvoz-article-intro {
	width: min(100%, 860px);
	margin: 0 auto 58px;
	color: #47514e;
	font-size: clamp(18px, 2vw, 21px);
	font-weight: 400;
	line-height: 1.75;
}

/* Featured image */

.single-post .tourvoz-article-featured {
	width: 100%;
	margin: 8px 0 40px;
	overflow: hidden;
	border-radius: 20px;
	background: #f2f4f3;
	aspect-ratio: 16 / 8.6;
}

.single-post .tourvoz-article-featured img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Main article column */

.single-post .tourvoz-article-content {
	width: min(100%, 860px);
	margin: 0 auto;
	padding-bottom: 18px;
}

.single-post .tourvoz-article-section {
	margin: 0 0 64px;
}

.single-post .tourvoz-article-section > h2,
.single-post .tourvoz-article-image-text-copy > h2 {
	margin: 0 0 20px;
	color: var(--tv-heading);
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 720;
	line-height: 1.2;
	letter-spacing: -.025em;
}

.single-post .tourvoz-article-copy {
	color: #3f4946;
	font-size: 17px;
	line-height: 1.88;
}

.single-post .tourvoz-article-copy p {
	margin: 0 0 20px;
}

.single-post .tourvoz-article-copy p:last-child {
	margin-bottom: 0;
}

/* Image + text */

.single-post .tourvoz-article-image-text {
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
	align-items: center;
	gap: 46px;
	width: min(1120px, calc(100vw - 48px));
	margin-left: 50%;
	transform: translateX(-50%);
}

.single-post .tourvoz-article-image-text.is-image-right .tourvoz-article-image-text-media {
	order: 2;
}

.single-post .tourvoz-article-image-text.is-image-right .tourvoz-article-image-text-copy {
	order: 1;
}

.single-post .tourvoz-article-image-text-media {
	overflow: hidden;
	border-radius: 16px;
	background: #f2f4f3;
	aspect-ratio: 4 / 3;
}

.single-post .tourvoz-article-image-text-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

.single-post .tourvoz-article-image-text:hover .tourvoz-article-image-text-media img {
	transform: scale(1.018);
}

/* Standalone image */

.single-post .tourvoz-article-image {
	width: min(1080px, calc(100vw - 48px));
	margin-left: 50%;
	transform: translateX(-50%);
}

.single-post .tourvoz-article-image img {
	width: 100%;
	max-height: 720px;
	object-fit: cover;
	border-radius: 16px;
	background: #f2f4f3;
}

.single-post .tourvoz-article-image figcaption {
	margin-top: 10px;
	color: #7d8784;
	font-size: 12px;
	line-height: 1.55;
	text-align: center;
}

/* Bullet list */

.single-post .tourvoz-article-list ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.single-post .tourvoz-article-list li {
	position: relative;
	padding: 16px 18px 16px 48px;
	border: 1px solid #e4e9e6;
	border-radius: 11px;
	background: #f8faf9;
	color: #3b4542;
	font-size: 16px;
	line-height: 1.55;
}

.single-post .tourvoz-article-list li::before {
	content: "✓";
	position: absolute;
	top: 15px;
	left: 19px;
	color: #946b38;
	font-weight: 800;
}

/* Quote */

.single-post .tourvoz-article-quote {
	position: relative;
	padding: 34px 38px 32px;
	border: 1px solid #e1e6e3;
	border-left: 4px solid #b78b52;
	border-radius: 0 14px 14px 0;
	background: #f8f9f7;
}

.single-post .tourvoz-article-quote::before {
	content: "“";
	position: absolute;
	top: 12px;
	left: 23px;
	color: rgba(183, 139, 82, .25);
	font-family: Georgia, serif;
	font-size: 54px;
	line-height: 1;
}

.single-post .tourvoz-article-quote p {
	position: relative;
	margin: 0;
	color: #25302d;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(20px, 2.4vw, 26px);
	font-weight: 400;
	line-height: 1.55;
}

.single-post .tourvoz-article-quote cite {
	display: block;
	margin-top: 17px;
	color: #7a8481;
	font-size: 13px;
	font-style: normal;
	font-weight: 650;
}

/* FAQ */

.single-post .tourvoz-article-faq-list {
	border-top: 1px solid #dfe5e2;
}

.single-post .tourvoz-article-faq-item {
	border-bottom: 1px solid #dfe5e2;
}

.single-post .tourvoz-article-faq-item summary {
	display: grid;
	grid-template-columns: 1fr 24px;
	align-items: center;
	gap: 20px;
	min-height: 68px;
	padding: 18px 0;
	color: var(--tv-heading);
	font-size: 16px;
	font-weight: 680;
	line-height: 1.45;
	cursor: pointer;
	list-style: none;
}

.single-post .tourvoz-article-faq-item summary::-webkit-details-marker {
	display: none;
}

.single-post .tourvoz-article-faq-item summary::marker {
	content: "";
}

.single-post .tourvoz-article-faq-icon {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
}

.single-post .tourvoz-article-faq-icon::before,
.single-post .tourvoz-article-faq-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: #66716e;
	transform: translate(-50%, -50%);
}

.single-post .tourvoz-article-faq-icon::before {
	width: 14px;
	height: 1.5px;
}

.single-post .tourvoz-article-faq-icon::after {
	width: 1.5px;
	height: 14px;
	transition: opacity .18s ease;
}

.single-post .tourvoz-article-faq-item[open] .tourvoz-article-faq-icon::after {
	opacity: 0;
}

.single-post .tourvoz-article-faq-answer {
	max-width: 760px;
	padding: 0 44px 20px 0;
	color: #5d6764;
	font-size: 15px;
	line-height: 1.75;
}

.single-post .tourvoz-article-faq-answer p {
	margin: 0;
}

/* Legacy article fallback */

.single-post .tourvoz-article-legacy {
	color: #3f4946;
	font-size: 17px;
	line-height: 1.85;
}

.single-post .tourvoz-article-legacy img {
	height: auto;
	border-radius: 14px;
}

/* Article CTA */

.single-post .tourvoz-article-cta {
	margin: 38px 0 88px;
}

.single-post .tourvoz-article-cta-eyebrow {
	margin-bottom: 8px;
	color: #946b38;
	font-size: 11px;
	font-weight: 750;
	letter-spacing: .1em;
	text-transform: uppercase;
}

/*
 * Single posts already render the article inquiry CTA.
 * Suppress the separate footer CTA to avoid two consecutive CTAs.
 */
.single-post .tourvoz-site-footer-cta {
	display: none;
}

/* Responsive */

@media (max-width: 900px) {

	.single-post .tourvoz-article-container {
		width: min(calc(100% - 36px), 1180px);
	}

	.single-post .tourvoz-article-hero {
		padding: 62px 0 34px;
	}

	.single-post .tourvoz-article-featured {
		margin-bottom: 34px;
		border-radius: 16px;
	}

	.single-post .tourvoz-article-intro {
		margin-bottom: 50px;
	}

	.single-post .tourvoz-article-image-text {
		grid-template-columns: 1fr;
		gap: 26px;
		width: 100%;
		margin-left: 0;
		transform: none;
	}

	.single-post .tourvoz-article-image-text.is-image-right .tourvoz-article-image-text-media,
	.single-post .tourvoz-article-image-text.is-image-right .tourvoz-article-image-text-copy {
		order: initial;
	}

	.single-post .tourvoz-article-image {
		width: 100%;
		margin-left: 0;
		transform: none;
	}

	.single-post .tourvoz-article-section {
		margin-bottom: 54px;
	}
}

@media (max-width: 600px) {

	.single-post .tourvoz-article-container {
		width: calc(100% - 32px);
	}

	.single-post .tourvoz-article-hero {
		padding: 46px 0 28px;
	}

	.single-post .tourvoz-article-title {
		font-size: 38px;
		line-height: 1.1;
	}

	.single-post .tourvoz-article-meta {
		margin-top: 16px;
	}

	.single-post .tourvoz-article-intro {
		margin: 0 auto 42px;
		font-size: 17px;
		line-height: 1.7;
	}

	.single-post .tourvoz-article-featured {
		margin: 6px 0 28px;
		border-radius: 13px;
		aspect-ratio: 4 / 3;
	}

	.single-post .tourvoz-article-section {
		margin-bottom: 46px;
	}

	.single-post .tourvoz-article-section > h2,
	.single-post .tourvoz-article-image-text-copy > h2 {
		margin-bottom: 16px;
		font-size: 27px;
	}

	.single-post .tourvoz-article-copy,
	.single-post .tourvoz-article-legacy {
		font-size: 16px;
		line-height: 1.8;
	}

	.single-post .tourvoz-article-image-text-media {
		border-radius: 13px;
	}

	.single-post .tourvoz-article-image img {
		border-radius: 13px;
	}

	.single-post .tourvoz-article-list li {
		padding: 14px 15px 14px 43px;
		font-size: 15px;
	}

	.single-post .tourvoz-article-list li::before {
		top: 13px;
		left: 16px;
	}

	.single-post .tourvoz-article-quote {
		padding: 30px 24px 27px;
	}

	.single-post .tourvoz-article-quote::before {
		left: 14px;
	}

	.single-post .tourvoz-article-quote p {
		font-size: 20px;
	}

	.single-post .tourvoz-article-faq-item summary {
		grid-template-columns: 1fr 22px;
		gap: 14px;
		min-height: 62px;
		padding: 15px 0;
		font-size: 15px;
	}

	.single-post .tourvoz-article-faq-answer {
		padding: 0 30px 18px 0;
	}

	.single-post .tourvoz-article-cta {
		margin: 22px 0 60px;
	}
}

/* =========================================================
   TourVoz — Blog Archive / Category
========================================================= */

.tourvoz-blog-archive {
	background: #fff;
	color: var(--tv-text);
}

.tourvoz-blog-container {
	width: min(calc(100% - 48px), 1180px);
	margin: 0 auto;
}

.tourvoz-blog-archive-hero {
	padding: 76px 0 58px;
	background: linear-gradient(180deg, #f8faf8 0%, #ffffff 100%);
}

.tourvoz-blog-archive-hero-inner {
	max-width: 780px;
}

.tourvoz-blog-eyebrow {
	margin-bottom: 12px;
	color: #946b38;
	font-size: 11px;
	font-weight: 750;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.tourvoz-blog-archive-hero h1 {
	margin: 0;
	color: var(--tv-heading);
	font-size: clamp(44px, 5.4vw, 66px);
	font-weight: 750;
	line-height: 1.08;
	letter-spacing: -.04em;
}

.tourvoz-blog-archive-hero p,
.tourvoz-blog-archive-description {
	max-width: 720px;
	margin: 20px 0 0;
	color: #59635f;
	font-size: 17px;
	line-height: 1.75;
}

.tourvoz-blog-archive-description p {
	margin: 0;
}

.tourvoz-blog-archive-content {
	padding: 18px 0 92px;
}

.tourvoz-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px 24px;
}

.tourvoz-blog-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 1px solid #e3e8e5;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 7px 26px rgba(24, 35, 32, .045);
	transition:
		transform .22s ease,
		box-shadow .22s ease,
		border-color .22s ease;
}

.tourvoz-blog-card:hover {
	transform: translateY(-3px);
	border-color: #d8dfdb;
	box-shadow: 0 16px 38px rgba(24, 35, 32, .08);
}

.tourvoz-blog-card-media {
	display: block;
	overflow: hidden;
	background: #f0f3f1;
	aspect-ratio: 4 / 3;
}

.tourvoz-blog-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

.tourvoz-blog-card:hover .tourvoz-blog-card-media img {
	transform: scale(1.025);
}

.tourvoz-blog-card-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(135deg, #edf1ef 0%, #f7f9f8 100%);
}

.tourvoz-blog-card-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 22px 22px 20px;
}

.tourvoz-blog-card-category {
	margin-bottom: 9px;
	color: #946b38;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .055em;
	text-transform: uppercase;
}

.tourvoz-blog-card-category a {
	color: inherit;
}

.tourvoz-blog-card-category a:hover,
.tourvoz-blog-card-category a:focus-visible {
	color: #1f4d45;
}

.tourvoz-blog-card-title {
	margin: 0;
	color: var(--tv-heading);
	font-size: 22px;
	font-weight: 720;
	line-height: 1.28;
	letter-spacing: -.02em;
}

.tourvoz-blog-card-title a {
	color: inherit;
}

.tourvoz-blog-card-title a:hover,
.tourvoz-blog-card-title a:focus-visible {
	color: #1f4d45;
}

.tourvoz-blog-card-excerpt {
	display: -webkit-box;
	margin: 13px 0 0;
	overflow: hidden;
	color: #626c68;
	font-size: 14px;
	line-height: 1.65;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.tourvoz-blog-card-footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 14px;
	margin-top: auto;
	padding-top: 21px;
}

.tourvoz-blog-card-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	color: #8a9390;
	font-size: 11px;
	line-height: 1.45;
}

.tourvoz-blog-card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex: 0 0 auto;
	color: #1f4d45;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.tourvoz-blog-card-link span {
	transition: transform .18s ease;
}

.tourvoz-blog-card-link:hover span,
.tourvoz-blog-card-link:focus-visible span {
	transform: translateX(2px);
}

/* Pagination */

.tourvoz-blog-pagination {
	margin-top: 52px;
}

.tourvoz-blog-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 7px;
}

.tourvoz-blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 11px;
	border: 1px solid #dfe5e2;
	border-radius: 9px;
	background: #fff;
	color: #55605c;
	font-size: 13px;
	font-weight: 650;
}

.tourvoz-blog-pagination .page-numbers:hover,
.tourvoz-blog-pagination .page-numbers:focus-visible,
.tourvoz-blog-pagination .page-numbers.current {
	border-color: #1f4d45;
	background: #1f4d45;
	color: #fff;
}

.tourvoz-blog-empty {
	padding: 64px 24px;
	border: 1px solid #e3e8e5;
	border-radius: 16px;
	background: #f8faf9;
	text-align: center;
}

.tourvoz-blog-empty h2 {
	margin: 0 0 8px;
	color: var(--tv-heading);
	font-size: 26px;
}

.tourvoz-blog-empty p {
	margin: 0;
	color: #6a7471;
}

/* Avoid duplicate footer CTA on Blog archive pages. */
.blog .tourvoz-site-footer-cta,
.category .tourvoz-site-footer-cta {
	display: none;
}

@media (max-width: 960px) {

	.tourvoz-blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tourvoz-blog-archive-hero {
		padding: 62px 0 48px;
	}
}

@media (max-width: 700px) {

	.tourvoz-blog-container {
		width: calc(100% - 32px);
	}

	.tourvoz-blog-archive-hero {
		padding: 46px 0 38px;
	}

	.tourvoz-blog-archive-hero h1 {
		font-size: 38px;
	}

	.tourvoz-blog-archive-hero p,
	.tourvoz-blog-archive-description {
		margin-top: 16px;
		font-size: 16px;
	}

	.tourvoz-blog-archive-content {
		padding: 8px 0 64px;
	}

	.tourvoz-blog-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.tourvoz-blog-card-body {
		padding: 19px 18px 18px;
	}

	.tourvoz-blog-card-title {
		font-size: 21px;
	}

	.tourvoz-blog-card-footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.tourvoz-blog-pagination {
		margin-top: 38px;
	}
}

/* =========================================================
   TourVoz — Single Post Related Articles
========================================================= */

.single-post .tourvoz-related-articles {
	margin-top: 84px;
	padding: 72px 0 76px;
	background: #f8faf9;
	border-top: 1px solid #edf1ef;
}

.single-post .tourvoz-related-articles-head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 30px;
}

.single-post .tourvoz-related-articles-head .tourvoz-blog-eyebrow {
	margin-bottom: 9px;
}

.single-post .tourvoz-related-articles-head h2 {
	margin: 0;
	color: var(--tv-heading);
	font-size: clamp(30px, 3.2vw, 42px);
	font-weight: 740;
	line-height: 1.14;
	letter-spacing: -.03em;
}

.single-post .tourvoz-related-articles + .tourvoz-article-cta {
	margin-top: 0;
}

@media (max-width: 960px) {

	.single-post .tourvoz-related-articles {
		margin-top: 68px;
		padding: 60px 0 64px;
	}
}

@media (max-width: 700px) {

	.single-post .tourvoz-related-articles {
		margin-top: 52px;
		padding: 48px 0 52px;
	}

	.single-post .tourvoz-related-articles-head {
		margin-bottom: 22px;
	}
}


/* =========================================================
   TourVoz — About Page
========================================================= */

.tourvoz-about {
	width: 100%;
	overflow: hidden;
}

.tourvoz-about-container {
	width: min(calc(100% - 48px), 1180px);
	margin: 0 auto;
}


/* Hero */

.tourvoz-about-hero {
	padding: clamp(82px, 9vw, 132px) 0 clamp(78px, 8vw, 116px);
	background: #f7f5f0;
}

.tourvoz-about-hero-inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.tourvoz-about-eyebrow {
	margin: 0 0 18px;
	color: #9a7448;
	font-size: 11px;
	font-weight: 750;
	letter-spacing: .14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.tourvoz-about-hero h1 {
	max-width: 860px;
	margin: 0 auto;
	color: var(--tv-heading);
	font-size: clamp(42px, 5.4vw, 68px);
	font-weight: 750;
	line-height: 1.06;
	letter-spacing: -.045em;
}

.tourvoz-about-intro {
	max-width: 720px;
	margin: 26px auto 0;
	color: #59635f;
	font-size: 18px;
	line-height: 1.75;
}


/* Story */

.tourvoz-about-story {
	padding: clamp(82px, 9vw, 126px) 0;
	background: #fff;
}

.tourvoz-about-story-grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	align-items: center;
	gap: clamp(56px, 7vw, 96px);
}

.tourvoz-about-story-grid.no-image {
	grid-template-columns: minmax(0, 760px);
	justify-content: center;
}

.tourvoz-about-story-content {
	min-width: 0;
}

.tourvoz-about-story-content h2 {
	margin: 0 0 24px;
	color: var(--tv-heading);
	font-size: clamp(34px, 4vw, 50px);
	font-weight: 730;
	line-height: 1.12;
	letter-spacing: -.035em;
}

.tourvoz-about-story-copy {
	max-width: 620px;
	color: #4f5956;
	font-size: 17px;
	line-height: 1.85;
}

.tourvoz-about-story-copy p {
	margin: 0 0 18px;
}

.tourvoz-about-story-copy p:last-child {
	margin-bottom: 0;
}

.tourvoz-about-story-media {
	overflow: hidden;
	background: #f2f3f1;
	border-radius: 22px;
	aspect-ratio: 4 / 3;
}

.tourvoz-about-story-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* Reused Why Travel With Us */

.tourvoz-about-why {
	margin-top: 0;
}


/* Reused Inquiry */

.tourvoz-about .tourvoz-general-inquiry {
	margin-top: 0;
}


/* About already contains a full inquiry section. */
body.page-about .tourvoz-site-footer-cta,
body.page-about-php .tourvoz-site-footer-cta {
	display: none;
}


/* Remove the legacy generic footer spacing on this system page. */
body.page-about > footer,
body.page-about-php > footer {
	margin-top: 0;
}


/* Responsive */

@media (max-width: 900px) {

	.tourvoz-about-container {
		width: min(calc(100% - 36px), 1180px);
	}

	.tourvoz-about-hero {
		padding: 76px 0 82px;
	}

	.tourvoz-about-story {
		padding: 78px 0;
	}

	.tourvoz-about-story-grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.tourvoz-about-story-content {
		max-width: 720px;
	}

	.tourvoz-about-story-media {
		width: 100%;
		max-height: 560px;
	}

}


@media (max-width: 600px) {

	.tourvoz-about-container {
		width: calc(100% - 32px);
	}

	.tourvoz-about-hero {
		padding: 58px 0 62px;
	}

	.tourvoz-about-eyebrow {
		margin-bottom: 14px;
	}

	.tourvoz-about-hero h1 {
		font-size: 38px;
		line-height: 1.08;
	}

	.tourvoz-about-intro {
		margin-top: 20px;
		font-size: 16px;
		line-height: 1.7;
	}

	.tourvoz-about-story {
		padding: 60px 0 66px;
	}

	.tourvoz-about-story-grid {
		gap: 32px;
	}

	.tourvoz-about-story-content h2 {
		margin-bottom: 18px;
		font-size: 32px;
	}

	.tourvoz-about-story-copy {
		font-size: 16px;
		line-height: 1.8;
	}

	.tourvoz-about-story-media {
		border-radius: 16px;
		aspect-ratio: 4 / 3;
	}

}


/* =========================================================
   Contact Page
   ========================================================= */

.tourvoz-contact-page {
	background: var(--tv-white);
	color: var(--tv-text);
}

.tourvoz-contact-container {
	width: min(calc(100% - 56px), var(--tv-container));
	margin: 0 auto;
}

.tourvoz-contact-hero {
	padding: 92px 0 88px;
	background: #f5f1e9;
	text-align: center;
}

.tourvoz-contact-hero-inner {
	max-width: 820px;
}

.tourvoz-contact-eyebrow,
.tourvoz-contact-form-eyebrow {
	margin: 0 0 14px;
	color: var(--tv-accent-dark);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.tourvoz-contact-hero h1 {
	max-width: 780px;
	margin: 0 auto;
	color: var(--tv-heading);
	font-size: clamp(42px, 5vw, 68px);
	line-height: 1.04;
	letter-spacing: -.04em;
}

.tourvoz-contact-intro {
	max-width: 690px;
	margin: 22px auto 0;
	color: var(--tv-muted);
	font-size: 18px;
	line-height: 1.75;
}

.tourvoz-contact-main {
	padding: 88px 0 100px;
}

.tourvoz-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
	gap: 72px;
	align-items: start;
}

.tourvoz-contact-details {
	padding-top: 12px;
}

.tourvoz-contact-details h2,
.tourvoz-contact-form h2 {
	margin: 0;
	color: var(--tv-heading);
	font-size: clamp(30px, 3vw, 42px);
	line-height: 1.12;
	letter-spacing: -.025em;
}

.tourvoz-contact-description,
.tourvoz-contact-form-description {
	margin: 18px 0 0;
	color: var(--tv-muted);
	font-size: 16px;
	line-height: 1.75;
}

.tourvoz-contact-list {
	margin-top: 38px;
	border-top: 1px solid var(--tv-border);
}

.tourvoz-contact-item {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	gap: 18px;
	padding: 19px 0;
	border-bottom: 1px solid var(--tv-border);
}

.tourvoz-contact-item span {
	color: var(--tv-muted);
	font-size: 13px;
	font-weight: 600;
}

.tourvoz-contact-item a,
.tourvoz-contact-item strong {
	color: var(--tv-heading);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
	text-decoration: none;
	word-break: break-word;
}

.tourvoz-contact-item a:hover {
	color: var(--tv-accent-dark);
}

.tourvoz-contact-form {
	padding: 42px;
	border: 1px solid var(--tv-border);
	border-radius: var(--tv-radius);
	background: var(--tv-soft);
}

.tourvoz-contact-form .tourvoz-inquiry-form {
	margin-top: 30px;
}

@media (max-width: 900px) {
	.tourvoz-contact-hero {
		padding: 74px 0 70px;
	}

	.tourvoz-contact-main {
		padding: 70px 0 82px;
	}

	.tourvoz-contact-grid {
		grid-template-columns: 1fr;
		gap: 52px;
	}

	.tourvoz-contact-details {
		padding-top: 0;
	}
}

@media (max-width: 600px) {
	.tourvoz-contact-container {
		width: min(calc(100% - 36px), var(--tv-container));
	}

	.tourvoz-contact-hero {
		padding: 58px 0 56px;
	}

	.tourvoz-contact-intro {
		font-size: 16px;
	}

	.tourvoz-contact-main {
		padding: 56px 0 68px;
	}

	.tourvoz-contact-grid {
		gap: 40px;
	}

	.tourvoz-contact-form {
		padding: 26px 20px;
	}

	.tourvoz-contact-item {
		grid-template-columns: 1fr;
		gap: 6px;
	}
}


/* =========================================================
   Legal Pages
   ========================================================= */

.tourvoz-legal-page {
	background: var(--tv-white);
	color: var(--tv-text);
}

.tourvoz-legal-container {
	width: min(calc(100% - 56px), 900px);
	margin: 0 auto;
}

.tourvoz-legal-hero {
	padding: 82px 0 72px;
	background: #f5f1e9;
	text-align: center;
}

.tourvoz-legal-eyebrow {
	margin: 0 0 12px;
	color: var(--tv-accent-dark);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.tourvoz-legal-hero h1 {
	margin: 0;
	color: var(--tv-heading);
	font-size: clamp(42px, 5vw, 64px);
	line-height: 1.06;
	letter-spacing: -.035em;
}

.tourvoz-legal-content-section {
	padding: 78px 0 96px;
}

.tourvoz-legal-content {
	max-width: 780px;
	margin: 0 auto;
	color: var(--tv-text);
	font-size: 16px;
	line-height: 1.8;
}

.tourvoz-legal-content > *:first-child {
	margin-top: 0;
}

.tourvoz-legal-content > *:last-child {
	margin-bottom: 0;
}

.tourvoz-legal-content h2,
.tourvoz-legal-content h3,
.tourvoz-legal-content h4 {
	color: var(--tv-heading);
	line-height: 1.25;
	letter-spacing: -.015em;
}

.tourvoz-legal-content h2 {
	margin: 42px 0 16px;
	font-size: 28px;
}

.tourvoz-legal-content h3 {
	margin: 34px 0 14px;
	font-size: 22px;
}

.tourvoz-legal-content h4 {
	margin: 28px 0 12px;
	font-size: 18px;
}

.tourvoz-legal-content p,
.tourvoz-legal-content ul,
.tourvoz-legal-content ol,
.tourvoz-legal-content blockquote {
	margin: 0 0 20px;
}

.tourvoz-legal-content ul,
.tourvoz-legal-content ol {
	padding-left: 24px;
}

.tourvoz-legal-content li + li {
	margin-top: 8px;
}

.tourvoz-legal-content a {
	color: var(--tv-accent-dark);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.tourvoz-legal-content strong {
	color: var(--tv-heading);
}

.tourvoz-legal-content blockquote {
	padding: 18px 22px;
	border-left: 3px solid var(--tv-accent);
	background: var(--tv-soft);
	color: var(--tv-muted);
}

.tourvoz-legal-content hr {
	margin: 38px 0;
	border: 0;
	border-top: 1px solid var(--tv-border);
}

@media (max-width: 600px) {
	.tourvoz-legal-container {
		width: min(calc(100% - 36px), 900px);
	}

	.tourvoz-legal-hero {
		padding: 58px 0 54px;
	}

	.tourvoz-legal-content-section {
		padding: 56px 0 70px;
	}

	.tourvoz-legal-content {
		font-size: 15px;
		line-height: 1.75;
	}

	.tourvoz-legal-content h2 {
		margin-top: 34px;
		font-size: 25px;
	}

	.tourvoz-legal-content h3 {
		margin-top: 28px;
		font-size: 20px;
	}
}


/* =========================================================
   TourVoz — Custom Page
   ========================================================= */

.tourvoz-custom-page {
	width: 100%;
	overflow: hidden;
	background: #fff;
	color: var(--tv-text);
}

.tourvoz-custom-page .tourvoz-article-container {
	width: min(calc(100% - 48px), 1180px);
	margin: 0 auto;
}

/* Hero */

.tourvoz-custom-page-hero {
	padding: 84px 0 54px;
	background: linear-gradient(180deg, #f8faf8 0%, #ffffff 100%);
}

.tourvoz-custom-page-hero-inner {
	max-width: 900px;
}

.tourvoz-custom-page-title {
	max-width: 860px;
	margin: 0;
	color: var(--tv-heading);
	font-size: clamp(44px, 5.5vw, 68px);
	font-weight: 750;
	line-height: 1.07;
	letter-spacing: -.045em;
}

.tourvoz-custom-page-intro {
	max-width: 760px;
	margin: 24px 0 0;
	color: #59635f;
	font-size: clamp(18px, 2vw, 21px);
	line-height: 1.75;
}

/* Featured image */

.tourvoz-custom-page-featured {
	width: 100%;
	margin: 8px 0 58px;
	overflow: hidden;
	border-radius: 20px;
	background: #f2f4f3;
	aspect-ratio: 16 / 8.6;
}

.tourvoz-custom-page-featured img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Main content */

.tourvoz-custom-page-content {
	width: min(100%, 860px);
	margin: 0 auto;
	padding: 64px 0 20px;
}

.tourvoz-custom-page-featured + .tourvoz-article-container .tourvoz-custom-page-content {
	padding-top: 14px;
}

.tourvoz-custom-page .tourvoz-article-section {
	margin: 0 0 64px;
}

.tourvoz-custom-page .tourvoz-article-section > h2,
.tourvoz-custom-page .tourvoz-article-image-text-copy > h2 {
	margin: 0 0 20px;
	color: var(--tv-heading);
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 720;
	line-height: 1.2;
	letter-spacing: -.025em;
}

.tourvoz-custom-page .tourvoz-article-copy {
	color: #3f4946;
	font-size: 17px;
	line-height: 1.88;
}

.tourvoz-custom-page .tourvoz-article-copy p {
	margin: 0 0 20px;
}

.tourvoz-custom-page .tourvoz-article-copy p:last-child {
	margin-bottom: 0;
}


/* Inline text links */

.single-post .tourvoz-article-copy a,
.tourvoz-custom-page .tourvoz-article-copy a {
	color: #1f4d45;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: color .18s ease, text-decoration-color .18s ease;
}

.single-post .tourvoz-article-copy a:hover,
.single-post .tourvoz-article-copy a:focus-visible,
.tourvoz-custom-page .tourvoz-article-copy a:hover,
.tourvoz-custom-page .tourvoz-article-copy a:focus-visible {
	color: #173b35;
	text-decoration-thickness: 2px;
}

.single-post .tourvoz-article-copy a:focus-visible,
.tourvoz-custom-page .tourvoz-article-copy a:focus-visible {
	outline: 2px solid rgba(31, 77, 69, .18);
	outline-offset: 3px;
	border-radius: 2px;
}

/* Image + text */

.tourvoz-custom-page .tourvoz-article-image-text {
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
	align-items: center;
	gap: 46px;
	width: min(1120px, calc(100vw - 48px));
	margin-left: 50%;
	transform: translateX(-50%);
}

.tourvoz-custom-page .tourvoz-article-image-text.is-image-right .tourvoz-article-image-text-media {
	order: 2;
}

.tourvoz-custom-page .tourvoz-article-image-text.is-image-right .tourvoz-article-image-text-copy {
	order: 1;
}

.tourvoz-custom-page .tourvoz-article-image-text-media {
	overflow: hidden;
	border-radius: 16px;
	background: #f2f4f3;
	aspect-ratio: 4 / 3;
}

.tourvoz-custom-page .tourvoz-article-image-text-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

.tourvoz-custom-page .tourvoz-article-image-text:hover .tourvoz-article-image-text-media img {
	transform: scale(1.018);
}

/* Standalone image */

.tourvoz-custom-page .tourvoz-article-image {
	width: min(1080px, calc(100vw - 48px));
	margin-left: 50%;
	transform: translateX(-50%);
}

.tourvoz-custom-page .tourvoz-article-image img {
	width: 100%;
	max-height: 720px;
	object-fit: cover;
	border-radius: 16px;
	background: #f2f4f3;
}

.tourvoz-custom-page .tourvoz-article-image figcaption {
	margin-top: 10px;
	color: #7d8784;
	font-size: 12px;
	line-height: 1.55;
	text-align: center;
}

/* Bullet list */

.tourvoz-custom-page .tourvoz-article-list ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tourvoz-custom-page .tourvoz-article-list li {
	position: relative;
	padding: 16px 18px 16px 48px;
	border: 1px solid #e4e9e6;
	border-radius: 11px;
	background: #f8faf9;
	color: #3b4542;
	font-size: 16px;
	line-height: 1.55;
}

.tourvoz-custom-page .tourvoz-article-list li::before {
	content: "✓";
	position: absolute;
	top: 15px;
	left: 19px;
	color: #946b38;
	font-weight: 800;
}

/* Quote */

.tourvoz-custom-page .tourvoz-article-quote {
	position: relative;
	padding: 34px 38px 32px;
	border: 1px solid #e1e6e3;
	border-left: 4px solid #b78b52;
	border-radius: 0 14px 14px 0;
	background: #f8f9f7;
}

.tourvoz-custom-page .tourvoz-article-quote::before {
	content: "“";
	position: absolute;
	top: 12px;
	left: 23px;
	color: rgba(183, 139, 82, .25);
	font-family: Georgia, serif;
	font-size: 54px;
	line-height: 1;
}

.tourvoz-custom-page .tourvoz-article-quote p {
	position: relative;
	margin: 0;
	color: #25302d;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(20px, 2.4vw, 26px);
	font-weight: 400;
	line-height: 1.55;
}

.tourvoz-custom-page .tourvoz-article-quote cite {
	display: block;
	margin-top: 17px;
	color: #7a8481;
	font-size: 13px;
	font-style: normal;
	font-weight: 650;
}

/* FAQ */

.tourvoz-custom-page .tourvoz-article-faq-list {
	border-top: 1px solid #dfe5e2;
}

.tourvoz-custom-page .tourvoz-article-faq-item {
	border-bottom: 1px solid #dfe5e2;
}

.tourvoz-custom-page .tourvoz-article-faq-item summary {
	display: grid;
	grid-template-columns: 1fr 24px;
	align-items: center;
	gap: 18px;
	min-height: 68px;
	padding: 17px 0;
	color: #26312e;
	font-size: 16px;
	font-weight: 650;
	line-height: 1.5;
	cursor: pointer;
	list-style: none;
}

.tourvoz-custom-page .tourvoz-article-faq-item summary::-webkit-details-marker {
	display: none;
}

.tourvoz-custom-page .tourvoz-article-faq-item summary::marker {
	content: "";
}

.tourvoz-custom-page .tourvoz-article-faq-icon {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
}

.tourvoz-custom-page .tourvoz-article-faq-icon::before,
.tourvoz-custom-page .tourvoz-article-faq-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: #66716e;
	transform: translate(-50%, -50%);
}

.tourvoz-custom-page .tourvoz-article-faq-icon::before {
	width: 14px;
	height: 1.5px;
}

.tourvoz-custom-page .tourvoz-article-faq-icon::after {
	width: 1.5px;
	height: 14px;
	transition: opacity .18s ease;
}

.tourvoz-custom-page .tourvoz-article-faq-item[open] .tourvoz-article-faq-icon::after {
	opacity: 0;
}

.tourvoz-custom-page .tourvoz-article-faq-answer {
	max-width: 760px;
	padding: 0 44px 20px 0;
	color: #5d6764;
	font-size: 15px;
	line-height: 1.75;
}

.tourvoz-custom-page .tourvoz-article-faq-answer p {
	margin: 0;
}

/* CTA */

.tourvoz-custom-page .tourvoz-article-cta {
	margin: 38px 0 88px;
}

.tourvoz-custom-page .tourvoz-article-cta-eyebrow {
	margin-bottom: 8px;
	color: #946b38;
	font-size: 11px;
	font-weight: 750;
	letter-spacing: .1em;
	text-transform: uppercase;
}

/*
 * Custom Page already renders its own inquiry CTA.
 * Generic page.php uses the default page template, while system pages use
 * their dedicated page-{slug}.php templates.
 */
.page-template-default .tourvoz-site-footer-cta {
	display: none;
}

/* Responsive */

@media (max-width: 900px) {

	.tourvoz-custom-page .tourvoz-article-container {
		width: min(calc(100% - 36px), 1180px);
	}

	.tourvoz-custom-page-hero {
		padding: 62px 0 44px;
	}

	.tourvoz-custom-page-featured {
		margin-bottom: 42px;
		border-radius: 16px;
	}

	.tourvoz-custom-page-content {
		padding-top: 48px;
	}

	.tourvoz-custom-page-featured + .tourvoz-article-container .tourvoz-custom-page-content {
		padding-top: 8px;
	}

	.tourvoz-custom-page .tourvoz-article-image-text {
		grid-template-columns: 1fr;
		gap: 26px;
		width: 100%;
		margin-left: 0;
		transform: none;
	}

	.tourvoz-custom-page .tourvoz-article-image-text.is-image-right .tourvoz-article-image-text-media,
	.tourvoz-custom-page .tourvoz-article-image-text.is-image-right .tourvoz-article-image-text-copy {
		order: initial;
	}

	.tourvoz-custom-page .tourvoz-article-image {
		width: 100%;
		margin-left: 0;
		transform: none;
	}

	.tourvoz-custom-page .tourvoz-article-section {
		margin-bottom: 54px;
	}
}

@media (max-width: 600px) {

	.tourvoz-custom-page .tourvoz-article-container {
		width: calc(100% - 32px);
	}

	.tourvoz-custom-page-hero {
		padding: 46px 0 36px;
	}

	.tourvoz-custom-page-title {
		font-size: 38px;
		line-height: 1.1;
	}

	.tourvoz-custom-page-intro {
		margin-top: 18px;
		font-size: 17px;
		line-height: 1.7;
	}

	.tourvoz-custom-page-featured {
		margin: 4px 0 30px;
		border-radius: 13px;
		aspect-ratio: 4 / 3;
	}

	.tourvoz-custom-page-content {
		padding-top: 38px;
	}

	.tourvoz-custom-page-featured + .tourvoz-article-container .tourvoz-custom-page-content {
		padding-top: 4px;
	}

	.tourvoz-custom-page .tourvoz-article-section {
		margin-bottom: 46px;
	}

	.tourvoz-custom-page .tourvoz-article-section > h2,
	.tourvoz-custom-page .tourvoz-article-image-text-copy > h2 {
		margin-bottom: 16px;
		font-size: 27px;
	}

	.tourvoz-custom-page .tourvoz-article-copy {
		font-size: 16px;
		line-height: 1.8;
	}

	.tourvoz-custom-page .tourvoz-article-image-text-media,
	.tourvoz-custom-page .tourvoz-article-image img {
		border-radius: 13px;
	}

	.tourvoz-custom-page .tourvoz-article-list li {
		padding: 14px 15px 14px 43px;
		font-size: 15px;
	}

	.tourvoz-custom-page .tourvoz-article-list li::before {
		top: 13px;
		left: 16px;
	}

	.tourvoz-custom-page .tourvoz-article-quote {
		padding: 30px 24px 27px;
	}

	.tourvoz-custom-page .tourvoz-article-quote::before {
		left: 14px;
	}

	.tourvoz-custom-page .tourvoz-article-quote p {
		font-size: 20px;
	}

	.tourvoz-custom-page .tourvoz-article-faq-item summary {
		grid-template-columns: 1fr 22px;
		gap: 14px;
		min-height: 62px;
		padding: 15px 0;
		font-size: 15px;
	}

	.tourvoz-custom-page .tourvoz-article-faq-answer {
		padding: 0 30px 18px 0;
	}

	.tourvoz-custom-page .tourvoz-article-cta {
		margin: 22px 0 60px;
	}
}

/* =========================================================
   TourVoz — Tours Hub / Tour Archive
========================================================= */

.tourvoz-tour-archive {
	background: #fff;
	color: var(--tv-text);
}

.tourvoz-tour-archive-container {
	width: min(calc(100% - 48px), var(--tv-container));
	margin: 0 auto;
}

.tourvoz-tour-archive-hero {
	padding: 84px 0 62px;
	background:
		linear-gradient(180deg, #f7f9f8 0%, #ffffff 100%);
	border-bottom: 1px solid #edf0ee;
}

.tourvoz-tour-archive-hero .tourvoz-tour-archive-container {
	max-width: 1180px;
}

.tourvoz-tour-archive-eyebrow,
.tourvoz-tour-archive-results-label {
	margin: 0 0 11px;
	color: var(--tv-accent-dark);
	font-size: 11px;
	font-weight: 750;
	line-height: 1.4;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.tourvoz-tour-archive-hero h1 {
	max-width: 800px;
	margin: 0;
	color: var(--tv-heading);
	font-size: clamp(44px, 6vw, 70px);
	font-weight: 750;
	line-height: 1.05;
	letter-spacing: -.04em;
}

.tourvoz-tour-archive-intro {
	max-width: 720px;
	margin: 22px 0 0;
	color: var(--tv-muted);
	font-size: 18px;
	line-height: 1.75;
}

.tourvoz-tour-archive-filter-section {
	position: relative;
	z-index: 2;
	padding: 30px 0;
	background: #fff;
	border-bottom: 1px solid #edf0ee;
}

.tourvoz-tour-archive-filters {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
	gap: 14px;
	align-items: end;
}

.tourvoz-tour-archive-filter-field {
	min-width: 0;
}

.tourvoz-tour-archive-filter-field label {
	display: block;
	margin: 0 0 7px;
	color: #303a37;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
}

.tourvoz-tour-archive-filter-field select {
	width: 100%;
	min-height: 46px;
	padding: 0 38px 0 13px;
	color: #26312e;
	background-color: #fff;
	border: 1px solid #d8dfdc;
	border-radius: 9px;
	font: inherit;
	font-size: 14px;
	box-shadow: none;
}

.tourvoz-tour-archive-filter-field select:focus {
	border-color: #8f765f;
	outline: 0;
	box-shadow: 0 0 0 3px rgba(183, 139, 82, .12);
}

.tourvoz-tour-archive-filter-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 46px;
}

.tourvoz-tour-archive-filter-submit,
.tourvoz-tour-archive-filter-reset {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border-radius: 9px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.tourvoz-tour-archive-filter-submit {
	color: #fff;
	background: #1f4d45;
	border: 1px solid #1f4d45;
	cursor: pointer;
}

.tourvoz-tour-archive-filter-submit:hover,
.tourvoz-tour-archive-filter-submit:focus-visible {
	background: #173b35;
	border-color: #173b35;
}

.tourvoz-tour-archive-filter-reset {
	color: #5f6966;
	background: #fff;
	border: 1px solid #d8dfdc;
}

.tourvoz-tour-archive-filter-reset:hover,
.tourvoz-tour-archive-filter-reset:focus-visible {
	color: #1f4d45;
	border-color: #aebbb7;
	background: #f7f9f8;
}

.tourvoz-tour-archive-results {
	padding: 82px 0 104px;
	background: #fbfaf7;
}

.tourvoz-tour-archive-results-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 34px;
}

.tourvoz-tour-archive-results-head h2 {
	margin: 0;
	color: var(--tv-heading);
	font-size: clamp(30px, 3.4vw, 42px);
	font-weight: 750;
	line-height: 1.12;
	letter-spacing: -.03em;
}

.tourvoz-tour-archive-count {
	flex: 0 0 auto;
	margin: 0 0 3px;
	color: var(--tv-muted);
	font-size: 14px;
	font-weight: 600;
}

.tourvoz-tour-archive-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: none;
	margin: 0;
}

.tourvoz-tour-archive-pagination {
	margin-top: 48px;
}

.tourvoz-tour-archive-pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tourvoz-tour-archive-pagination .page-numbers li {
	margin: 0;
}

.tourvoz-tour-archive-pagination a.page-numbers,
.tourvoz-tour-archive-pagination span.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 0 12px;
	color: #38423f;
	background: #fff;
	border: 1px solid #dde3e0;
	border-radius: 9px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

.tourvoz-tour-archive-pagination a.page-numbers:hover,
.tourvoz-tour-archive-pagination a.page-numbers:focus-visible {
	color: #1f4d45;
	border-color: #a9bbb5;
	background: #f6f9f7;
}

.tourvoz-tour-archive-pagination span.page-numbers.current {
	color: #fff;
	background: #1f4d45;
	border-color: #1f4d45;
}

.tourvoz-tour-archive-empty {
	padding: 58px 30px;
	text-align: center;
	background: #fff;
	border: 1px solid var(--tv-border);
	border-radius: var(--tv-radius);
}

.tourvoz-tour-archive-empty h2 {
	margin: 0 0 10px;
	color: var(--tv-heading);
	font-size: 26px;
}

.tourvoz-tour-archive-empty p {
	margin: 0 0 22px;
	color: var(--tv-muted);
}

.tourvoz-tour-archive-empty a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 17px;
	color: #fff;
	background: #1f4d45;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
}

.tourvoz-tour-archive-cta-section {
	background: #fff;
}

@media (max-width: 980px) {
	.tourvoz-tour-archive-filters {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tourvoz-tour-archive-filter-actions {
		align-self: end;
	}

	.tourvoz-tour-archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.tourvoz-tour-archive-container {
		width: calc(100% - 36px);
	}

	.tourvoz-tour-archive-hero {
		padding: 60px 0 46px;
	}

	.tourvoz-tour-archive-hero h1 {
		font-size: 42px;
	}

	.tourvoz-tour-archive-intro {
		margin-top: 17px;
		font-size: 16px;
		line-height: 1.7;
	}

	.tourvoz-tour-archive-filter-section {
		padding: 22px 0;
	}

	.tourvoz-tour-archive-filters {
		grid-template-columns: 1fr;
		gap: 13px;
	}

	.tourvoz-tour-archive-filter-actions {
		align-items: stretch;
	}

	.tourvoz-tour-archive-filter-submit {
		flex: 1 1 auto;
	}

	.tourvoz-tour-archive-results {
		padding: 62px 0 76px;
	}

	.tourvoz-tour-archive-results-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		margin-bottom: 26px;
	}

	.tourvoz-tour-archive-count {
		margin: 0;
	}

	.tourvoz-tour-archive-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.tourvoz-tour-archive-pagination {
		margin-top: 36px;
	}
}

/* =========================================================
   TourVoz — Destinations Hub / System Page
   ========================================================= */

.tourvoz-destinations-archive {
    background: var(--tv-white);
    color: var(--tv-text);
}

.tourvoz-destinations-archive-hero {
    padding: 88px 0 78px;
    border-bottom: 1px solid var(--tv-border);
    background: var(--tv-soft);
}

.tourvoz-destinations-archive-hero-inner {
    max-width: 780px;
}

.tourvoz-destinations-archive-hero h1 {
    margin: 10px 0 18px;
    color: var(--tv-heading);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -.035em;
}

.tourvoz-destinations-archive-hero-description {
    max-width: 720px;
    margin: 0;
    color: var(--tv-muted);
    font-size: 18px;
    line-height: 1.75;
}

.tourvoz-destinations-archive-content {
    padding: 86px 0 96px;
}

.tourvoz-destinations-archive-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.tourvoz-destinations-archive-heading h2 {
    margin: 8px 0 0;
    color: var(--tv-heading);
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.08;
    letter-spacing: -.025em;
}

.tourvoz-destinations-archive-count {
    flex: 0 0 auto;
    margin: 0 0 4px;
    color: var(--tv-muted);
    font-size: 14px;
    font-weight: 650;
}

.tourvoz-destinations-archive-empty {
    padding: 58px 32px;
    border: 1px solid var(--tv-border);
    border-radius: var(--tv-radius);
    background: var(--tv-soft);
    text-align: center;
}

.tourvoz-destinations-archive-empty h2 {
    margin: 0 0 10px;
    color: var(--tv-heading);
    font-size: 28px;
}

.tourvoz-destinations-archive-empty p {
    margin: 0;
    color: var(--tv-muted);
}

@media (max-width: 760px) {
    .tourvoz-destinations-archive-hero {
        padding: 64px 0 58px;
    }

    .tourvoz-destinations-archive-hero h1 {
        font-size: clamp(38px, 12vw, 52px);
    }

    .tourvoz-destinations-archive-hero-description {
        font-size: 16px;
    }

    .tourvoz-destinations-archive-content {
        padding: 64px 0 74px;
    }

    .tourvoz-destinations-archive-heading {
        display: block;
        margin-bottom: 26px;
    }

    .tourvoz-destinations-archive-count {
        margin-top: 12px;
    }
}

