:root {
	--orvex-navy: #082832;
	--orvex-navy-deep: #061f27;
	--orvex-gold: #d9aa48;
	--orvex-gold-dark: #bd8c2e;
	--orvex-cream: #f6f1e7;
	--orvex-ivory: #fcfaf6;
	--orvex-white: #ffffff;
	--orvex-text: #183842;
	--orvex-muted: #667b81;
	--orvex-border: #dfe7e5;
	--orvex-shadow: 0 22px 60px rgba(8, 40, 50, 0.12);
	--orvex-serif: Georgia, "Times New Roman", serif;
	--orvex-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 30px;
}

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

body.menu-open {
	overflow: hidden;
}

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

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

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	color: var(--orvex-navy);
	font-family: var(--orvex-serif);
	font-weight: 400;
	line-height: 1.08;
}

h1 {
	font-size: clamp(44px, 6vw, 74px);
}

h2 {
	font-size: clamp(36px, 4.2vw, 56px);
	letter-spacing: -0.025em;
}

h3 {
	font-size: 27px;
}

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

.container.narrow {
	width: min(820px, calc(100% - 48px));
}

.site-main {
	display: block;
	overflow: hidden;
}

.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 {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 9999;
	padding: 10px 14px;
	background: var(--orvex-white);
	color: var(--orvex-navy);
	transform: translateY(-150%);
}

.skip-link:focus {
	transform: translateY(0);
}

.eyebrow,
.card-meta {
	margin-bottom: 15px;
	color: var(--orvex-gold-dark);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.2em;
	line-height: 1.4;
	text-transform: uppercase;
}

.button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 13px 22px;
	border: 1px solid transparent;
	cursor: pointer;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
}

.button-gold {
	background: var(--orvex-gold);
	color: var(--orvex-navy);
}

.button-gold:hover,
.button-gold:focus-visible {
	background: #e7bb60;
}

.button-outline-light {
	border-color: rgba(255, 255, 255, 0.48);
	color: var(--orvex-white);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
	border-color: var(--orvex-white);
	background: var(--orvex-white);
	color: var(--orvex-navy);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--orvex-navy);
	font-size: 13px;
	font-weight: 800;
}

.text-link span {
	transition: transform 0.25s ease;
}

.text-link:hover span {
	transform: translateX(4px);
}

.content-section {
	padding: 104px 0;
}

.cream-section {
	background: var(--orvex-cream);
}

.lead {
	color: var(--orvex-navy);
	font-family: var(--orvex-serif);
	font-size: 26px;
	line-height: 1.45;
}

.rich-copy p,
.intro-copy p {
	color: var(--orvex-muted);
}

.section-heading {
	margin-bottom: 54px;
}

.section-heading h2 {
	margin-bottom: 0;
}

.section-heading > p:last-child,
.split-heading > p {
	max-width: 510px;
	color: var(--orvex-muted);
}

.section-heading.centered {
	max-width: 760px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.section-heading.centered > p:last-child {
	margin-right: auto;
	margin-left: auto;
}

.split-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
	align-items: end;
	gap: 80px;
}

.split-heading > p {
	margin-bottom: 5px;
}

/* Header */
.site-header {
	position: relative;
	z-index: 100;
	background: var(--orvex-white);
}

.topbar {
	min-height: 34px;
	background: var(--orvex-navy);
	color: #d5e1e3;
	font-size: 11px;
}

.topbar-inner {
	display: flex;
	min-height: 34px;
	align-items: center;
	justify-content: center;
	gap: clamp(40px, 8vw, 120px);
}

.topbar a,
.topbar span {
	white-space: nowrap;
}

.topbar a:hover {
	color: var(--orvex-white);
}

.main-header {
	border-bottom: 1px solid rgba(8, 40, 50, 0.08);
	background: rgba(255, 255, 255, 0.98);
}

.main-header-inner {
	display: flex;
	min-height: 88px;
	align-items: center;
	gap: 30px;
}

.site-brand {
	display: flex;
	width: 138px;
	height: 82px;
	flex: 0 0 138px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.site-brand img {
	width: 118px;
	height: auto;
}

.primary-navigation {
	flex: 1;
}

.primary-navigation .menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(15px, 2vw, 28px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-navigation li {
	margin: 0;
}

.primary-navigation a {
	position: relative;
	display: block;
	padding: 31px 0;
	color: #38535b;
	font-size: 13px;
	font-weight: 750;
	white-space: nowrap;
}

.primary-navigation a::after {
	position: absolute;
	right: 0;
	bottom: 21px;
	left: 0;
	height: 2px;
	background: var(--orvex-gold);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.primary-navigation a:hover::after,
.primary-navigation .current-menu-item > a::after,
.primary-navigation .current_page_item > a::after {
	transform: scaleX(1);
}

.header-cta {
	flex: 0 0 auto;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	margin-left: auto;
	padding: 0;
	border: 0;
	background: transparent;
}

.menu-toggle span:not(.screen-reader-text) {
	width: 24px;
	height: 2px;
	background: var(--orvex-navy);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Hero slider */
.hero-slider {
	position: relative;
	height: 610px;
	overflow: hidden;
	background: var(--orvex-navy);
}

.hero-slide {
	position: absolute;
	inset: 0;
	display: flex;
	visibility: hidden;
	align-items: center;
	background-image: linear-gradient(90deg, rgba(4, 28, 36, 0.91) 0%, rgba(4, 28, 36, 0.64) 42%, rgba(4, 28, 36, 0.18) 75%), var(--slide-image);
	background-position: center;
	background-size: cover;
	color: var(--orvex-white);
	opacity: 0;
	transform: scale(1.035);
	transition: opacity 0.75s ease, visibility 0.75s ease, transform 5.5s ease;
}

.hero-slide.is-active {
	visibility: visible;
	opacity: 1;
	transform: scale(1);
}

.hero-slide-inner {
	display: flex;
	align-items: center;
}

.hero-copy {
	max-width: 690px;
	padding-bottom: 42px;
}

.hero-copy .eyebrow {
	color: #edc873;
}

.hero-copy h1 {
	margin-bottom: 22px;
	color: var(--orvex-white);
	font-size: clamp(52px, 6.3vw, 78px);
}

.hero-description {
	max-width: 640px;
	margin-bottom: 28px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 18px;
}

.slider-arrow {
	position: absolute;
	top: 47%;
	z-index: 5;
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	padding: 0 0 5px;
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: 50%;
	background: rgba(7, 36, 45, 0.45);
	color: var(--orvex-white);
	cursor: pointer;
	font-family: var(--orvex-serif);
	font-size: 33px;
	line-height: 1;
	transition: background 0.25s ease, border-color 0.25s ease;
}

.slider-arrow:hover {
	border-color: var(--orvex-gold);
	background: var(--orvex-navy);
}

.slider-prev {
	left: 24px;
}

.slider-next {
	right: 24px;
}

.slider-dots {
	position: absolute;
	bottom: 35px;
	left: max(7%, calc((100vw - 1180px) / 2));
	z-index: 5;
	display: flex;
	gap: 8px;
}

.slider-dots button {
	width: 34px;
	height: 3px;
	padding: 0;
	border: 0;
	background: rgba(255, 255, 255, 0.42);
	cursor: pointer;
	transition: background 0.25s ease, width 0.25s ease;
}

.slider-dots button.is-active {
	width: 48px;
	background: var(--orvex-gold);
}

/* Search */
.home-search-wrap {
	position: relative;
	z-index: 15;
	height: 70px;
	margin-top: -58px;
}

.travel-search {
	position: relative;
	display: grid;
	grid-template-columns: 1.35fr 0.9fr 0.9fr 0.85fr auto;
	background: var(--orvex-white);
	box-shadow: var(--orvex-shadow);
}

.travel-search label {
	display: flex;
	min-width: 0;
	min-height: 94px;
	flex-direction: column;
	justify-content: center;
	padding: 15px 18px;
	border-right: 1px solid var(--orvex-border);
}

.travel-search label > span {
	margin-bottom: 7px;
	color: #7a8b90;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.13em;
	line-height: 1.2;
	text-transform: uppercase;
}

.travel-search input,
.travel-search select {
	width: 100%;
	min-width: 0;
	height: 34px;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--orvex-navy);
	font-size: 15px;
	font-weight: 700;
}

.travel-search input::placeholder {
	color: #9aa7aa;
}

.travel-search button {
	min-width: 190px;
	padding: 18px 22px;
	border: 0;
	background: var(--orvex-gold);
	color: var(--orvex-navy);
	cursor: pointer;
	font-size: 14px;
	font-weight: 800;
	transition: background 0.25s ease;
}

.travel-search button:hover {
	background: #e7bb60;
}

.travel-search .form-error {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	margin: 0;
	color: #9f3029;
	font-size: 12px;
}

.travel-search-inline {
	margin-top: -50px;
}

.package-search-section {
	padding-bottom: 65px;
	background: var(--orvex-cream);
}

.search-summary {
	padding-top: 65px;
	text-align: center;
}

.search-summary h2 {
	margin-bottom: 12px;
}

.search-summary p:last-child {
	color: var(--orvex-muted);
}

.empty-search {
	text-align: center;
}

.empty-search p:not(.eyebrow) {
	max-width: 650px;
	margin-right: auto;
	margin-bottom: 28px;
	margin-left: auto;
	color: var(--orvex-muted);
}

/* Homepage */
.intro-section {
	padding-top: 130px;
}

.intro-grid,
.two-column-story {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 100px;
}

.intro-grid .section-heading {
	margin-bottom: 0;
}

.intro-copy .text-link {
	margin-top: 12px;
}

.trust-strip {
	border-top: 1px solid var(--orvex-border);
	border-bottom: 1px solid var(--orvex-border);
	background: var(--orvex-ivory);
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
	display: flex;
	min-height: 125px;
	align-items: center;
	gap: 15px;
	padding: 25px 26px;
	border-right: 1px solid var(--orvex-border);
}

.trust-grid > div:last-child {
	border-right: 0;
}

.trust-grid svg {
	width: 30px;
	flex: 0 0 30px;
	fill: none;
	stroke: var(--orvex-gold-dark);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

.trust-grid span {
	color: var(--orvex-muted);
	font-size: 12px;
	line-height: 1.5;
}

.trust-grid strong {
	display: block;
	margin-bottom: 3px;
	color: var(--orvex-navy);
	font-size: 14px;
}

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

.destination-card {
	display: flex;
	min-width: 0;
	height: 100%;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--orvex-border);
	background: var(--orvex-white);
	box-shadow: 0 14px 38px rgba(8, 40, 50, 0.06);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.destination-card:hover {
	box-shadow: 0 22px 48px rgba(8, 40, 50, 0.14);
	transform: translateY(-6px);
}

.destination-media {
	position: relative;
	display: block;
	width: 100%;
	height: 230px;
	flex: 0 0 230px;
	overflow: hidden;
	background-image: linear-gradient(180deg, transparent 55%, rgba(7, 31, 39, 0.18)), var(--atlas-image);
	background-position: var(--atlas-x) var(--atlas-y);
	background-size: 400% 300%;
	background-repeat: no-repeat;
	transition: filter 0.35s ease, transform 0.5s ease;
}

.destination-card img,
.package-card img {
	display: block;
	width: 100%;
	height: 230px;
	object-fit: cover;
	object-position: center;
}

.destination-card:hover .destination-media {
	filter: saturate(1.07) contrast(1.02);
	transform: scale(1.025);
}

.destination-content {
	display: flex;
	min-height: 248px;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 23px 24px 27px;
}

.destination-content .card-meta {
	margin-bottom: 9px;
	font-size: 9px;
}

.destination-content h3 {
	min-height: 65px;
	margin-bottom: 12px;
	font-size: 27px;
}

.destination-content h3 a:hover {
	color: var(--orvex-gold-dark);
}

.destination-content p:not(.card-meta) {
	min-height: 52px;
	margin-bottom: 19px;
	color: var(--orvex-muted);
	font-size: 14px;
	line-height: 1.65;
}

.destination-content .text-link {
	margin-top: auto;
}

.destination-card.is-compact .destination-content {
	min-height: 172px;
	padding: 21px 22px 24px;
}

.destination-card.is-compact .destination-content h3 {
	min-height: 62px;
	margin-bottom: 15px;
	font-size: 25px;
}

.destination-card.is-compact .destination-media {
	height: 230px;
	flex-basis: 230px;
}

.image-story {
	display: grid;
	min-height: 690px;
	grid-template-columns: 1fr 1fr;
	background: var(--orvex-navy);
	color: rgba(255, 255, 255, 0.8);
}

.image-story-reverse .image-story-photo {
	order: 2;
}

.image-story-photo {
	min-height: 600px;
	background-image: linear-gradient(90deg, transparent 65%, rgba(8, 40, 50, 0.24)), var(--story-image);
	background-position: center;
	background-size: cover;
}

.image-story-copy {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 90px max(7vw, 70px);
}

.image-story-copy .eyebrow {
	color: #edc873;
}

.image-story-copy h2 {
	margin-bottom: 26px;
	color: var(--orvex-white);
}

.image-story-copy > p:not(.eyebrow) {
	max-width: 570px;
}

.check-list {
	display: grid;
	gap: 13px;
	margin: 15px 0 31px;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 27px;
}

.check-list li::before {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--orvex-gold);
	content: "✓";
	font-weight: 800;
}

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

.service-card {
	min-height: 260px;
	padding: 36px 32px;
	border: 1px solid var(--orvex-border);
	background: var(--orvex-white);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
	border-color: rgba(217, 170, 72, 0.6);
	box-shadow: 0 18px 44px rgba(8, 40, 50, 0.08);
	transform: translateY(-4px);
}

.service-icon {
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	margin-bottom: 28px;
	background: var(--orvex-cream);
	color: var(--orvex-gold-dark);
}

.service-icon svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.55;
}

.service-card h3 {
	margin-bottom: 13px;
	font-size: 25px;
}

.service-card p {
	margin-bottom: 15px;
	color: var(--orvex-muted);
	font-size: 14px;
}

.service-grid-large .service-card {
	min-height: 315px;
}

.testimonial-section {
	padding: 104px 0;
	background: var(--orvex-cream);
}

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

.testimonial-grid blockquote {
	margin: 0;
	padding: 34px;
	border-top: 3px solid var(--orvex-gold);
	background: var(--orvex-white);
	box-shadow: 0 12px 32px rgba(8, 40, 50, 0.06);
}

.testimonial-grid blockquote p {
	color: var(--orvex-navy);
	font-family: var(--orvex-serif);
	font-size: 21px;
	line-height: 1.55;
}

.testimonial-grid footer {
	color: var(--orvex-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.cta-band {
	padding: 75px 0;
	background: var(--orvex-navy-deep);
	color: rgba(255, 255, 255, 0.75);
}

.cta-band-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 70px;
}

.cta-band h2 {
	max-width: 800px;
	margin-bottom: 18px;
	color: var(--orvex-white);
	font-size: clamp(36px, 4vw, 53px);
}

.cta-band p:last-child {
	max-width: 760px;
	margin-bottom: 0;
}

.cta-band .eyebrow {
	color: #edc873;
}

/* Inner pages */
.inner-hero {
	position: relative;
	display: flex;
	min-height: 480px;
	align-items: center;
	background-image: linear-gradient(90deg, rgba(4, 28, 36, 0.9) 0%, rgba(4, 28, 36, 0.62) 47%, rgba(4, 28, 36, 0.18) 82%), var(--hero-image);
	background-position: center;
	background-size: cover;
	color: rgba(255, 255, 255, 0.88);
}

.inner-hero-content {
	padding-top: 28px;
	padding-bottom: 28px;
}

.inner-hero-content .eyebrow {
	color: #edc873;
}

.inner-hero-content h1 {
	max-width: 760px;
	margin-bottom: 21px;
	color: var(--orvex-white);
}

.inner-hero-content > p:not(.eyebrow) {
	max-width: 650px;
	margin-bottom: 28px;
	font-size: 18px;
}

.metric-band {
	background: var(--orvex-navy);
	color: rgba(255, 255, 255, 0.7);
}

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

.metric-grid > div {
	min-height: 150px;
	padding: 42px 35px;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-grid > div:last-child {
	border-right: 0;
}

.metric-grid strong {
	display: block;
	margin-bottom: 7px;
	color: var(--orvex-white);
	font-family: var(--orvex-serif);
	font-size: 25px;
	font-weight: 400;
}

.metric-grid span {
	font-size: 13px;
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--orvex-border);
	border-left: 1px solid var(--orvex-border);
}

.value-card {
	min-height: 290px;
	padding: 35px 29px;
	border-right: 1px solid var(--orvex-border);
	border-bottom: 1px solid var(--orvex-border);
	background: rgba(255, 255, 255, 0.56);
}

.value-card > span,
.process-grid > li > span {
	display: block;
	margin-bottom: 42px;
	color: var(--orvex-gold-dark);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.value-card h3 {
	font-size: 24px;
}

.value-card p {
	color: var(--orvex-muted);
	font-size: 14px;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--orvex-border);
	list-style: none;
	counter-reset: steps;
}

.process-grid li {
	position: relative;
	padding: 36px 30px 20px 0;
	border-right: 1px solid var(--orvex-border);
}

.process-grid li + li {
	padding-left: 30px;
}

.process-grid li:last-child {
	border-right: 0;
}

.process-grid h3 {
	font-size: 24px;
}

.process-grid p {
	color: var(--orvex-muted);
	font-size: 14px;
}

.editorial-card-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.editorial-card {
	position: relative;
	display: flex;
	height: 430px;
	min-height: 430px;
	align-items: flex-end;
	overflow: hidden;
	background-image: linear-gradient(180deg, rgba(6, 31, 39, 0.05) 25%, rgba(6, 31, 39, 0.9) 100%), var(--card-image);
	background-position: center;
	background-size: cover;
	color: rgba(255, 255, 255, 0.82);
}

.editorial-card::before {
	position: absolute;
	inset: 0;
	background: inherit;
	content: "";
	transition: transform 0.55s ease;
}

.editorial-card:hover::before {
	transform: scale(1.04);
}

.editorial-card > div {
	position: relative;
	z-index: 2;
	padding: 42px;
}

.editorial-card .eyebrow {
	color: #edc873;
}

.editorial-card h3 {
	margin-bottom: 12px;
	color: var(--orvex-white);
	font-size: 36px;
}

.editorial-card p:last-child {
	max-width: 450px;
	margin-bottom: 0;
}

.feature-list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.feature-list li {
	display: grid;
	grid-template-columns: 190px 1fr;
	gap: 25px;
	padding: 23px 0;
	border-bottom: 1px solid var(--orvex-border);
}

.feature-list strong {
	color: var(--orvex-navy);
	font-family: var(--orvex-serif);
	font-size: 21px;
	font-weight: 400;
}

.feature-list span {
	color: var(--orvex-muted);
}

/* Blog */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.blog-card {
	display: flex;
	height: 100%;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--orvex-border);
	background: var(--orvex-white);
	box-shadow: 0 14px 36px rgba(8, 40, 50, 0.06);
}

.blog-image {
	display: block;
	width: 100%;
	height: 245px;
	flex: 0 0 245px;
	background-image: linear-gradient(180deg, transparent 65%, rgba(6, 31, 39, 0.25)), var(--blog-image);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: transform 0.45s ease;
}

.blog-card img,
.editorial-card img {
	display: block;
	width: 100%;
	height: 245px;
	object-fit: cover;
	object-position: center;
}

.blog-card:hover .blog-image {
	transform: scale(1.025);
}

.blog-card > div {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 26px 26px 29px;
}

.blog-card h2 {
	margin-bottom: 13px;
	font-size: 28px;
}

.blog-card p:not(.card-meta) {
	color: var(--orvex-muted);
	font-size: 14px;
}

/* Contact */
.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
	gap: 90px;
}

.contact-copy h2 {
	margin-bottom: 24px;
}

.contact-copy > p:not(.eyebrow) {
	color: var(--orvex-muted);
}

.contact-details {
	display: grid;
	gap: 24px;
	margin-top: 40px;
}

.contact-details > div {
	padding-bottom: 20px;
	border-bottom: 1px solid var(--orvex-border);
}

.contact-details span {
	display: block;
	margin-bottom: 4px;
	color: var(--orvex-gold-dark);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.contact-details a,
.contact-details p {
	margin: 0;
	color: var(--orvex-navy);
	font-family: var(--orvex-serif);
	font-size: 23px;
}

.enquiry-form {
	padding: 42px;
	background: var(--orvex-cream);
	box-shadow: 0 18px 50px rgba(8, 40, 50, 0.08);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 17px;
}

.enquiry-form label:not(.consent):not(.honeypot) {
	display: block;
	margin-bottom: 17px;
}

.enquiry-form label > span {
	display: block;
	margin-bottom: 7px;
	color: #516b72;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid #d7e0de;
	border-radius: 0;
	outline: 0;
	background: var(--orvex-white);
	color: var(--orvex-navy);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
	border-color: var(--orvex-gold);
	box-shadow: 0 0 0 3px rgba(217, 170, 72, 0.15);
}

.enquiry-form textarea {
	min-height: 130px;
	resize: vertical;
}

.enquiry-form .consent {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 4px 0 20px;
}

.enquiry-form .consent input {
	width: auto;
	margin-top: 5px;
}

.enquiry-form .consent span {
	margin: 0;
	color: var(--orvex-muted);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.55;
	text-transform: none;
}

.enquiry-form .button {
	width: 100%;
	border: 0;
}

.form-note {
	margin: 12px 0 0;
	color: var(--orvex-muted);
	font-size: 11px;
	text-align: center;
}

.form-error {
	color: #a22e28;
	font-size: 12px;
}

.honeypot {
	position: absolute !important;
	left: -9999px !important;
}

/* Privacy */
.privacy-layout {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	align-items: start;
	gap: 80px;
}

.privacy-nav {
	position: sticky;
	top: 28px;
	display: grid;
	padding: 26px;
	border-left: 3px solid var(--orvex-gold);
	background: var(--orvex-cream);
}

.privacy-nav a {
	padding: 9px 0;
	border-bottom: 1px solid rgba(8, 40, 50, 0.1);
	color: var(--orvex-muted);
	font-size: 13px;
}

.privacy-nav a:hover {
	color: var(--orvex-navy);
}

.privacy-content {
	max-width: 780px;
}

.privacy-content .updated {
	color: var(--orvex-gold-dark);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.privacy-content > p {
	color: var(--orvex-muted);
}

.privacy-content h2 {
	margin-top: 44px;
	margin-bottom: 14px;
	font-size: 31px;
	scroll-margin-top: 30px;
}

.privacy-content a {
	color: var(--orvex-gold-dark);
	text-decoration: underline;
}

.entry-content {
	color: var(--orvex-muted);
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
	color: var(--orvex-navy);
}

/* Footer */
.site-footer {
	padding: 76px 0 25px;
	background: var(--orvex-navy-deep);
	color: #aebfc3;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.7fr 0.8fr 1fr;
	gap: 80px;
	padding-bottom: 60px;
}

.footer-logo {
	width: 125px;
	margin-bottom: 17px;
}

.footer-brand-column > p {
	max-width: 470px;
}

.footer-heading {
	margin: 17px 0 24px;
	color: var(--orvex-white);
	font-family: var(--orvex-sans);
	font-size: 16px;
	font-weight: 800;
}

.footer-grid > div:not(.footer-brand-column) > a {
	display: block;
	margin: 9px 0;
	color: #aebfc3;
}

.footer-grid a:hover {
	color: var(--orvex-white);
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 25px;
}

.social-links a {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	color: var(--orvex-white);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.social-links a:hover {
	border-color: var(--orvex-gold);
	background: var(--orvex-gold);
	color: var(--orvex-navy);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 11px;
}

.floating-whatsapp {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 300;
	display: flex;
	min-height: 54px;
	align-items: center;
	gap: 10px;
	padding: 8px 17px 8px 8px;
	border-radius: 999px;
	background: #21c968;
	color: var(--orvex-white);
	box-shadow: 0 18px 42px rgba(7, 42, 29, 0.28);
	font-size: 13px;
	font-weight: 800;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
	box-shadow: 0 20px 48px rgba(7, 42, 29, 0.38);
	transform: translateY(-3px);
}

.floating-whatsapp-icon {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border-radius: 50%;
	background: var(--orvex-white);
	color: #18ad55;
	font-size: 24px;
	font-weight: 900;
}

.mobile-contact-bar {
	display: none;
}

.has-motion .reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

.has-motion .reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1120px) {
	.main-header-inner {
		gap: 20px;
	}

	.primary-navigation .menu {
		gap: 17px;
	}

	.primary-navigation a {
		font-size: 12px;
	}

	.header-cta {
		padding-right: 17px;
		padding-left: 17px;
	}

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

	.destination-media,
	.destination-card.is-compact .destination-media,
	.destination-card img,
	.package-card img {
		height: 225px;
		flex-basis: 225px;
	}

	.travel-search button {
		min-width: 165px;
	}
}

@media (max-width: 980px) {
	.container {
		width: min(100% - 40px, 1180px);
	}

	.main-header-inner {
		min-height: 78px;
	}

	.site-brand {
		width: 112px;
		height: 74px;
		flex-basis: 112px;
	}

	.site-brand img {
		width: 100px;
	}

	.menu-toggle {
		display: flex;
		order: 3;
	}

	.primary-navigation {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		max-height: calc(100vh - 112px);
		overflow-y: auto;
		border-top: 1px solid var(--orvex-border);
		background: var(--orvex-white);
		box-shadow: 0 20px 45px rgba(8, 40, 50, 0.13);
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-navigation .menu {
		display: block;
		width: min(100% - 40px, 1180px);
		margin: 0 auto;
		padding: 20px 0 28px;
	}

	.primary-navigation a {
		padding: 12px 0;
		font-size: 15px;
	}

	.primary-navigation a::after {
		bottom: 7px;
		width: 34px;
	}

	.header-cta {
		margin-left: auto;
	}

	.hero-slider {
		height: 570px;
	}

	.hero-copy {
		padding-bottom: 20px;
	}

	.home-search-wrap {
		height: auto;
		margin-top: -42px;
		padding-bottom: 40px;
	}

	.travel-search {
		grid-template-columns: 1.3fr 1fr 1fr;
	}

	.travel-search label:nth-of-type(3) {
		border-right: 0;
	}

	.travel-search label:nth-of-type(4) {
		border-top: 1px solid var(--orvex-border);
	}

	.travel-search button {
		grid-column: span 2;
		min-height: 76px;
	}

	.travel-search label {
		min-height: 78px;
	}

	.intro-section {
		padding-top: 80px;
	}

	.trust-grid {
		grid-template-columns: 1fr 1fr;
	}

	.trust-grid > div:nth-child(2) {
		border-right: 0;
	}

	.trust-grid > div:nth-child(-n+2) {
		border-bottom: 1px solid var(--orvex-border);
	}

	.service-grid,
	.blog-grid {
		grid-template-columns: 1fr 1fr;
	}

	.value-grid,
	.process-grid {
		grid-template-columns: 1fr 1fr;
	}

	.process-grid li:nth-child(2) {
		border-right: 0;
	}

	.process-grid li:nth-child(-n+2) {
		border-bottom: 1px solid var(--orvex-border);
	}

	.contact-layout {
		gap: 50px;
	}

	.footer-grid {
		gap: 45px;
	}
}

@media (max-width: 760px) {
	.content-section,
	.testimonial-section {
		padding: 78px 0;
	}

	.topbar-inner {
		justify-content: space-between;
		gap: 20px;
	}

	.topbar-inner > :nth-child(2) {
		display: none;
	}

	.header-cta {
		display: none;
	}

	.hero-slider {
		height: 545px;
	}

	.hero-slide {
		background-image: linear-gradient(90deg, rgba(4, 28, 36, 0.88), rgba(4, 28, 36, 0.42)), var(--slide-image);
		background-position: 63% center;
	}

	.hero-copy {
		max-width: 85%;
	}

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

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

	.slider-arrow {
		top: auto;
		bottom: 26px;
		width: 40px;
		height: 40px;
	}

	.slider-prev {
		right: 72px;
		left: auto;
	}

	.slider-next {
		right: 22px;
	}

	.slider-dots {
		display: none;
	}

	.home-search-wrap {
		margin-top: 0;
		padding: 0;
	}

	.travel-search,
	.travel-search-inline {
		grid-template-columns: 1fr 1fr;
		margin-top: 0;
	}

	.travel-search label:nth-of-type(2) {
		border-right: 0;
	}

	.travel-search label:nth-of-type(3),
	.travel-search label:nth-of-type(4) {
		border-top: 1px solid var(--orvex-border);
	}

	.travel-search label:nth-of-type(3) {
		border-right: 1px solid var(--orvex-border);
	}

	.travel-search button {
		grid-column: 1 / -1;
		min-height: 66px;
	}

	.intro-grid,
	.two-column-story,
	.split-heading,
	.contact-layout,
	.privacy-layout {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.intro-grid .section-heading,
	.two-column-story .section-heading {
		margin-bottom: 0;
	}

	.split-heading {
		align-items: start;
	}

	.section-heading {
		margin-bottom: 40px;
	}

	.destination-grid {
		grid-template-columns: 1fr 1fr;
	}

	.destination-media,
	.destination-card.is-compact .destination-media,
	.destination-card img,
	.package-card img {
		height: 250px;
		flex-basis: 250px;
	}

	.image-story {
		grid-template-columns: 1fr;
	}

	.image-story-photo,
	.image-story-reverse .image-story-photo {
		min-height: 430px;
		order: 0;
	}

	.image-story-copy {
		padding: 75px 40px;
	}

	.testimonial-grid {
		grid-template-columns: 1fr;
	}

	.cta-band-inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.cta-band .button {
		justify-self: start;
	}

	.inner-hero {
		min-height: 430px;
	}

	.metric-grid {
		grid-template-columns: 1fr;
	}

	.metric-grid > div {
		min-height: auto;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.metric-grid > div:last-child {
		border-bottom: 0;
	}

	.editorial-card-grid {
		grid-template-columns: 1fr;
	}

	.editorial-card {
		min-height: 390px;
	}

	.contact-copy {
		max-width: 620px;
	}

	.privacy-nav {
		position: static;
	}

	.footer-grid {
		grid-template-columns: 1.5fr 1fr;
	}

	.footer-grid > div:last-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	body {
		padding-bottom: 54px;
	}

	.container,
	.container.narrow {
		width: calc(100% - 30px);
	}

	.topbar {
		min-height: 32px;
	}

	.topbar-inner {
		min-height: 32px;
		justify-content: center;
	}

	.topbar-inner > :nth-child(3) {
		display: none;
	}

	.main-header-inner {
		min-height: 70px;
	}

	.site-brand {
		width: 96px;
		height: 66px;
		flex-basis: 96px;
	}

	.site-brand img {
		width: 86px;
	}

	.hero-slider {
		height: 505px;
	}

	.hero-copy {
		max-width: 100%;
		padding: 18px 12px 45px 0;
	}

	.hero-copy h1 {
		font-size: 43px;
	}

	.hero-description {
		font-size: 15px;
	}

	.travel-search {
		grid-template-columns: 1fr;
	}

	.travel-search label,
	.travel-search label:nth-of-type(2),
	.travel-search label:nth-of-type(3),
	.travel-search label:nth-of-type(4) {
		min-height: 76px;
		border-right: 0;
		border-bottom: 1px solid var(--orvex-border);
		border-top: 0;
	}

	.travel-search button {
		grid-column: auto;
	}

	.content-section,
	.testimonial-section {
		padding: 66px 0;
	}

	.intro-section {
		padding-top: 72px;
	}

	.lead {
		font-size: 23px;
	}

	.trust-grid,
	.destination-grid,
	.service-grid,
	.blog-grid,
	.value-grid,
	.process-grid {
		grid-template-columns: 1fr;
	}

	.trust-grid > div {
		min-height: 103px;
		border-right: 0;
		border-bottom: 1px solid var(--orvex-border);
	}

	.trust-grid > div:last-child {
		border-bottom: 0;
	}

	.destination-card.is-compact .destination-media,
	.destination-media {
		height: 235px;
		flex-basis: 235px;
	}

	.destination-card img,
	.package-card img {
		height: 235px;
	}

	.image-story-photo,
	.image-story-reverse .image-story-photo {
		min-height: 340px;
	}

	.image-story-copy {
		padding: 65px 24px;
	}

	.service-card {
		min-height: auto;
	}

	.value-card {
		min-height: auto;
	}

	.process-grid li,
	.process-grid li + li {
		padding: 30px 0;
		border-right: 0;
		border-bottom: 1px solid var(--orvex-border);
	}

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

	.inner-hero {
		min-height: 410px;
	}

	.inner-hero-content > p:not(.eyebrow) {
		font-size: 16px;
	}

	.editorial-card {
		min-height: 350px;
	}

	.editorial-card > div {
		padding: 30px;
	}

	.feature-list li {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.enquiry-form {
		padding: 28px 20px;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.contact-details a,
	.contact-details p {
		font-size: 20px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.footer-grid > div:last-child {
		grid-column: auto;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.floating-whatsapp {
		right: 14px;
		bottom: 68px;
		width: 50px;
		height: 50px;
		min-height: 50px;
		justify-content: center;
		padding: 6px;
	}

	.floating-whatsapp > span:last-child {
		display: none;
	}

	.floating-whatsapp-icon {
		width: 38px;
		height: 38px;
	}

	.mobile-contact-bar {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 290;
		display: grid;
		height: 54px;
		grid-template-columns: 1fr 1fr;
		box-shadow: 0 -10px 30px rgba(8, 40, 50, 0.12);
	}

	.mobile-contact-bar a {
		display: grid;
		place-items: center;
		background: var(--orvex-navy);
		color: var(--orvex-white);
		font-size: 13px;
		font-weight: 800;
	}

	.mobile-contact-bar a:last-child {
		background: #21c968;
	}
}

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