:root {
	--vip-ink: #000000;
	--vip-charcoal: #1c1c1c;
	--vip-muted: #625949;
	--vip-line: #e6dac0;
	--vip-bg: #fefefe;
	--vip-sand: #f4e9c8;
	--vip-surface: #ffffff;
	--vip-surface-2: #f4e9c8;
	--vip-teal: #bf9201;
	--vip-teal-dark: #8a6700;
	--vip-gold: #bf9201;
	--vip-deep-gold: #8a6700;
	--vip-coral: #1c1c1c;
	--vip-shadow: 0 24px 60px rgba(0, 0, 0, .12);
	--vip-radius: 14px;
	--vip-container: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--vip-bg);
	color: var(--vip-ink);
	font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

body.nav-open {
	overflow: hidden;
}

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

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

a:hover {
	color: var(--vip-deep-gold);
}

button,
input,
select,
textarea {
	font: inherit;
}

.container {
	width: min(calc(100% - 40px), var(--vip-container));
	margin-inline: auto;
}

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

.skip-link:focus {
	z-index: 10000;
	top: 10px;
	left: 10px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	background: var(--vip-ink);
	color: #fff;
	clip: auto;
}

.button,
button.button,
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 22px;
	border: 1px solid var(--vip-gold);
	border-radius: var(--vip-radius);
	background: var(--vip-gold);
	color: var(--vip-ink);
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 16px 34px rgba(191, 146, 1, .2);
	transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.button:hover,
input[type="submit"]:hover {
	transform: translateY(-1px);
	background: var(--vip-deep-gold);
	border-color: var(--vip-deep-gold);
	color: #fff;
}

.button-ghost {
	background: rgba(255, 255, 255, .08);
	border-color: rgba(255, 255, 255, .55);
	box-shadow: none;
}

.button-light {
	background: #fff;
	border-color: #fff;
	color: var(--vip-ink);
}

.text-link {
	display: inline-flex;
	align-items: center;
	color: var(--vip-deep-gold);
	font-weight: 800;
}

.text-link::after {
	content: "";
	width: 24px;
	height: 1px;
	margin-left: 9px;
	background: currentColor;
	transition: width .2s ease;
}

.text-link:hover::after {
	width: 34px;
}

.site-header {
	position: sticky;
	z-index: 50;
	top: 0;
	background: rgba(255, 255, 255, .93);
	border-bottom: 1px solid rgba(230, 218, 192, .72);
	backdrop-filter: blur(16px);
}

.topbar {
	background: var(--vip-ink);
	color: rgba(255, 255, 255, .8);
	font-size: 13px;
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 36px;
	gap: 18px;
}

.topbar-links {
	display: flex;
	gap: 20px;
}

.topbar a:hover {
	color: #fff;
}

.nav-shell {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	min-height: 82px;
	gap: 24px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--vip-ink);
	color: #fff;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-weight: 700;
	letter-spacing: .03em;
}

.brand-name {
	display: grid;
	line-height: 1.15;
}

.brand-name strong {
	font-size: 18px;
}

.brand-name small {
	color: var(--vip-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .12em;
}

.custom-logo-link img {
	max-width: 220px;
	max-height: 68px;
	object-fit: contain;
}

.primary-navigation {
	justify-self: center;
}

.primary-navigation ul,
.footer-grid ul {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation a {
	display: block;
	padding: 10px 12px;
	border-radius: var(--vip-radius);
	color: #22363f;
	font-size: 14px;
	font-weight: 800;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
	background: var(--vip-surface-2);
	color: var(--vip-ink);
}

.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 16px;
	border-radius: var(--vip-radius);
	background: var(--vip-gold);
	color: var(--vip-ink);
	font-weight: 800;
	white-space: nowrap;
}

.header-cta:hover {
	background: #ab7630;
	color: #fff;
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--vip-line);
	border-radius: var(--vip-radius);
	background: #fff;
}

.nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--vip-ink);
}

.hero {
	min-height: 660px;
	background-position: center;
	background-size: cover;
	color: #fff;
}

.hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 680px) 270px;
	align-items: end;
	justify-content: space-between;
	min-height: 660px;
	padding: 120px 0 112px;
	gap: 48px;
}

.eyebrow {
	margin: 0 0 10px;
	color: var(--vip-gold);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .18em;
	text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
	margin-top: 0;
	color: inherit;
	line-height: 1.05;
}

h1,
h2 {
	font-family: "Cormorant Garamond", Georgia, serif;
}

.hero h1 {
	max-width: 760px;
	margin-bottom: 20px;
	font-size: clamp(48px, 8vw, 92px);
}

.hero-copy > p:not(.eyebrow) {
	max-width: 610px;
	margin: 0 0 28px;
	color: rgba(255, 255, 255, .86);
	font-size: 19px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero-stats {
	display: grid;
	gap: 12px;
}

.hero-stats div {
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: var(--vip-radius);
	background: rgba(255, 255, 255, .13);
	backdrop-filter: blur(14px);
}

.hero-stats strong,
.hero-stats span {
	display: block;
}

.hero-stats strong {
	font-size: 24px;
	line-height: 1.1;
}

.hero-stats span {
	color: rgba(255, 255, 255, .82);
	font-size: 13px;
	font-weight: 700;
}

.search-wrap {
	position: relative;
	z-index: 3;
	margin-top: -64px;
}

.trip-search {
	padding: 12px;
	border: 1px solid rgba(220, 229, 231, .9);
	border-radius: var(--vip-radius);
	background: #fff;
	box-shadow: var(--vip-shadow);
}

.search-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 4px 4px 12px;
}

.search-tabs button {
	min-height: 38px;
	padding: 8px 13px;
	border: 1px solid transparent;
	border-radius: var(--vip-radius);
	background: transparent;
	color: var(--vip-muted);
	font-weight: 800;
	cursor: pointer;
}

.search-tabs button.active {
	background: var(--vip-surface-2);
	color: var(--vip-ink);
}

.search-grid {
	display: grid;
	grid-template-columns: minmax(220px, 1.3fr) repeat(2, minmax(150px, .7fr)) auto;
	gap: 10px;
}

.search-grid label {
	display: grid;
	gap: 5px;
	padding: 10px 12px;
	border: 1px solid var(--vip-line);
	border-radius: var(--vip-radius);
	background: #fff;
}

.search-grid span {
	color: var(--vip-muted);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.search-grid input,
.search-grid select,
.content-wrap input,
.content-wrap textarea,
.content-wrap select,
.empty-state input {
	width: 100%;
	min-height: 36px;
	border: 0;
	background: transparent;
	color: var(--vip-ink);
	outline: 0;
}

.search-grid .button {
	min-width: 132px;
	min-height: 68px;
}

.section {
	padding: 92px 0;
}

.section-soft {
	background: #fff;
}

.section-sand {
	background: var(--vip-sand);
}

.section-dark {
	background: var(--vip-ink);
	color: #fff;
}

.section-heading {
	max-width: 710px;
}

.section-heading h2 {
	margin-bottom: 14px;
	font-size: clamp(34px, 5vw, 58px);
}

.section-heading p:not(.eyebrow) {
	margin: 0;
	color: var(--vip-muted);
	font-size: 18px;
}

.section-dark .section-heading p,
.section-dark p {
	color: rgba(255, 255, 255, .76);
}

.section-row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 34px;
}

.split-feature {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
	align-items: center;
	gap: 58px;
}

.split-feature img {
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: var(--vip-radius);
	object-fit: cover;
	box-shadow: var(--vip-shadow);
}

.benefit-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 32px;
}

.benefit-grid div {
	padding: 20px;
	border: 1px solid var(--vip-line);
	border-radius: var(--vip-radius);
	background: rgba(254, 254, 254, .72);
}

.benefit-grid strong,
.benefit-grid span {
	display: block;
}

.benefit-grid strong {
	margin-bottom: 6px;
}

.benefit-grid span {
	color: var(--vip-muted);
	font-size: 14px;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 32px;
}

.category-grid a {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: end;
	min-height: 340px;
	overflow: hidden;
	padding: 22px;
	border-radius: var(--vip-radius);
	background-position: center;
	background-size: cover;
	color: #fff;
	isolation: isolate;
}

.category-grid a::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(16, 35, 44, .08), rgba(16, 35, 44, .78));
}

.category-grid span {
	color: #f3c06b;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.category-grid strong {
	margin-top: 8px;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 25px;
	line-height: 1.12;
}

.category-grid.service-grid .service-card {
	position: relative;
	display: grid;
	grid-template-rows: 210px 1fr;
	min-height: 0;
	overflow: hidden;
	padding: 0;
	border: 1px solid var(--vip-line);
	border-radius: var(--vip-radius);
	background: var(--vip-surface);
	color: var(--vip-ink);
	box-shadow: 0 18px 44px rgba(0, 0, 0, .08);
}

.category-grid.service-grid .service-card::before {
	display: none;
}

.service-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card .golden-horizon {
	position: absolute;
	top: 176px;
	left: 18px;
	width: 112px;
	height: 28px;
	border-top: 4px solid var(--vip-gold);
	border-radius: 50% 50% 0 0;
	transform: rotate(-4deg);
}

.service-card-body {
	position: relative;
	display: grid;
	align-content: start;
	min-height: 230px;
	padding: 30px 22px 24px;
	background: linear-gradient(180deg, #fff 0%, var(--vip-sand) 100%);
}

.category-grid .service-card-body span {
	color: var(--vip-deep-gold);
}

.service-card-body h3 {
	margin: 6px 0 10px;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 31px;
	line-height: 1.04;
}

.service-card-body p {
	margin: 0;
	color: var(--vip-muted);
	font-size: 14px;
	line-height: 1.6;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.travel-card {
	overflow: hidden;
	border: 1px solid var(--vip-line);
	border-radius: var(--vip-radius);
	background: #fff;
	box-shadow: 0 14px 38px rgba(16, 35, 44, .06);
	transition: transform .2s ease, box-shadow .2s ease;
}

.travel-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--vip-shadow);
}

.travel-card-media {
	position: relative;
	display: block;
	aspect-ratio: 1.25 / 1;
	overflow: hidden;
	background: var(--vip-surface-2);
}

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

.travel-card:hover img {
	transform: scale(1.04);
}

.travel-card-media span {
	position: absolute;
	left: 14px;
	bottom: 14px;
	padding: 7px 10px;
	border-radius: var(--vip-radius);
	background: rgba(255, 255, 255, .9);
	color: var(--vip-ink);
	font-size: 12px;
	font-weight: 900;
}

.travel-card-body {
	padding: 22px;
}

.travel-card h3 {
	margin-bottom: 10px;
	font-size: 24px;
}

.travel-card p {
	margin: 0 0 18px;
	color: var(--vip-muted);
}

.vip-journey-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.vip-journey-columns-1 {
	grid-template-columns: 1fr;
}

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

.vip-journey-columns-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vip-journey-columns-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vip-journey-card {
	display: grid;
	grid-template-rows: auto 1fr;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
}

.vip-journey-card-media {
	position: relative;
	display: block;
	aspect-ratio: 2.08 / 1;
	overflow: hidden;
	background: var(--vip-sand);
}

.vip-journey-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.vip-journey-card:hover .vip-journey-card-media img {
	transform: scale(1.04);
}

.vip-journey-card-badges {
	position: absolute;
	inset: 24px 28px auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	pointer-events: none;
}

.vip-journey-badge {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 8px 16px;
	border-radius: 999px;
	color: #fff;
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	box-shadow: 0 12px 24px rgba(0, 0, 0, .15);
}

.vip-journey-badge-featured {
	background: #31563b;
}

.vip-journey-badge-price {
	margin-left: auto;
	background: var(--vip-gold);
}

.vip-journey-card-body {
	display: grid;
	grid-template-rows: auto auto 1fr auto;
	min-height: 360px;
	padding: 24px 24px 22px;
}

.vip-journey-card h3 {
	margin: 0 0 24px;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(25px, 2.2vw, 33px);
	font-weight: 700;
	line-height: 1.08;
}

.vip-journey-card h3 a:hover {
	color: var(--vip-deep-gold);
}

.vip-journey-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 22px;
}

.vip-journey-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 34px;
	padding: 7px 13px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
}

.vip-journey-chip .dashicons {
	width: 16px;
	height: 16px;
	font-size: 16px;
}

.vip-journey-chip-time {
	background: #dfe7e1;
	color: #415642;
}

.vip-journey-chip-location {
	background: #f6edd7;
	color: #c0942f;
}

.vip-journey-chip-type {
	background: #dcecf1;
	color: #04758b;
}

.vip-journey-card p {
	margin: 0 0 24px;
	color: #5f6368;
	font-size: 20px;
	line-height: 1.42;
}

.vip-journey-card-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 68px;
	padding: 16px 24px;
	border-radius: 999px;
	background: var(--vip-gold);
	color: #fff;
	font-size: 21px;
	font-weight: 800;
	line-height: 1;
	transition: background .2s ease, transform .2s ease;
}

.vip-journey-card-button:hover {
	transform: translateY(-1px);
	background: var(--vip-deep-gold);
	color: #fff;
}

.cta-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.cta-panel h2 {
	max-width: 760px;
	margin-bottom: 12px;
	font-size: clamp(34px, 5vw, 58px);
}

.cta-panel p:not(.eyebrow) {
	max-width: 700px;
	margin-bottom: 0;
}

.page-hero {
	display: flex;
	align-items: end;
	min-height: 460px;
	padding: 150px 0 76px;
	background-color: var(--vip-ink);
	background-position: center;
	background-size: cover;
	color: #fff;
}

.page-hero.service-hero {
	min-height: 520px;
}

.elementor-full-width-template {
	background: var(--vip-bg);
}

.vip-elementor-hero {
	display: flex;
	align-items: end;
	min-height: 680px;
	padding: 150px 0 94px;
	background-position: center;
	background-size: cover;
	color: #fff;
}

.vip-elementor-hero.service-hero {
	min-height: 520px;
}

.vip-elementor-hero h1 {
	max-width: 860px;
	margin-bottom: 20px;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(48px, 8vw, 92px);
	line-height: 1.02;
}

.vip-elementor-hero p:not(.eyebrow) {
	max-width: 650px;
	margin: 0 0 28px;
	color: rgba(255, 255, 255, .86);
	font-size: 19px;
}

.vip-elementor-intro {
	padding: 92px 0;
}

.vip-elementor-intro h2 {
	margin-bottom: 14px;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(34px, 5vw, 58px);
	line-height: 1.05;
}

.vip-elementor-intro p:not(.eyebrow) {
	color: var(--vip-muted);
	font-size: 18px;
}

.vip-golden-panel {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.vip-golden-panel strong {
	min-height: 118px;
	padding: 22px;
	border: 1px solid rgba(138, 103, 0, .25);
	border-radius: var(--vip-radius);
	background: #fff;
	box-shadow: 0 14px 38px rgba(0, 0, 0, .06);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 27px;
}

.vip-elementor-shortcode-section {
	padding: 92px 0;
}

.vip-elementor-cta {
	padding: 82px 0;
	background: var(--vip-ink);
	color: #fff;
}

.vip-elementor-cta h2 {
	font-family: "Cormorant Garamond", Georgia, serif;
}

.vip-elementor-cta p:not(.eyebrow) {
	color: rgba(255, 255, 255, .76);
}

.page-hero.compact {
	min-height: auto;
	padding: 84px 0 54px;
	background: var(--vip-ink);
}

.page-hero h1 {
	max-width: 850px;
	margin-bottom: 12px;
	font-size: clamp(42px, 6vw, 74px);
}

.page-hero p:not(.eyebrow) {
	max-width: 700px;
	color: rgba(255, 255, 255, .76);
}

.meta-line {
	font-weight: 700;
}

.content-wrap {
	max-width: 820px;
}

.content-wrap > *:first-child {
	margin-top: 0;
}

.content-wrap h2,
.content-wrap h3 {
	margin-top: 34px;
	line-height: 1.18;
}

.content-wrap a {
	color: var(--vip-deep-gold);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.featured-image {
	margin-bottom: 34px;
}

.featured-image img {
	width: 100%;
	border-radius: var(--vip-radius);
}

.single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	align-items: start;
	gap: 48px;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	align-items: start;
	gap: 48px;
}

.contact-form {
	display: grid;
	gap: 14px;
	margin-top: 28px;
	padding: 24px;
	border: 1px solid var(--vip-line);
	border-radius: var(--vip-radius);
	background: #fff;
	box-shadow: 0 14px 38px rgba(16, 35, 44, .06);
}

.contact-form label {
	display: grid;
	gap: 7px;
}

.contact-form span {
	color: var(--vip-muted);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 1px solid var(--vip-line);
	border-radius: var(--vip-radius);
	background: #fff;
	color: var(--vip-ink);
}

.contact-form input {
	min-height: 48px;
	padding: 0 13px;
}

.contact-form textarea {
	padding: 13px;
	resize: vertical;
}

.contact-list {
	display: grid;
	gap: 14px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.contact-list li {
	display: grid;
	gap: 4px;
}

.contact-list strong {
	color: var(--vip-ink);
}

.booking-aside {
	position: sticky;
	top: 128px;
	padding: 26px;
	border: 1px solid var(--vip-line);
	border-radius: var(--vip-radius);
	background: #fff;
	box-shadow: var(--vip-shadow);
}

.booking-aside h2 {
	margin-bottom: 10px;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 30px;
}

.booking-aside p,
.booking-aside li {
	color: var(--vip-muted);
}

.booking-aside ul {
	padding-left: 19px;
	margin: 20px 0 0;
}

.results-grid {
	margin-top: 32px;
}

.empty-state {
	max-width: 640px;
	padding: 36px;
	border: 1px solid var(--vip-line);
	border-radius: var(--vip-radius);
	background: #fff;
}

.empty-state h2 {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 36px;
}

.empty-state form,
.search-form {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.search-form label {
	flex: 1;
}

.search-form input[type="search"] {
	width: 100%;
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid var(--vip-line);
	border-radius: var(--vip-radius);
	background: #fff;
}

.navigation.pagination {
	margin-top: 34px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--vip-line);
	border-radius: var(--vip-radius);
	background: #fff;
	font-weight: 800;
}

.page-numbers.current {
	background: var(--vip-gold);
	border-color: var(--vip-gold);
	color: var(--vip-ink);
}

.site-footer {
	background: var(--vip-ink);
	color: #fff;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr .75fr .9fr .9fr;
	gap: 38px;
	padding: 72px 0 46px;
}

.footer-brand h2,
.footer-title {
	margin: 0 0 14px;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 28px;
}

.footer-brand p,
.footer-contact,
.footer-widget,
.footer-bottom {
	color: rgba(255, 255, 255, .72);
}

.footer-grid ul {
	display: grid;
	align-items: start;
	gap: 9px;
}

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

.footer-bottom {
	padding: 22px 0;
	border-top: 1px solid rgba(255, 255, 255, .12);
	font-size: 14px;
}

.footer-bottom p {
	margin: 0;
}

.tour-single-page {
	background: #f7f1e6;
	padding: 28px 0 70px;
}

.tour-breadcrumb {
	margin-bottom: 18px;
	color: #6f6a60;
	font-size: 13px;
}

.tour-single-hero {
	display: flex;
	align-items: end;
	min-height: 380px;
	padding: 34px;
	border-radius: 16px;
	background-position: center;
	background-size: cover;
	color: #fff;
	box-shadow: 0 18px 42px rgba(0, 0, 0, .12);
}

.tour-single-hero h1 {
	max-width: 820px;
	margin: 0 0 12px;
	font-family: Montserrat, system-ui, sans-serif;
	font-size: clamp(32px, 5vw, 44px);
	font-weight: 800;
	line-height: 1.08;
}

.tour-hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tour-hero-tags span {
	padding: 8px 13px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 999px;
	background: rgba(0, 0, 0, .42);
	font-size: 12px;
	font-weight: 700;
}

.tour-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	align-items: start;
	gap: 22px;
	margin-top: 18px;
}

.tour-main {
	display: grid;
	gap: 18px;
}

.tour-tabs,
.tour-panel,
.tour-booking-card {
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(0, 0, 0, .05);
}

.tour-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 10px;
}

.tour-tabs a {
	padding: 9px 13px;
	border: 1px solid var(--vip-line);
	border-radius: 999px;
	color: #173052;
	font-size: 12px;
	font-weight: 800;
}

.tour-tabs a:first-child,
.tour-tabs a:hover {
	background: #173052;
	border-color: #173052;
	color: #fff;
}

.tour-panel {
	padding: 26px;
}

.tour-panel h2 {
	margin-bottom: 18px;
	font-family: Montserrat, system-ui, sans-serif;
	font-size: 22px;
	font-weight: 800;
	color: #27334a;
}

.tour-panel p,
.tour-panel li,
.tour-booking-card dd,
.tour-booking-card p {
	color: #60656c;
	font-size: 15px;
	line-height: 1.75;
}

.tour-accordion {
	display: grid;
	gap: 8px;
}

.tour-accordion details,
.tour-faq {
	overflow: hidden;
	border: 1px solid #d9e3e9;
	border-radius: 22px;
	background: #fff;
}

.tour-accordion summary,
.tour-faq summary {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px 18px;
	background: #0f5473;
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.15;
	cursor: pointer;
}

.tour-accordion summary span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--vip-gold);
	color: #173052;
}

.tour-accordion details p,
.tour-faq p,
.tour-accordion-content,
.tour-faq-content {
	margin: 0;
	padding: 20px 24px;
}

.tour-faq {
	margin-bottom: 10px;
	border-radius: 10px;
}

.tour-faq summary {
	justify-content: space-between;
	background: #fff;
	color: #27334a;
	font-size: 15px;
}

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

.tour-included-grid > div {
	padding: 18px;
	border: 1px solid var(--vip-line);
	border-radius: 10px;
}

.tour-included-grid h3 {
	margin: 0 0 10px;
	font-size: 17px;
}

.tour-included-grid div:first-child h3 {
	color: #2e8a43;
}

.tour-included-grid div:last-child h3 {
	color: #b03a2f;
}

.tour-gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.tour-gallery img {
	width: 100%;
	max-height: 430px;
	border-radius: 12px;
	object-fit: cover;
}

.tour-video iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	border: 0;
	border-radius: 12px;
}

.tour-share {
	display: flex;
	gap: 10px;
}

.tour-share a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid var(--vip-line);
	border-radius: 50%;
	background: #fff;
	color: #173052;
	font-size: 12px;
	font-weight: 800;
}

.tour-booking-card {
	position: sticky;
	top: 130px;
	padding: 22px;
}

.tour-booking-card h2 {
	margin: 0 0 16px;
	font-family: Montserrat, system-ui, sans-serif;
	font-size: 22px;
	font-weight: 800;
	color: #27334a;
}

.tour-price {
	padding: 14px 16px;
	margin-bottom: 18px;
	border: 1px solid var(--vip-line);
	border-radius: 10px;
}

.tour-price span,
.tour-booking-card dt {
	display: block;
	margin-bottom: 4px;
	color: #97928a;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

.tour-price strong {
	color: #173052;
	font-size: 26px;
	font-weight: 900;
}

.tour-booking-card dl {
	margin: 0 0 18px;
}

.tour-booking-card dd {
	margin: 0 0 14px;
	font-weight: 800;
	color: #343b48;
}

.tour-availability-form {
	display: grid;
	gap: 12px;
}

.tour-availability-form div {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.tour-availability-form input {
	width: 100%;
	min-height: 42px;
	padding: 0 12px;
	border: 1px solid var(--vip-line);
	border-radius: 8px;
	background: #fff;
}

.tour-availability-form button {
	min-height: 50px;
	border: 0;
	border-radius: 8px;
	background: var(--vip-gold);
	color: #fff;
	font-weight: 800;
	cursor: pointer;
}

@media (max-width: 1020px) {
	.nav-shell {
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.nav-toggle {
		display: block;
	}

	.primary-navigation {
		position: fixed;
		inset: 118px 20px auto;
		display: none;
		padding: 16px;
		border: 1px solid var(--vip-line);
		border-radius: var(--vip-radius);
		background: #fff;
		box-shadow: var(--vip-shadow);
	}

	body.nav-open .primary-navigation {
		display: block;
	}

	.primary-navigation ul {
		display: grid;
		gap: 4px;
	}

	.header-cta {
		display: none;
	}

	.hero-inner {
		grid-template-columns: 1fr;
	}

	.hero-stats {
		grid-template-columns: repeat(3, 1fr);
	}

	.search-grid,
	.split-feature,
	.single-layout,
	.contact-layout,
	.tour-layout {
		grid-template-columns: 1fr;
	}

	.search-grid .button {
		min-height: 52px;
	}

	.category-grid,
	.card-grid,
	.vip-journey-card-grid,
	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.booking-aside {
		position: static;
	}

	.tour-booking-card {
		position: static;
	}
}

@media (max-width: 720px) {
	.container {
		width: min(calc(100% - 28px), var(--vip-container));
	}

	.topbar-inner,
	.topbar-links,
	.section-row,
	.cta-panel,
	.empty-state form,
	.search-form {
		display: grid;
		align-items: start;
	}

	.topbar-inner {
		padding: 8px 0;
		gap: 4px;
	}

	.nav-shell {
		min-height: 72px;
	}

	.brand-name {
		display: none;
	}

	.primary-navigation {
		inset: 108px 14px auto;
	}

	.hero,
	.hero-inner {
		min-height: 620px;
	}

	.hero-inner {
		padding: 92px 0 104px;
	}

	.hero h1 {
		font-size: 48px;
	}

	.hero-stats,
	.benefit-grid,
	.category-grid,
	.card-grid,
	.vip-journey-card-grid,
	.vip-golden-panel,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.vip-journey-card-body {
		min-height: 0;
	}

	.vip-journey-card-badges {
		inset: 16px 16px auto;
	}

	.vip-journey-badge {
		min-height: 36px;
		padding: 7px 12px;
		font-size: 15px;
	}

	.vip-journey-card p {
		font-size: 17px;
	}

	.search-wrap {
		margin-top: -44px;
	}

	.section {
		padding: 64px 0;
	}

	.category-grid a {
		min-height: 280px;
	}

	.page-hero,
	.page-hero.compact {
		padding: 70px 0 46px;
	}

	.page-hero h1 {
		font-size: 42px;
	}

	.tour-single-hero {
		min-height: 300px;
		padding: 22px;
	}

	.tour-panel,
	.tour-booking-card {
		padding: 18px;
	}

	.tour-included-grid,
	.tour-availability-form div {
		grid-template-columns: 1fr;
	}

	.tour-accordion summary {
		font-size: 16px;
	}
}
