:root {
	--gu-forest: #08261f;
	--gu-forest-deep: #031813;
	--gu-moss: #264c3f;
	--gu-gold: #e2a927;
	--gu-gold-bright: #f1ba38;
	--gu-ivory: #f6f1e7;
	--gu-sand: #e8decc;
	--gu-ink: #15231e;
	--gu-muted: #66736c;
	--gu-line: rgba(21, 35, 30, .16);
	--gu-serif: Georgia, "Times New Roman", serif;
	--gu-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	overflow-x: hidden;
	background: var(--gu-ivory);
	color: var(--gu-ink);
	font-family: var(--gu-sans);
	-webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button,
a,
input,
select,
textarea { outline-offset: 4px; }

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

.screen-reader-text:focus {
	z-index: 99999;
	top: 10px;
	left: 10px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: #fff;
	color: var(--gu-ink);
}

.gu-container {
	width: min(1380px, calc(100% - 64px));
	margin-inline: auto;
}

.gu-section { padding-block: 116px; }
.gu-eyebrow {
	margin: 0 0 22px;
	color: var(--gu-gold-bright);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .24em;
	text-transform: uppercase;
}
.gu-eyebrow.gu-dark { color: #946607; }

h1,
h2,
h3 { text-wrap: balance; }

em { color: var(--gu-gold-bright); }

.gu-topline {
	min-height: 34px;
	border-bottom: 1px solid rgba(255,255,255,.13);
	background: rgba(2,20,16,.88);
	color: rgba(255,255,255,.64);
	font-size: 10px;
	letter-spacing: .06em;
}

.gu-topline .gu-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 34px;
}

.gu-site-header {
	position: relative;
	z-index: 50;
	background: var(--gu-forest-deep);
	color: #fff;
}

.home .gu-site-header {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(2,20,16,.92), rgba(2,20,16,.18));
}

.gu-header-inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(290px, 1fr) auto auto;
	align-items: center;
	gap: 30px;
	min-height: 96px;
	border-bottom: 1px solid rgba(255,255,255,.22);
}

.gu-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	width: fit-content;
	min-width: 0;
}

.gu-brand img {
	flex: 0 0 auto;
	width: 64px;
	height: 64px;
	padding: 2px;
	border: 1px solid rgba(255,255,255,.7);
	border-radius: 50%;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.gu-brand span { display: grid; gap: 4px; min-width: 0; }
.gu-brand strong {
	font-family: var(--gu-serif);
	font-size: clamp(26px, 2vw, 37px);
	font-weight: 400;
	line-height: 1;
	letter-spacing: -.02em;
	white-space: nowrap;
}
.gu-brand small {
	overflow: hidden;
	color: rgba(255,255,255,.7);
	font-size: 11px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gu-primary-nav .gu-menu {
	display: flex;
	align-items: center;
	gap: clamp(18px, 1.7vw, 30px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.gu-primary-nav li { position: relative; }
.gu-primary-nav a {
	display: block;
	padding: 12px 0;
	color: rgba(255,255,255,.86);
	font-size: 13px;
	white-space: nowrap;
}

.gu-primary-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: -22px;
	display: none;
	min-width: 240px;
	margin: 0;
	padding: 14px 22px;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 10px;
	background: var(--gu-forest-deep);
	list-style: none;
	box-shadow: 0 20px 50px rgba(0,0,0,.28);
}

.gu-primary-nav li:hover > .sub-menu,
.gu-primary-nav li:focus-within > .sub-menu { display: block; }
.gu-primary-nav .sub-menu a { white-space: normal; }

.gu-primary-nav .gu-has-mega { position: static; }
.gu-mega-toggle {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 12px 0;
	border: 0;
	background: transparent;
	color: rgba(255,255,255,.86);
	font-size: 13px;
	cursor: pointer;
}
.gu-mega-toggle > span { color: var(--gu-gold-bright); transition: transform .18s ease; }
.gu-has-mega:hover > .gu-mega-toggle > span,
.gu-has-mega.is-expanded > .gu-mega-toggle > span { transform: rotate(180deg); }
.gu-mega-menu {
	position: absolute;
	z-index: 80;
	top: calc(100% - 1px);
	right: 0;
	left: 0;
	display: grid;
	grid-template-columns: 250px minmax(0,1fr);
	gap: 32px;
	width: min(1260px,calc(100vw - 64px));
	max-height: calc(100vh - 132px);
	margin: 0 auto;
	padding: 28px;
	overflow-y: auto;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 0 0 18px 18px;
	background: rgba(3,27,21,.99);
	box-shadow: 0 30px 80px rgba(0,0,0,.38);
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
	transition: opacity .18s ease, transform .18s ease;
}
.gu-has-mega:hover > .gu-mega-menu,
.gu-has-mega:focus-within > .gu-mega-menu,
.gu-has-mega.is-expanded > .gu-mega-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}
.gu-mega-intro {
	padding: 22px;
	border-radius: 14px;
	background: linear-gradient(160deg,rgba(226,169,39,.18),transparent 70%),#0b352a;
}
.gu-mega-intro small { color: var(--gu-gold-bright); font-size: 9px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.gu-mega-intro h2 { margin: 11px 0; font-family: var(--gu-serif); font-size: 30px; font-weight: 400; line-height: 1.06; }
.gu-mega-intro p { margin: 0 0 18px; color: rgba(255,255,255,.65); font-size: 11px; line-height: 1.6; }
.gu-mega-intro a { color: var(--gu-gold-bright); font-size: 11px; font-weight: 800; white-space: normal; }
.gu-mega-columns { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 22px; }
.gu-destination-columns { grid-template-columns: repeat(3,minmax(0,1fr)); }
.gu-mega-columns > div { display: flex; min-width: 0; flex-direction: column; }
.gu-mega-columns > div > a:not(.gu-mega-heading) {
	padding: 8px 0;
	border-bottom: 1px solid rgba(255,255,255,.08);
	color: rgba(255,255,255,.69);
	font-size: 10px;
	line-height: 1.42;
	white-space: normal;
	transition: color .16s ease,padding-left .16s ease;
}
.gu-mega-columns > div > a:not(.gu-mega-heading):hover { padding-left: 5px; color: #fff; }
.gu-mega-heading {
	display: block;
	margin-bottom: 8px;
	color: var(--gu-gold-bright);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.gu-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	place-content: center;
	gap: 6px;
	border: 1px solid rgba(255,255,255,.5);
	border-radius: 50%;
	background: transparent;
}
.gu-menu-toggle > span:not(.screen-reader-text) { width: 19px; height: 1px; background: #fff; }

.gu-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 26px;
	border: 0;
	border-radius: 7px;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	transition: transform .18s ease, background .18s ease;
}
.gu-button:hover { transform: translateY(-2px); }
.gu-button-gold {
	background: linear-gradient(135deg, var(--gu-gold-bright), #c98b0d);
	color: #14231d;
	box-shadow: 0 17px 42px rgba(211,151,13,.2);
}
.gu-button-ghost { border: 1px solid rgba(255,255,255,.67); background: rgba(3,28,21,.36); color: #fff; backdrop-filter: blur(8px); }
.gu-button-outline { border: 1px solid var(--gu-ink); background: transparent; color: var(--gu-ink); }
.gu-centered-button { margin: 40px auto 0; }
.gu-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }

.gu-hero {
	position: relative;
	min-height: 930px;
	padding-top: 130px;
	overflow: hidden;
	background: var(--gu-forest-deep);
	color: #fff;
}

.gu-hero::before {
	position: absolute;
	inset: 0;
	background-image: var(--gu-hero-image);
	background-position: 68% center;
	background-size: cover;
	content: "";
}
.gu-hero-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(2,22,17,.99), rgba(3,26,20,.88) 35%, rgba(3,24,19,.16) 74%),
		linear-gradient(0deg, rgba(2,20,16,.83), transparent 48%);
}

.gu-hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0,1fr) minmax(390px,.7fr);
	align-items: center;
	gap: clamp(50px,8vw,120px);
	min-height: 700px;
	padding-block: 90px 75px;
}

.gu-hero-copy h1 {
	max-width: 790px;
	margin: 0;
	font-family: var(--gu-serif);
	font-size: clamp(58px,6vw,92px);
	font-weight: 400;
	line-height: .99;
	letter-spacing: -.045em;
}
.gu-hero-copy > p:not(.gu-eyebrow) {
	max-width: 630px;
	margin: 28px 0 0;
	color: rgba(255,255,255,.8);
	font-size: 17px;
	line-height: 1.7;
}

.gu-planner {
	display: grid;
	gap: 15px;
	padding: 32px;
	border: 1px solid rgba(255,255,255,.28);
	border-radius: 20px;
	background: linear-gradient(145deg,rgba(19,52,41,.72),rgba(8,35,27,.52));
	box-shadow: 0 30px 90px rgba(0,0,0,.32);
	backdrop-filter: blur(16px);
}
.gu-planner > span { color: var(--gu-gold-bright); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.gu-planner h2 { margin: 0 0 10px; font-family: var(--gu-serif); font-size: 34px; font-weight: 400; }
.gu-planner label { display: grid; gap: 7px; font-size: 11px; font-weight: 800; }
.gu-planner select {
	width: 100%;
	height: 48px;
	padding: 0 12px;
	border: 1px solid rgba(255,255,255,.35);
	border-radius: 7px;
	background: rgba(4,27,21,.58);
	color: #fff;
}
.gu-planner option { color: var(--gu-ink); }
.gu-planner .gu-button { justify-self: start; margin-top: 5px; }

.gu-proof {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	gap: clamp(25px,6vw,80px);
	min-height: 78px;
	padding: 27px 30px;
	border-top: 1px solid rgba(255,255,255,.16);
	background: rgba(2,19,15,.76);
	color: rgba(255,255,255,.75);
	font-size: 12px;
}
.gu-proof span { display: inline-flex; align-items: center; gap: 20px; white-space: nowrap; }
.gu-proof span:not(:last-child)::after { width: 5px; height: 5px; border-radius: 50%; background: var(--gu-gold); content: ""; }

.gu-intro { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(60px,10vw,155px); }
.gu-intro h2,
.gu-heading h2,
.gu-operator h2,
.gu-plan-cta h2,
.gu-inquiry-layout h2 {
	margin: 0;
	font-family: var(--gu-serif);
	font-weight: 400;
	line-height: 1.06;
	letter-spacing: -.04em;
}
.gu-intro h2 { font-size: clamp(45px,4.5vw,72px); }
.gu-intro h2 em,
.gu-operator h2 em { color: #a87306; }
.gu-intro > div:last-child { padding-top: 24px; }
.gu-intro > div:last-child p { margin: 0 0 22px; color: #435149; font-size: 16px; line-height: 1.82; }
.gu-text-link { display: inline-flex; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 800; }

.gu-journeys { overflow: hidden; background: #e9dfce; }
.gu-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 42px; }
.gu-heading h2 { max-width: 900px; font-size: clamp(43px,4vw,66px); }
.gu-heading > p { max-width: 420px; margin: 0; color: var(--gu-muted); line-height: 1.7; }
.gu-slider-controls { display: flex; gap: 9px; }
.gu-slider-controls button { width: 46px; height: 46px; border: 1px solid var(--gu-ink); border-radius: 50%; background: transparent; cursor: pointer; }

.gu-card-rail {
	display: grid;
	grid-auto-columns: minmax(300px,370px);
	grid-auto-flow: column;
	gap: 21px;
	overflow-x: auto;
	padding-bottom: 18px;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}
.gu-card-rail::-webkit-scrollbar { display: none; }
.gu-safari-card { overflow: hidden; border-radius: 17px; background: var(--gu-forest); scroll-snap-align: start; }
.gu-safari-card > a { position: relative; display: grid; grid-template-rows: 320px 190px; height: 510px; }
.gu-safari-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gu-safari-card:hover img { transform: scale(1.05); }
.gu-safari-card > a::after { position: absolute; inset: 0 0 auto; height: 320px; background: linear-gradient(0deg,rgba(2,22,17,.38),transparent 55%); content: ""; }
.gu-destination-card > a::after { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(2,22,17,.96),transparent 65%); content: ""; }
.gu-card-days { position: absolute; z-index: 2; top: 18px; left: 18px; padding: 8px 11px; border-radius: 999px; background: var(--gu-gold); color: var(--gu-ink); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.gu-card-overlay { position: static; z-index: 2; display: flex; min-width: 0; flex-direction: column; justify-content: space-between; padding: 26px 28px; background: var(--gu-forest); color: #fff; }
.gu-destination-card .gu-card-overlay { position: absolute; right: 0; bottom: 0; left: 0; background: transparent; }
.gu-card-overlay small { color: var(--gu-gold-bright); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.gu-card-overlay h3 {
	display: -webkit-box;
	min-height: 0;
	margin: 8px 0 14px;
	overflow: hidden;
	font-family: var(--gu-serif);
	font-size: clamp(24px,2.2vw,30px);
	font-weight: 400;
	line-height: 1.1;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
.gu-card-overlay p { max-width: 520px; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.55; }
.gu-card-overlay strong { font-size: 11px; }

.gu-package-library { background: var(--gu-forest); color: #fff; }
.gu-package-library .gu-heading > p { color: rgba(255,255,255,.64); }
.gu-package-filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; }
.gu-package-filters button {
	padding: 10px 17px;
	border: 1px solid rgba(255,255,255,.28);
	border-radius: 999px;
	background: transparent;
	color: rgba(255,255,255,.82);
	font-size: 12px;
	cursor: pointer;
}
.gu-package-filters button.is-active { border-color: var(--gu-gold); background: var(--gu-gold); color: var(--gu-ink); }
.gu-package-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 19px; }
.gu-package-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 15px;
	background: rgba(255,255,255,.055);
	transition: transform .22s ease,border-color .22s ease,background .22s ease;
}
.gu-package-card[hidden] { display: none; }
.gu-package-card:hover { border-color: rgba(241,186,56,.62); background: rgba(255,255,255,.085); transform: translateY(-6px); }
.gu-package-card > a { display: flex; height: 100%; flex-direction: column; }
.gu-package-image { position: relative; overflow: hidden; }
.gu-package-image::after { position: absolute; inset: 45% 0 0; background: linear-gradient(0deg,rgba(3,24,19,.78),transparent); content: ""; }
.gu-package-image img { width: 100%; aspect-ratio: 1.45; object-fit: cover; transition: transform .52s ease; }
.gu-package-card:hover .gu-package-image img { transform: scale(1.055); }
.gu-package-image > span {
	position: absolute;
	z-index: 2;
	right: 13px;
	bottom: 13px;
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--gu-gold);
	color: var(--gu-ink);
	font-size: 9px;
	font-weight: 900;
	text-transform: uppercase;
}
.gu-package-copy { display: flex; height: 100%; flex-direction: column; padding: 22px; }
.gu-package-copy small { color: var(--gu-gold-bright); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.gu-package-copy h3 { margin: 10px 0 11px; font-family: var(--gu-serif); font-size: 25px; font-weight: 400; line-height: 1.12; }
.gu-package-copy p {
	display: -webkit-box;
	margin: 0 0 21px;
	overflow: hidden;
	color: rgba(255,255,255,.61);
	font-size: 11px;
	line-height: 1.65;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
.gu-package-copy strong { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; color: #fff; font-size: 10px; }
.gu-package-copy strong span { color: var(--gu-gold-bright); font-size: 15px; }
.gu-package-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 42px;
	padding: 28px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 15px;
	background: rgba(255,255,255,.05);
}
.gu-package-cta p { max-width: 700px; margin: 0; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.7; }
.gu-package-cta .gu-button { flex: 0 0 auto; }

.gu-destination-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 340px; gap: 18px; }
.gu-destination-card { grid-column: span 4; overflow: hidden; border-radius: 17px; }
.gu-destination-card:nth-child(1),
.gu-destination-card:nth-child(4),
.gu-destination-card:nth-child(7),
.gu-destination-card:nth-child(10) { grid-column: span 8; }
.gu-destination-card > a { position: relative; display: block; height: 100%; }
.gu-destination-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gu-destination-card:hover img { transform: scale(1.05); }

.gu-operator { display: grid; grid-template-columns: 1fr 1fr; min-height: 740px; background: var(--gu-forest); color: #fff; }
.gu-operator-image img { width: 100%; height: 100%; object-fit: cover; }
.gu-operator-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px,8vw,118px); }
.gu-operator h2 { font-size: clamp(47px,5vw,76px); }
.gu-operator-copy > p:not(.gu-eyebrow) { max-width: 650px; margin: 28px 0 35px; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.8; }
.gu-operator .gu-button { align-self: flex-start; }

.gu-journal-grid,
.gu-archive-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.gu-article-card img { width: 100%; aspect-ratio: 1.5; border-radius: 13px; object-fit: cover; }
.gu-article-card small { display: block; margin-top: 20px; color: #946607; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.gu-article-card h3 { margin: 10px 0 17px; font-family: var(--gu-serif); font-size: 29px; font-weight: 400; line-height: 1.15; }
.gu-article-card strong { font-size: 11px; }

.gu-plan-cta {
	position: relative;
	padding-block: 108px;
	background:
		linear-gradient(90deg,rgba(2,24,18,.96),rgba(4,35,27,.65)),
		var(--gu-plan-image) center/cover;
	color: #fff;
}
.gu-plan-cta .gu-container { display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.gu-plan-cta h2 { max-width: 780px; font-size: clamp(47px,5vw,74px); }
.gu-plan-cta p:not(.gu-eyebrow) { max-width: 660px; color: rgba(255,255,255,.72); line-height: 1.7; }
.gu-plan-cta .gu-button { flex: 0 0 auto; }

.gu-inner-hero {
	position: relative;
	display: flex;
	align-items: end;
	min-height: 590px;
	overflow: hidden;
	background: var(--gu-forest);
	color: #fff;
}
.gu-inner-hero > img,
.gu-inner-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.gu-inner-hero > img { object-fit: cover; }
.gu-inner-shade { background: linear-gradient(0deg,rgba(2,22,17,.96),rgba(2,22,17,.05) 72%),linear-gradient(90deg,rgba(2,22,17,.6),transparent 68%); }
.gu-inner-hero-copy { position: relative; z-index: 2; padding-block: 105px 68px; }
.gu-breadcrumbs { display: flex; gap: 10px; margin-bottom: 34px; color: rgba(255,255,255,.63); font-size: 11px; }
.gu-inner-hero h1 { max-width: 1080px; margin: 0; font-family: var(--gu-serif); font-size: clamp(53px,6vw,90px); font-weight: 400; line-height: .98; letter-spacing: -.045em; }
.gu-inner-meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.gu-inner-meta span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.34); border-radius: 999px; background: rgba(3,30,23,.38); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.gu-page-hero { min-height: 500px; }

.gu-single-layout { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: clamp(58px,8vw,115px); align-items: start; padding-block: 95px 125px; }
.gu-entry { min-width: 0; }
.gu-lead { margin: 0 0 45px; padding-bottom: 35px; border-bottom: 1px solid var(--gu-line); color: #2f453b; font-family: var(--gu-serif); font-size: clamp(25px,2.5vw,37px); line-height: 1.4; }
.gu-entry-content { color: #3d4b44; font-size: 17px; line-height: 1.88; }
.gu-entry-content h2,
.gu-entry-content h3,
.gu-entry-content h4,
.gu-page-content h2,
.gu-page-content h3 { color: var(--gu-ink); font-family: var(--gu-serif); font-weight: 400; letter-spacing: -.025em; }
.gu-entry-content h2,
.gu-page-content h2 { margin: 60px 0 18px; font-size: clamp(37px,4vw,55px); line-height: 1.1; }
.gu-entry-content h3,
.gu-page-content h3 { margin: 48px 0 16px; padding: 22px 23px 22px 32px; border-left: 4px solid var(--gu-gold); border-radius: 0 11px 11px 0; background: #eee5d6; font-size: clamp(25px,3vw,35px); line-height: 1.2; }
.gu-entry-content p,
.gu-page-content p { margin: 0 0 23px; }
.gu-entry-content a,
.gu-page-content a { color: #875f08; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.gu-entry-content img,
.gu-page-content img { height: auto; margin: 32px 0; border-radius: 13px; }
.gu-entry-content table,
.gu-page-content table { display: block; width: 100%; margin: 30px 0; overflow-x: auto; border-collapse: collapse; }
.gu-entry-content th,
.gu-entry-content td,
.gu-page-content th,
.gu-page-content td { min-width: 145px; padding: 13px; border: 1px solid #d5c9b7; text-align: left; }
.gu-entry-content th,
.gu-page-content th { background: var(--gu-forest); color: #fff; }
.gu-entry-content blockquote { margin: 40px 0; padding: 28px; border-radius: 12px; background: var(--gu-forest); color: #fff; font-family: var(--gu-serif); font-size: 25px; line-height: 1.45; }

.gu-trip-aside { position: sticky; top: 28px; display: grid; gap: 17px; }
.gu-aside-card { padding: 32px; border-radius: 17px; background: var(--gu-forest); color: #fff; box-shadow: 0 25px 70px rgba(12,38,30,.17); }
.gu-aside-card > span { color: var(--gu-gold-bright); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.gu-aside-card h2 { margin: 14px 0; font-family: var(--gu-serif); font-size: 35px; font-weight: 400; line-height: 1.08; }
.gu-aside-card p { margin: 0 0 24px; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.7; }
.gu-aside-card .gu-button { width: 100%; }
.gu-aside-notes { display: grid; padding: 14px 26px; border: 1px solid var(--gu-line); border-radius: 14px; background: #f1e9dc; }
.gu-aside-notes div { display: grid; gap: 4px; padding-block: 15px; }
.gu-aside-notes div:not(:last-child) { border-bottom: 1px solid var(--gu-line); }
.gu-aside-notes strong { font-size: 12px; }
.gu-aside-notes span { color: var(--gu-muted); font-size: 10px; }

.gu-page-content { max-width: 980px; padding-block: 90px 120px; color: #3d4b44; font-size: 17px; line-height: 1.88; }
.gu-inquiry-layout { display: grid; grid-template-columns: minmax(0,.65fr) minmax(520px,1fr); gap: clamp(60px,9vw,130px); padding-block: 100px 125px; }
.gu-inquiry-layout h2 { font-size: clamp(43px,4.5vw,67px); }
.gu-inquiry-layout > div > p:last-child { color: var(--gu-muted); line-height: 1.75; }
.gu-inquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 36px; border-radius: 17px; background: #e8dece; }
.gu-inquiry-form label { display: grid; gap: 8px; font-size: 11px; font-weight: 800; }
.gu-inquiry-form input,
.gu-inquiry-form select,
.gu-inquiry-form textarea { width: 100%; min-height: 50px; padding: 11px 12px; border: 1px solid #c7bba9; border-radius: 7px; background: #fffdf8; color: var(--gu-ink); }
.gu-inquiry-form textarea { resize: vertical; }
.gu-inquiry-form .gu-full { grid-column: 1/-1; }
.gu-inquiry-form .gu-button { grid-column: 1/-1; justify-self: start; }
.gu-honeypot { position: absolute !important; left: -9999px !important; }
.gu-form-message { margin-bottom: 18px; padding: 15px; border-radius: 8px; }
.gu-form-message.success { background: #dff1e7; color: #16422e; }
.gu-form-message.error { background: #f7dddd; color: #772222; }

.gu-archive-hero,
.gu-simple-hero {
	position: relative;
	padding-block: 120px 100px;
	background: linear-gradient(90deg,rgba(2,24,18,.95),rgba(4,35,27,.62)),var(--gu-archive-image) center/cover;
	color: #fff;
}
.gu-archive-hero > .gu-container,
.gu-simple-hero > .gu-container { position: relative; z-index: 2; }
.gu-archive-hero h1,
.gu-simple-hero h1 { max-width: 950px; margin: 0; font-family: var(--gu-serif); font-size: clamp(54px,6vw,86px); font-weight: 400; line-height: 1; letter-spacing: -.045em; }
.gu-archive-description { max-width: 700px; margin-top: 22px; color: rgba(255,255,255,.72); line-height: 1.7; }
.gu-archive-list { padding-block: 90px 120px; }
.gu-archive-grid .gu-safari-card > a,
.gu-archive-grid .gu-destination-card > a { height: 470px; }
.gu-archive-grid .gu-destination-card { grid-column: auto; }
.nav-links { display: flex; justify-content: center; gap: 8px; margin-top: 55px; }
.nav-links a,
.nav-links .current { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--gu-line); border-radius: 50%; }
.nav-links .current { background: var(--gu-forest); color: #fff; }

.gu-search-form { display: flex; gap: 10px; max-width: 620px; margin-top: 30px; }
.gu-search-form label { flex: 1; }
.gu-search-form input { width: 100%; height: 54px; padding: 0 15px; border: 1px solid rgba(255,255,255,.4); border-radius: 7px; background: rgba(255,255,255,.1); color: #fff; }
.gu-404 { display: grid; min-height: 720px; place-items: center; padding-block: 100px; background: linear-gradient(90deg,rgba(2,24,18,.96),rgba(4,35,27,.66)),url("../images/Mgahinga-Gorilla-National-Park.jpg") center/cover; color: #fff; }
.gu-404 h1 { max-width: 900px; margin: 0; font-family: var(--gu-serif); font-size: clamp(55px,7vw,96px); font-weight: 400; line-height: .98; }
.gu-404 p:not(.gu-eyebrow) { max-width: 630px; color: rgba(255,255,255,.72); line-height: 1.7; }
.gu-empty { grid-column: 1/-1; padding: 55px; border-radius: 16px; background: #ece3d4; text-align: center; }

.gu-footer { padding-top: 80px; background: var(--gu-forest-deep); color: #fff; }
.gu-footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3,1fr); gap: clamp(34px,6vw,95px); padding-bottom: 62px; }
.gu-footer .gu-brand img { width: 58px; height: 58px; }
.gu-footer .gu-brand strong { font-size: 29px; }
.gu-footer-brand p { max-width: 380px; margin: 22px 0 13px; color: rgba(255,255,255,.6); font-size: 12px; line-height: 1.7; }
.gu-footer-grid h2 { margin: 9px 0 23px; color: var(--gu-gold-bright); font-family: var(--gu-sans); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.gu-footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 13px; }
.gu-footer-grid > div:not(:first-child) a { color: rgba(255,255,255,.66); font-size: 12px; }
.gu-footer-bottom { display: flex; justify-content: space-between; gap: 22px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.45); font-size: 10px; }

@media (max-width: 1180px) {
	.gu-header-inner { grid-template-columns: 1fr auto auto; }
	.gu-menu-toggle { display: grid; }
	.gu-primary-nav {
		position: absolute;
		top: 100%;
		right: 32px;
		display: none;
		width: min(380px,calc(100vw - 32px));
		padding: 24px;
		border: 1px solid rgba(255,255,255,.18);
		border-radius: 11px;
		background: rgba(3,28,21,.99);
		box-shadow: 0 22px 60px rgba(0,0,0,.34);
	}
	.gu-primary-nav.is-open { display: block; }
	.gu-primary-nav .gu-menu { display: grid; gap: 7px; }
	.gu-primary-nav .sub-menu { position: static; display: grid; padding: 6px 0 6px 16px; border: 0; background: transparent; box-shadow: none; }
	.gu-primary-nav > .gu-menu > li > a,
	.gu-mega-toggle { display: flex; width: 100%; justify-content: space-between; padding: 10px 0; text-align: left; }
	.gu-mega-menu {
		position: static;
		display: none;
		grid-template-columns: 1fr;
		width: 100%;
		max-height: 52vh;
		margin: 5px 0 12px;
		padding: 13px;
		border-radius: 11px;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}
	.gu-has-mega:hover > .gu-mega-menu,
	.gu-has-mega:focus-within > .gu-mega-menu { display: none; }
	.gu-has-mega.is-expanded > .gu-mega-menu,
	.gu-has-mega.is-expanded:hover > .gu-mega-menu,
	.gu-has-mega.is-expanded:focus-within > .gu-mega-menu { display: grid; }
	.gu-mega-columns,
	.gu-destination-columns { grid-template-columns: 1fr 1fr; gap: 18px; }
	.gu-package-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
	.gu-hero-inner { grid-template-columns: 1fr 400px; gap: 44px; }
}

@media (max-width: 920px) {
	.gu-container { width: min(100% - 40px,760px); }
	.gu-section { padding-block: 84px; }
	.gu-header-cta {
		position: fixed;
		z-index: 999;
		right: 18px;
		bottom: 18px;
		left: 18px;
		display: inline-flex;
		min-height: 52px;
		justify-content: center;
		border: 2px solid rgba(255,255,255,.72);
		border-radius: 13px;
		box-shadow: 0 18px 50px rgba(3,24,19,.38);
		letter-spacing: .08em;
		text-transform: uppercase;
	}
	.gu-hero { min-height: 1020px; }
	.gu-hero::before { background-position: 63% center; }
	.gu-hero-shade { background: linear-gradient(0deg,rgba(2,22,17,.95),rgba(2,22,17,.3)),linear-gradient(90deg,rgba(2,22,17,.9),transparent); }
	.gu-hero-inner { grid-template-columns: 1fr; align-items: start; gap: 44px; padding-top: 120px; }
	.gu-planner { max-width: 640px; }
	.gu-proof { flex-wrap: wrap; gap: 18px 34px; }
	.gu-proof span::after { display: none; }
	.gu-intro { grid-template-columns: 1fr; gap: 48px; }
	.gu-intro > div:last-child { padding-top: 0; }
	.gu-heading { align-items: start; flex-direction: column; gap: 22px; }
	.gu-destination-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 350px; }
	.gu-destination-card,
	.gu-destination-card:nth-child(1),
	.gu-destination-card:nth-child(4),
	.gu-destination-card:nth-child(7),
	.gu-destination-card:nth-child(10) { grid-column: auto; }
	.gu-package-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.gu-operator { grid-template-columns: 1fr; }
	.gu-operator-image { min-height: 520px; }
	.gu-plan-cta .gu-container { align-items: start; flex-direction: column; }
	.gu-single-layout { grid-template-columns: 1fr; }
	.gu-trip-aside { position: static; grid-template-columns: 1fr 1fr; }
	.gu-inquiry-layout { grid-template-columns: 1fr; }
	.gu-archive-grid { grid-template-columns: 1fr 1fr; }
	.gu-footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
	.gu-footer-grid > div:last-child { grid-column: 2/-1; }
}

@media (max-width: 620px) {
	.gu-container { width: min(100% - 28px,520px); }
	.gu-topline { display: none; }
	.gu-header-inner { min-height: 82px; }
	.gu-brand { gap: 9px; }
	.gu-brand img { width: 50px; height: 50px; }
	.gu-brand strong { font-size: 24px; }
	.gu-brand small { font-size: 9px; }
	.gu-primary-nav { right: 14px; max-height: calc(100vh - 92px); overflow-y: auto; }
	.gu-hero { min-height: 1080px; padding-top: 90px; }
	.gu-hero-inner { padding-top: 105px; }
	.gu-hero-copy h1 { font-size: clamp(47px,14vw,64px); }
	.gu-actions { display: grid; }
	.gu-planner { padding: 24px 19px; }
	.gu-proof { justify-content: flex-start; padding-inline: 20px; }
	.gu-proof span { width: calc(50% - 20px); white-space: normal; }
	.gu-intro h2,
	.gu-heading h2,
	.gu-operator h2,
	.gu-plan-cta h2,
	.gu-inquiry-layout h2 { font-size: clamp(39px,12vw,55px); }
	.gu-card-rail { grid-auto-columns: 84vw; }
	.gu-safari-card > a { grid-template-rows: 290px 200px; height: 490px; }
	.gu-safari-card > a::after { height: 290px; }
	.gu-package-grid { grid-template-columns: 1fr; }
	.gu-package-card > a { display: grid; grid-template-columns: minmax(110px,.85fr) minmax(0,1.15fr); }
	.gu-package-image,
	.gu-package-image img { height: 100%; }
	.gu-package-image img { min-height: 250px; aspect-ratio: auto; }
	.gu-package-copy { padding: 20px 17px; }
	.gu-package-copy h3 { font-size: 22px; }
	.gu-package-cta { align-items: stretch; flex-direction: column; }
	.gu-package-cta .gu-button { width: 100%; }
	.gu-destination-grid { grid-template-columns: 1fr; grid-auto-rows: 380px; }
	.gu-operator-image { min-height: 400px; }
	.gu-operator-copy { padding: 65px 21px; }
	.gu-journal-grid,
	.gu-archive-grid { grid-template-columns: 1fr; }
	.gu-inner-hero { min-height: 510px; }
	.gu-inner-hero h1 { font-size: clamp(43px,13vw,60px); }
	.gu-single-layout { padding-block: 68px 88px; }
	.gu-entry-content { font-size: 16px; }
	.gu-entry-content h2 { font-size: 37px; }
	.gu-entry-content h3 { padding: 19px; font-size: 27px; }
	.gu-trip-aside { grid-template-columns: 1fr; }
	.gu-inquiry-form { grid-template-columns: 1fr; padding: 25px 19px; }
	.gu-inquiry-form .gu-full,
	.gu-inquiry-form .gu-button { grid-column: auto; }
	.gu-search-form { align-items: stretch; flex-direction: column; }
	.gu-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
	.gu-footer-brand { grid-column: 1/-1; }
	.gu-footer-grid > div:last-child { grid-column: auto; }
	.gu-footer-bottom { align-items: flex-start; flex-direction: column; }
	.gu-mega-columns,
	.gu-destination-columns { grid-template-columns: 1fr; }
	.gu-mega-menu { max-height: 58vh; }
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* Gorilla Uganda v1.3.0: the requested typography uses a bold weight throughout. */
.gu-luxury-theme,
.gu-luxury-theme * {
	font-weight: 700 !important;
}
