@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
	--ink: #1a1208;
	--night: #120c05;
	--earth: #1a1208;
	--earth-2: #3d2b1a;
	--bark: #3d2b1a;
	--gold: #c9952a;
	--gold-2: #e8c97a;
	--sand: #f2e8d5;
	--ivory: #faf7f2;
	--muted: #8a7b6a;
	--line: rgba(61, 43, 26, .13);
	--white-line: rgba(201, 149, 42, .22);
	--shadow: 0 24px 70px rgba(26, 18, 8, .13);
	--soft-shadow: 0 14px 44px rgba(26, 18, 8, .09);
	--radius: 0;
	--max: 1180px;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 92px;
	scrollbar-color: rgba(201, 149, 42, .78) rgba(18, 12, 5, .88);
	scrollbar-width: thin;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--ivory);
	font-family: 'Inter', Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.72;
	overflow-x: hidden;
}

* {
	scrollbar-color: rgba(201, 149, 42, .78) rgba(18, 12, 5, .80);
	scrollbar-width: thin;
}

*::-webkit-scrollbar {
	width: 11px;
	height: 11px;
}

*::-webkit-scrollbar-track {
	background: rgba(18, 12, 5, .88);
}

*::-webkit-scrollbar-thumb {
	border: 3px solid rgba(18, 12, 5, .88);
	border-radius: 999px;
	background: linear-gradient(180deg, var(--gold-2), var(--gold));
}

*::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #f1d994, var(--gold));
}

img,
iframe {
	max-width: 100%;
}

img {
	display: block;
}

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

button,
input,
textarea {
	font: inherit;
}

.skip-link {
	position: fixed;
	left: 16px;
	top: 16px;
	z-index: 10000;
	transform: translateY(-140%);
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--gold);
	color: var(--night);
	font-weight: 800;
	transition: transform .2s ease;
}

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

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

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 999;
	pointer-events: none;
	transition: transform .25s ease;
}

.site-nav {
	width: 100%;
	min-height: 72px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: center;
	gap: 20px;
	border: 0;
	border-bottom: 1px solid rgba(201, 149, 42, .25);
	border-radius: var(--radius);
	background: rgba(26, 18, 8, .92);
	box-shadow: none;
	backdrop-filter: blur(12px);
	pointer-events: auto;
}

.brand {
	display: inline-flex;
	align-items: center;
	min-width: max-content;
	color: #fff;
	padding: 6px 0;
}

.brand-mark,
.footer-wordmark {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	position: relative;
	padding-bottom: 12px;
	font-family: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
	font-size: 32px;
	font-weight: 300;
	line-height: .9;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.brand-mark strong,
.footer-wordmark strong {
	font-weight: 400;
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 54%, #fff6df 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.brand-mark strong:last-of-type,
.footer-wordmark strong:last-of-type {
	background: linear-gradient(135deg, #ffffff 0%, #f2e8d5 62%, var(--gold-2) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.brand-mark em,
.footer-wordmark em {
	color: var(--gold);
	font-size: .74em;
	font-style: italic;
	text-transform: none;
	transform: translateY(-1px);
}

.brand-mark:after,
.footer-wordmark:after {
	content: "Safaris";
	position: absolute;
	left: 2px;
	bottom: 0;
	color: rgba(242, 232, 213, .62);
	font-family: 'Inter', Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .26em;
	text-transform: uppercase;
}

.nav-panel {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
}

.nav-links {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
}

.nav-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 12px;
	border-radius: 999px;
	color: rgba(242, 232, 213, .72);
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: .04em;
	text-transform: uppercase;
	transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
	white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.is-active {
	color: var(--gold-2);
	background: transparent;
	box-shadow: none;
}

.has-dropdown {
	position: relative;
}

.dropdown {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 220px;
	padding: 10px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 250, 240, .98);
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown a {
	width: 100%;
	justify-content: flex-start;
	color: var(--ink);
	border-radius: 6px;
	text-transform: none;
	letter-spacing: 0;
	font-size: 13px;
}

.nav-cta,
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border: 0;
	border-radius: 0;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .05em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.nav-cta,
.btn-gold {
	color: var(--night);
	background: var(--gold);
	box-shadow: none;
}

.btn-ghost {
	color: var(--sand);
	border: 1px solid rgba(242, 232, 213, .30);
	background: transparent;
}

.nav-cta:hover,
.btn:hover {
	transform: translateY(-1px);
	box-shadow: none;
}

.nav-toggle {
	display: none;
	margin-left: auto;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--gold), var(--gold-2));
	position: relative;
	cursor: pointer;
}

.nav-toggle span {
	position: absolute;
	left: 15px;
	right: 15px;
	height: 2px;
	border-radius: 999px;
	background: var(--night);
	transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 30px; }

body.nav-open .nav-toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
	opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.hero {
	min-height: min(92svh, 880px);
	position: relative;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: var(--night);
}

.hero-bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(26, 18, 8, 1) 0%, rgba(26, 18, 8, .76) 42%, rgba(26, 18, 8, .24) 100%),
		linear-gradient(180deg, rgba(26, 18, 8, .22) 0%, rgba(26, 18, 8, .78) 100%),
		url("../images/parallax/imbabala.png") center right / cover no-repeat;
	transform: scale(1.02);
}

.hero:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: .045;
	background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	width: min(var(--max), calc(100% - 40px));
	margin: 0 auto;
	padding: 160px 0 78px;
	color: #fff;
}

.eyebrow {
	margin: 0 0 16px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--gold-2);
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.eyebrow:before {
	content: "";
	width: 42px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

h1,
h2,
h3 {
	margin: 0;
	font-family: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
	letter-spacing: 0;
}

h1 {
	max-width: 760px;
	font-size: clamp(54px, 7.2vw, 98px);
	line-height: .96;
	font-weight: 300;
	letter-spacing: -.018em;
}

h2 {
	font-size: clamp(34px, 4.2vw, 58px);
	line-height: 1.05;
	font-weight: 300;
}

h3 {
	font-size: 24px;
	line-height: 1.08;
	font-weight: 400;
}

h1 em {
	color: var(--gold-2);
	font-style: italic;
	font-weight: 300;
}

.hero-copy {
	max-width: 650px;
	margin: 24px 0 0;
	color: rgba(242, 232, 213, .68);
	font-size: 15px;
	font-weight: 300;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 30px 0 40px;
}

.hero-scroll {
	position: absolute;
	right: 48px;
	bottom: 34px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px;
}

.hero-scroll span {
	width: 1px;
	height: 48px;
	background: linear-gradient(to bottom, var(--gold), transparent);
	opacity: .55;
}

.hero-scroll em {
	color: rgba(242, 232, 213, .44);
	font-style: normal;
	font-size: 10px;
	letter-spacing: .18em;
	text-transform: uppercase;
	writing-mode: vertical-rl;
}

.stats-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: 100%;
	max-width: 100vw;
	overflow: hidden;
	background: var(--earth);
	border-top: 1px solid rgba(201, 149, 42, .15);
}

.stats-strip div {
	min-width: 0;
	padding: 32px 24px;
	text-align: center;
	border-right: 1px solid rgba(201, 149, 42, .10);
}

.stats-strip div:last-child {
	border-right: 0;
}

.stats-strip strong {
	display: block;
	margin-bottom: 6px;
	color: var(--gold-2);
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 42px;
	font-weight: 300;
	line-height: 1;
}

.stats-strip span {
	color: rgba(242, 232, 213, .46);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	overflow-wrap: anywhere;
}

.section {
	padding: 100px 0;
	position: relative;
}

.section-ivory {
	background: var(--ivory);
}

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

.section-dark {
	background: radial-gradient(circle at 90% 0%, rgba(201, 149, 42, .14), transparent 34rem), linear-gradient(135deg, var(--earth), var(--night));
	color: #fff;
}

.trips-section .section-head h2,
.trips-section .section-head p,
.destinations-section .section-head h2,
.destinations-section .section-head p,
.about-section .about-copy h2 {
	color: var(--sand);
}

.trips-section .section-head > p:not(.eyebrow),
.destinations-section .section-head > p:not(.eyebrow) {
	color: rgba(242, 232, 213, .55);
}

.section-head {
	max-width: 780px;
	margin-bottom: 34px;
}

.section-head.split {
	max-width: none;
	display: grid;
	grid-template-columns: 1.1fr .8fr;
	gap: 44px;
	align-items: end;
}

.section-head p:not(.eyebrow) {
	margin: 16px 0 0;
	color: var(--muted);
}

.section-head.light p:not(.eyebrow) {
	color: rgba(255, 255, 255, .72);
}

.destination-grid {
	display: grid;
	grid-template-columns: minmax(330px, 1.15fr) repeat(2, minmax(0, 1fr));
	grid-auto-rows: 285px;
	gap: 2px;
}

.destination-card {
	min-height: 0;
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	box-shadow: none;
	background: var(--night);
	isolation: isolate;
	cursor: pointer;
}

.destination-card.large {
	grid-column: 1;
	grid-row: 1 / span 2;
}

.destination-card > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease, filter .45s ease;
	z-index: -2;
}

.destination-card:after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(20, 14, 9, .04), rgba(20, 14, 9, .82));
}

.destination-card div {
	height: 100%;
	padding: 22px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: #fff;
}

.destination-card span,
.meta span {
	width: max-content;
	max-width: 100%;
	min-height: 30px;
	display: inline-flex;
	align-items: center;
	margin-bottom: 12px;
	padding: 0 12px;
	border-radius: 0;
	background: rgba(247, 194, 77, .94);
	color: var(--night);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.destination-card .country-badge {
	gap: 8px;
	padding-left: 7px;
}

.country-badge img {
	width: 28px;
	height: 20px;
	border: 1px solid rgba(18, 12, 5, .18);
	object-fit: cover;
}

.destination-card p {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, .78);
	font-size: 14px;
}

.destination-card.large h3 {
	font-size: 34px;
}

.destination-card.large div {
	padding: 32px;
}

.destination-card:hover > img {
	transform: scale(1.06);
	filter: saturate(1.12) contrast(1.04);
}

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

.trip-card,
.guide-card,
.video-card,
.map-card,
.enquiry-form,
.faq-item,
.contact-cards a,
.platform-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 250, 240, .82);
	box-shadow: var(--soft-shadow);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.trip-card {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	border-color: rgba(201, 149, 42, .16);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025)),
		rgba(26, 18, 8, .76);
	box-shadow: 0 24px 58px rgba(0, 0, 0, .16);
}

.trip-card:hover,
.guide-card:hover,
.video-card:hover,
.contact-cards a:hover,
.platform-card:hover {
	transform: translateY(-3px);
	border-color: rgba(201, 149, 42, .48);
	box-shadow: var(--shadow);
}

.trip-card img {
	width: 100%;
	aspect-ratio: 16 / 8;
	object-fit: cover;
	opacity: .78;
	filter: saturate(.88) contrast(1.05);
	transition: transform .35s ease, opacity .25s ease, filter .25s ease;
}

.trip-card:hover img {
	transform: scale(1.035);
	opacity: .90;
	filter: saturate(1.02) contrast(1.05);
}

.trip-body {
	flex: 1;
	padding: 30px 28px 28px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.meta span {
	margin: 0;
	background: transparent;
	border: 1px solid rgba(201, 149, 42, .24);
	color: rgba(232, 201, 122, .78);
}

.trip-body p,
.guide-card p,
.video-card p,
.about-copy p,
.contact-copy p {
	color: var(--muted);
	font-size: 14px;
}

.trips-section .trip-body h3 {
	color: var(--sand);
}

.trips-section .trip-body p,
.trips-section .trip-body li {
	color: rgba(242, 232, 213, .55);
}

.trip-body p {
	margin: 14px 0 26px;
}

.faq-question {
	width: 100%;
	border: 0;
	background: transparent;
	color: var(--earth);
	font-weight: 600;
	text-align: left;
	cursor: pointer;
}

.detail-trigger {
	width: 100%;
	min-height: 44px;
	margin-top: auto;
	padding: 0 18px;
	border: 1px solid rgba(201, 149, 42, .28);
	background:
		linear-gradient(135deg, rgba(201, 149, 42, .18), rgba(201, 149, 42, .07));
	color: var(--gold-2);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.detail-trigger:hover {
	border-color: rgba(201, 149, 42, .58);
	background: rgba(201, 149, 42, .18);
	color: #fff;
	transform: translateY(-1px);
}

.faq-question:after {
	content: "+";
	float: right;
	color: var(--gold);
	font-size: 20px;
	line-height: 1;
}

.faq-item.is-open .faq-question:after {
	content: "-";
}

.faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .28s ease;
}

.faq-answer > * {
	overflow: hidden;
}

.faq-item.is-open .faq-answer {
	grid-template-rows: 1fr;
}

.guides-section {
	overflow: hidden;
}

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

.guide-card {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 24px;
	background: rgba(35, 24, 13, .82);
	border-color: rgba(255, 255, 255, .14);
	box-shadow: 0 24px 58px rgba(0, 0, 0, .18);
}

.guide-card:before,
.guide-card:after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.guide-card:before {
	z-index: -2;
	background: var(--guide-bg) center / cover no-repeat;
	filter: saturate(1.08) contrast(1.05);
	opacity: .34;
	transform: scale(1.04);
	transition: transform .35s ease, opacity .35s ease;
}

.guide-card:after {
	z-index: -1;
	background:
		linear-gradient(135deg, rgba(18, 12, 5, .94), rgba(61, 43, 26, .78)),
		radial-gradient(circle at 100% 0%, rgba(201, 149, 42, .22), transparent 18rem);
}

.guide-card:hover:before {
	opacity: .46;
	transform: scale(1.08);
}

.guide-card--zimbabwe {
	--guide-bg: url("../images/zw.png");
}

.guide-card--botswana {
	--guide-bg: url("../images/bw.png");
}

.guide-card--namibia {
	--guide-bg: url("../images/namibia.JPG");
}

.guide-card--tanzania {
	--guide-bg: url("../images/tanzania.png");
}

.guide-card--southafrica {
	--guide-bg: url("../images/south-africa.png");
}

.guide-card--practical {
	--guide-bg: url("../images/zambia.png");
}

.guide-title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.guide-title img {
	display: none;
}

.guide-card h3 {
	color: #fff;
}

.guide-card p,
.guide-card li {
	color: rgba(255, 255, 255, .74);
}

.guide-card ul {
	margin: 16px 0 0;
	padding-left: 18px;
	font-size: 13px;
}

.guide-details {
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.guide-details summary {
	color: var(--gold-2);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	cursor: pointer;
}

.guide-details p {
	margin: 12px 0 0;
	color: rgba(242, 232, 213, .70);
}

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

.video-card {
	overflow: hidden;
	background: rgba(255, 255, 255, .08);
	border-color: rgba(255, 255, 255, .14);
	box-shadow: none;
}

.video-card div:not(.video-frame) {
	padding: 22px;
}

.video-card h3,
.map-card h3 {
	color: #fff;
}

.video-card p,
.map-copy p {
	color: rgba(242, 232, 213, .64);
}

.video-frame,
.map-frame {
	position: relative;
	overflow: hidden;
	background: var(--night);
}

.video-frame {
	aspect-ratio: 16 / 9;
}

.video-frame iframe,
.map-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.map-card {
	overflow: hidden;
	display: grid;
	grid-template-columns: .7fr 1.3fr;
	background: rgba(255, 255, 255, .08);
	border-color: rgba(255, 255, 255, .14);
	box-shadow: none;
}

.map-copy {
	padding: 30px;
}

.map-copy p {
	color: rgba(242, 232, 213, .66);
}

.text-link {
	color: var(--gold-2);
	font-weight: 900;
	border-bottom: 2px solid var(--gold);
}

.map-frame {
	min-height: 360px;
	border-left: 1px solid rgba(255, 255, 255, .10);
}

.safari-carousel {
	padding: 22px 0;
	overflow: hidden;
	background: var(--night);
	border-block: 1px solid rgba(201, 149, 42, .16);
}

.carousel-shell {
	position: relative;
	overflow: hidden;
}

.carousel-shell:before,
.carousel-shell:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 120px;
	pointer-events: none;
}

.carousel-shell:before {
	left: 0;
	background: linear-gradient(90deg, var(--night), transparent);
}

.carousel-shell:after {
	right: 0;
	background: linear-gradient(270deg, var(--night), transparent);
}

.carousel-track {
	display: flex;
	gap: 14px;
	width: max-content;
	animation: carouselDrift 42s linear infinite;
	will-change: transform;
}

.safari-carousel:hover .carousel-track {
	animation-play-state: paused;
}

.carousel-slide {
	position: relative;
	flex: 0 0 310px;
	height: 245px;
	margin: 0;
	overflow: hidden;
	background: var(--earth);
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(.92) contrast(1.04);
	transform: scale(1.02);
	transition: transform .35s ease, filter .35s ease;
}

.carousel-slide:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(18, 12, 5, .78));
}

.carousel-slide figcaption {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 16px;
	z-index: 1;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.carousel-slide:hover img {
	transform: scale(1.08);
	filter: saturate(1.08) contrast(1.08);
}

@keyframes carouselDrift {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(calc(-50% - 42px), 0, 0);
	}
}

.about-grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 54px;
	align-items: center;
}

.about-media {
	position: relative;
	min-height: 560px;
}

.about-media img {
	width: 100%;
	height: 100%;
	min-height: 560px;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.media-note {
	position: absolute;
	right: -24px;
	bottom: 28px;
	width: min(260px, 70%);
	padding: 20px;
	border-radius: var(--radius);
	background: var(--night);
	color: #fff;
	box-shadow: var(--shadow);
}

.media-note strong {
	display: block;
	margin-bottom: 6px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 21px;
}

.media-note span {
	color: rgba(255, 255, 255, .74);
	font-size: 13px;
}

.about-copy p {
	max-width: 720px;
}

.about-section .about-copy p {
	color: rgba(242, 232, 213, .66);
}

.about-points {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.about-points span {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 13px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 999px;
	background: rgba(255, 255, 255, .08);
	color: var(--gold-2);
	font-size: 12px;
	font-weight: 900;
}

.faq-list {
	display: grid;
	gap: 14px;
	max-width: 100%;
	width: 100%;
}

.faq-item {
	position: relative;
	overflow: hidden;
	padding: 0;
	background: rgba(255, 255, 255, .08);
	border-color: rgba(255, 255, 255, .14);
	box-shadow: none;
}

.faq-item:before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 3px;
	background: linear-gradient(180deg, var(--gold-2), rgba(201, 149, 42, .08));
	opacity: .72;
}

.faq-item:hover,
.faq-item.is-open {
	border-color: rgba(201, 149, 42, .44);
	background: rgba(255, 255, 255, .105);
}

.faq-question {
	min-height: 76px;
	padding: 0 72px 0 28px;
	position: relative;
	color: #fff;
	font-family: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0;
}

.faq-question:after {
	position: absolute;
	right: 24px;
	top: 50%;
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	float: none;
	border: 1px solid rgba(201, 149, 42, .45);
	border-radius: 50%;
	background: rgba(18, 12, 5, .46);
	color: var(--gold-2);
	font-family: 'Inter', Arial, Helvetica, sans-serif;
	font-size: 18px;
	transform: translateY(-50%);
}

.faq-answer p {
	margin: 0;
	padding: 0 72px 26px 28px;
	color: rgba(242, 232, 213, .68);
	font-size: 14px;
	line-height: 1.8;
}

.contact-grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 34px;
	align-items: stretch;
}

.contact-copy {
	display: flex;
	flex-direction: column;
}

.contact-copy p {
	color: rgba(255, 255, 255, .74);
}

.contact-cards {
	display: grid;
	gap: 12px;
	margin-top: 28px;
	flex: 1;
	align-content: end;
}

.contact-cards a {
	display: block;
	padding: 18px;
	background: rgba(255, 255, 255, .08);
	border-color: rgba(255, 255, 255, .14);
	box-shadow: none;
}

.contact-cards span {
	display: block;
	color: var(--gold-2);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.contact-cards strong {
	display: block;
	margin-top: 5px;
	color: #fff;
	font-size: 16px;
}

.form-status {
	display: none;
	margin: 6px 0 18px;
	padding: 15px 16px;
	border: 1px solid rgba(201, 149, 42, .24);
	background: rgba(201, 149, 42, .08);
	color: rgba(242, 232, 213, .78);
	font-size: 13px;
	line-height: 1.6;
}

.form-status.is-visible {
	display: block;
}

.form-status.is-success {
	border-color: rgba(126, 183, 120, .42);
	background: rgba(126, 183, 120, .12);
	color: #e7f5dd;
}

.form-status.is-error {
	border-color: rgba(232, 108, 88, .44);
	background: rgba(232, 108, 88, .12);
	color: #ffe0d9;
}

.enquiry-form.is-sending {
	pointer-events: none;
	opacity: .72;
}

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

.social-links a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid rgba(201, 149, 42, .28);
	background:
		linear-gradient(135deg, rgba(201, 149, 42, .15), rgba(201, 149, 42, .05)),
		rgba(255, 255, 255, .06);
	color: var(--gold-2);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.social-links a:hover {
	transform: translateY(-2px);
	border-color: rgba(201, 149, 42, .58);
	background: rgba(201, 149, 42, .18);
	color: #fff;
}

.social-links i {
	width: 15px;
	text-align: center;
	font-size: 16px;
}

.social-links--footer {
	margin-top: 4px;
}

.footer .social-links a {
	margin: 0;
	color: var(--gold-2);
}

.platforms-section {
	border-top: 1px solid rgba(201, 149, 42, .12);
}

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

.platform-card {
	position: relative;
	min-height: 170px;
	overflow: hidden;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgba(255, 255, 255, .08);
	border-color: rgba(255, 255, 255, .14);
	box-shadow: none;
}

.platform-card img {
	max-width: 170px;
	max-height: 92px;
	object-fit: contain;
	filter: saturate(.95) contrast(1.02);
	transition: transform .25s ease, filter .25s ease;
}

.platform-card span {
	position: absolute;
	inset: auto 0 0;
	padding: 12px 16px;
	background: rgba(18, 12, 5, .74);
	color: var(--gold-2);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
	text-align: center;
	text-transform: uppercase;
	transform: translateY(100%);
	transition: transform .24s ease;
}

.platform-card:hover img {
	transform: translateY(-8px) scale(1.04);
	filter: saturate(1.04) contrast(1.05);
}

.platform-card:hover span {
	transform: translateY(0);
}

.enquiry-form {
	min-height: 100%;
	padding: 26px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: rgba(255, 255, 255, .08);
	border-color: rgba(255, 255, 255, .14);
	box-shadow: none;
}

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

label {
	display: grid;
	gap: 7px;
	margin-bottom: 14px;
	color: var(--gold-2);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .06em;
	text-transform: uppercase;
}

input,
textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 6px;
	background: rgba(18, 12, 5, .56);
	color: #fff;
	padding: 13px 14px;
	outline: none;
	transition: border-color .18s ease, box-shadow .18s ease;
}

input::placeholder,
textarea::placeholder {
	color: rgba(242, 232, 213, .42);
}

input:focus,
textarea:focus {
	border-color: rgba(235, 164, 30, .8);
	box-shadow: 0 0 0 4px rgba(235, 164, 30, .13);
}

textarea {
	min-height: 142px;
	resize: vertical;
}

.enquiry-form .btn {
	margin-top: 4px;
}

.back-to-top {
	position: fixed;
	right: 22px;
	bottom: 104px;
	z-index: 2147483000;
	width: 52px;
	height: 52px;
	border: 1px solid rgba(201, 149, 42, .45);
	border-radius: 50%;
	background: var(--gold);
	color: var(--night);
	font-size: 25px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 16px 45px rgba(18, 12, 5, .22);
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px);
	transition: opacity .22s ease, visibility .22s ease, transform .22s ease, background .22s ease;
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	background: var(--gold-2);
	transform: translateY(-2px);
}

.itinerary-modal {
	position: fixed;
	inset: 0;
	z-index: 2147482000;
	display: grid;
	place-items: center;
	padding: 28px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .22s ease, visibility .22s ease;
}

.itinerary-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 5, 2, .78);
	backdrop-filter: blur(8px);
}

.modal-panel {
	position: relative;
	width: min(1040px, 100%);
	max-height: min(86dvh, 860px);
	overflow: auto;
	padding: 44px 42px;
	border: 1px solid rgba(201, 149, 42, .26);
	background:
		radial-gradient(circle at 100% 0%, rgba(201, 149, 42, .12), transparent 26rem),
		linear-gradient(135deg, rgba(35, 24, 13, .98), rgba(18, 12, 5, .98));
	color: var(--sand);
	box-shadow: 0 34px 90px rgba(0, 0, 0, .48);
	scrollbar-color: rgba(232, 201, 122, .82) rgba(18, 12, 5, .88);
	scrollbar-gutter: stable;
	scrollbar-width: thin;
}

.modal-panel::-webkit-scrollbar {
	width: 10px;
}

.modal-panel::-webkit-scrollbar-track {
	background: rgba(18, 12, 5, .88);
}

.modal-panel::-webkit-scrollbar-thumb {
	border: 3px solid rgba(18, 12, 5, .88);
	border-radius: 999px;
	background: linear-gradient(180deg, var(--gold-2), var(--gold));
}

.modal-close {
	position: sticky;
	top: 0;
	float: right;
	z-index: 2;
	width: 42px;
	height: 42px;
	margin: -16px -16px 10px 18px;
	border: 1px solid rgba(201, 149, 42, .38);
	border-radius: 50%;
	background: rgba(18, 12, 5, .82);
	color: var(--gold-2);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.modal-panel h2 {
	max-width: 760px;
	margin-bottom: 16px;
	color: #fff;
}

.modal-panel h3 {
	margin: 28px 0 12px;
	color: var(--gold-2);
	font-size: 25px;
}

.modal-panel p,
.modal-panel li {
	color: rgba(242, 232, 213, .74);
	font-size: 14.5px;
	line-height: 1.78;
}

.modal-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 20px;
}

.modal-meta span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid rgba(201, 149, 42, .24);
	color: var(--gold-2);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .10em;
	text-transform: uppercase;
}

.modal-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 24px;
}

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

.modal-grid > div {
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, .12);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .035)),
		rgba(61, 43, 26, .24);
}

.modal-showcase {
	display: grid;
	grid-template-columns: 1.15fr .85fr .85fr;
	gap: 12px;
	margin: 28px 0 4px;
}

.modal-showcase img {
	width: 100%;
	height: 210px;
	object-fit: cover;
	border: 1px solid rgba(201, 149, 42, .18);
	filter: saturate(.95) contrast(1.04);
}

.modal-showcase img:first-child {
	height: 100%;
	min-height: 210px;
}

.modal-grid ul,
.modal-timeline {
	margin: 0;
	padding-left: 20px;
}

.modal-timeline {
	display: grid;
	gap: 12px;
}

.modal-timeline li {
	padding: 14px 16px;
	border-left: 2px solid var(--gold);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025)),
		rgba(61, 43, 26, .22);
}

.modal-note {
	margin: 22px 0 0;
	padding: 16px 18px;
	border: 1px solid rgba(201, 149, 42, .22);
	background: rgba(201, 149, 42, .08);
	color: rgba(242, 232, 213, .72);
	font-size: 13px;
}

body.modal-open {
	overflow: hidden;
}

.footer {
	background: var(--night);
	color: rgba(255, 255, 255, .72);
}

.footer-grid {
	padding: 62px 0 38px;
	display: grid;
	grid-template-columns: 1.4fr repeat(3, .7fr);
	gap: 32px;
}

.footer-brand {
	display: grid;
	align-content: start;
	gap: 18px;
}

.footer-wordmark {
	width: max-content;
	font-size: 52px;
	padding-bottom: 18px;
}

.footer-wordmark:after {
	left: 4px;
	font-size: 11px;
	letter-spacing: .32em;
}

.footer p {
	max-width: 430px;
	margin: 0;
}

.footer h3 {
	margin-bottom: 16px;
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.footer a {
	display: block;
	margin: 0 0 10px;
	font-size: 14px;
	font-weight: 800;
	color: rgba(255, 255, 255, .70);
}

.footer a:hover {
	color: var(--gold-2);
}

.footer .social-links a {
	display: inline-flex;
	margin: 0;
	color: var(--gold-2);
	font-size: 12px;
}

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

.footer-bar {
	width: min(var(--max), calc(100% - 40px));
	margin: 0 auto;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, .12);
	font-size: 12px;
}

.footer-bar p {
	margin: 0;
}

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .65s ease, transform .65s ease;
}

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

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*:before,
	*:after {
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 1100px) {
	.nav-links a {
		padding-inline: 9px;
		font-size: 11px;
	}

	.destination-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 300px;
	}

	.destination-card.large {
		grid-column: span 2;
		grid-row: span 1;
	}

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

@media (max-width: 900px) {
	.site-header {
		inset-top: 0;
	}

	.site-nav {
		width: 100%;
		min-height: 68px;
		padding: 0 16px;
	}

	.nav-toggle {
		display: block;
	}

	.nav-panel {
		position: absolute;
		top: calc(100% + 10px);
		left: 0;
		right: 0;
		display: grid;
		gap: 12px;
		padding: 12px;
		border: 1px solid var(--white-line);
		border-radius: var(--radius);
		background: rgba(20, 14, 9, .98);
		box-shadow: var(--shadow);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
	}

	body.nav-open .nav-panel {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.nav-links {
		display: grid;
		gap: 4px;
	}

	.nav-links a,
	.nav-cta {
		width: 100%;
		justify-content: flex-start;
		border-radius: 6px;
		min-height: 46px;
	}

	.dropdown {
		position: static;
		display: none;
		margin-top: 4px;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
	}

	.has-dropdown:hover .dropdown,
	.has-dropdown:focus-within .dropdown {
		display: block;
	}

	.hero-content {
		width: calc(100% - 24px);
		padding: 132px 0 44px;
	}

	.hero {
		min-height: min(100svh, 900px);
	}

	h1 {
		font-size: clamp(42px, 12vw, 70px);
	}

	.section-head.split,
	.trip-grid,
	.guide-grid,
	.video-grid,
	.map-card,
	.about-grid,
	.contact-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.trip-grid {
		gap: 18px;
	}

	.trip-body {
		padding: 26px 22px 24px;
	}

	.destination-grid {
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
		gap: 18px;
	}

	.stats-strip {
		display: flex;
		flex-wrap: wrap;
	}

	.stats-strip div:nth-child(2n) {
		border-right: 0;
	}

	.stats-strip div {
		flex: 0 0 50%;
		max-width: 50%;
		padding: 26px 14px;
	}

	.destination-card.large {
		grid-column: span 1;
	}

	.destination-card {
		min-height: 350px;
		padding: 10px;
		border: 1px solid rgba(201, 149, 42, .16);
		background:
			linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025)),
			rgba(26, 18, 8, .76);
		box-shadow: 0 24px 58px rgba(0, 0, 0, .16);
	}

	.destination-card > img,
	.destination-card:after {
		inset: 10px;
		width: calc(100% - 20px);
		height: calc(100% - 20px);
	}

	.destination-card div,
	.destination-card.large div {
		padding: 28px;
	}

	.destination-card h3 {
		font-size: 27px;
		line-height: 1.08;
	}

	.destination-card.large h3 {
		font-size: 30px;
	}

	.section {
		padding: 72px 0;
	}

	.map-frame {
		min-height: 300px;
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, .10);
	}

	.carousel-shell:before,
	.carousel-shell:after {
		width: 54px;
	}

	.carousel-slide {
		flex-basis: 260px;
		height: 210px;
	}

	.about-media,
	.about-media img {
		min-height: 430px;
	}

	.media-note {
		right: 16px;
	}
}

@media (max-width: 560px) {
	html,
	body {
		width: 100%;
		max-width: 100%;
		overflow-x: hidden;
	}

	body {
		font-size: 14px;
	}

	.container {
		width: calc(100vw - 24px);
		max-width: none;
		margin-left: 12px;
		margin-right: 12px;
	}

	.site-nav {
		width: 100%;
		max-width: none;
		margin-left: 0;
		margin-right: 0;
	}

	.brand-mark {
		gap: 5px;
		font-size: 21px;
	}

	.brand-mark:after {
		margin-left: 0;
		font-size: 7px;
		letter-spacing: .18em;
	}

	h1 {
		max-width: 366px;
		font-size: clamp(36px, 10vw, 44px);
		line-height: .98;
		overflow-wrap: break-word;
	}

	h2 {
		font-size: 34px;
	}

	h3 {
		font-size: 22px;
	}

	.hero-copy {
		max-width: 366px;
		font-size: 14px;
	}

	.destination-grid {
		gap: 14px;
	}

	.destination-card {
		min-height: 330px;
		padding: 8px;
	}

	.destination-card > img,
	.destination-card:after {
		inset: 8px;
		width: calc(100% - 16px);
		height: calc(100% - 16px);
	}

	.destination-card div,
	.destination-card.large div {
		padding: 22px;
	}

	.destination-card h3,
	.destination-card.large h3 {
		font-size: 25px;
	}

	.hero {
		width: 100vw;
		max-width: 100vw;
		min-height: min(100svh, 820px);
	}

	.hero-scroll {
		display: none;
	}

	.hero-actions {
		display: grid;
		max-width: 366px;
	}

	.stats-strip strong {
		font-size: 36px;
	}

	.stats-strip {
		width: 100vw;
		max-width: 100vw;
		min-width: 0;
	}

	.stats-strip div {
		flex: 0 0 50vw;
		max-width: 50vw;
		overflow: hidden;
	}

	.stats-strip span {
		display: block;
		max-width: 100%;
		font-size: 9px;
		letter-spacing: .12em;
	}

	.btn {
		width: 100%;
	}

	.trip-body,
	.guide-card,
	.map-copy,
	.enquiry-form {
		padding: 18px;
	}

	.safari-carousel {
		padding: 14px 0;
	}

	.carousel-track {
		gap: 10px;
		animation-duration: 36s;
	}

	.carousel-slide {
		flex-basis: 76vw;
		height: 240px;
	}

	.carousel-slide figcaption {
		left: 14px;
		right: 14px;
		bottom: 14px;
	}

	.about-media,
	.about-media img {
		min-height: 360px;
	}

	.back-to-top {
		right: 16px;
		bottom: 92px;
		width: 46px;
		height: 46px;
		font-size: 22px;
	}

	.video-grid,
	.platform-grid {
		grid-template-columns: 1fr;
	}

	.platform-card {
		min-height: 145px;
	}

	.itinerary-modal {
		padding: 12px;
		align-items: end;
	}

	.modal-panel {
		width: 100%;
		max-height: 90dvh;
		padding: 28px 20px;
	}

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

	.modal-grid--three,
	.modal-showcase {
		grid-template-columns: 1fr;
	}

	.modal-showcase img,
	.modal-showcase img:first-child {
		height: 180px;
		min-height: 0;
	}

	.modal-panel h2 {
		font-size: 34px;
		line-height: .98;
	}

	.modal-panel h3 {
		font-size: 22px;
	}

	.modal-panel p,
	.modal-panel li {
		font-size: 13.5px;
		line-height: 1.74;
	}

	.modal-meta span {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.modal-grid > div,
	.modal-timeline li {
		padding: 16px;
	}

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

	.faq-item {
		padding-inline: 18px;
	}

	.faq-question {
		min-height: 64px;
		font-size: 15px;
	}
}
