/* Homepage redesign — Uganda Gorilla Trekking */

:root {
	--ugt-forest: #1a3329;
	--ugt-green: #2d6a4f;
	--ugt-cta: #3d8b37;
	--ugt-cta-hover: #347a2f;
	--ugt-ink: #14221b;
	--ugt-muted: #5a6b62;
	--ugt-sand: #eef2ef;
	--ugt-gold: #c9a227;
	--ugt-white: #ffffff;
}

/* Homepage header overlay handled in ugt-nav.css (.ugt-site-head) */

body.ugt-home-front .site-main {
	padding-top: 0;
}

body.ugt-home-front .site-main > .ugt-home {
	margin-top: 0;
}

/* —— Shared section chrome —— */
.ugt-home .section {
	padding: 4.5rem 0;
}

.ugt-home .section-eyebrow {
	margin: 0 0 0.65rem;
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ugt-cta);
	font-weight: 700;
}

.ugt-home .section-title {
	margin: 0 0 0.85rem;
	font-size: clamp(1.65rem, 2.4vw, 2.35rem);
	line-height: 1.15;
	color: var(--ugt-ink);
	font-weight: 700;
}

.ugt-home .section-lead {
	margin: 0 0 1.5rem;
	max-width: 38rem;
	color: var(--ugt-muted);
	font-size: 1.05rem;
	line-height: 1.6;
}

.ugt-home .section-head {
	margin-bottom: 2rem;
}

.ugt-home .section-head--row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.ugt-home .section-link {
	font-weight: 600;
	color: var(--ugt-green);
	text-decoration: none;
	white-space: nowrap;
}

.ugt-home .section-link:hover {
	color: var(--ugt-cta);
}

.ugt-home .section-more {
	margin: 2rem 0 0;
	text-align: center;
}

.ugt-home .section-more--left {
	text-align: left;
}

.ugt-home .btn--home-primary,
.ugt-home .btn.btn--home-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.85rem 1.4rem;
	border-radius: 4px;
	background: var(--ugt-cta);
	border: 1px solid var(--ugt-cta);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ugt-home .btn--home-primary:hover,
.ugt-home .btn.btn--home-primary:hover {
	background: var(--ugt-cta-hover);
	border-color: var(--ugt-cta-hover);
	color: #fff;
	transform: translateY(-1px);
}

.ugt-home .btn--home-secondary,
.ugt-home .btn.btn--home-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.4rem;
	border-radius: 4px;
	background: transparent;
	border: 1.5px solid rgba(255, 255, 255, 0.85);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.ugt-home .section .btn--home-secondary {
	border-color: var(--ugt-green);
	color: var(--ugt-green);
}

.ugt-home .btn--home-dark {
	background: var(--ugt-forest);
	border: 1px solid var(--ugt-forest);
	color: #fff;
	font-weight: 700;
	padding: 0.85rem 1.25rem;
	border-radius: 4px;
	cursor: pointer;
}

/* —— Hero —— */
.home-hero {
	position: relative;
	min-height: min(78vh, 720px);
	display: flex;
	align-items: flex-end;
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}

.home-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.home-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-hero__slides {
	position: absolute;
	inset: 0;
}

.home-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1.1s ease;
	z-index: 0;
}

.home-hero__slide.is-active {
	opacity: 1;
	z-index: 1;
}

.home-hero__dots {
	position: absolute;
	z-index: 3;
	right: max(1rem, calc((100% - min(100%, 72rem)) / 2 + 1rem));
	bottom: 1.5rem;
	left: auto;
	transform: none;
	display: flex;
	gap: 0.55rem;
	align-items: center;
	padding: 0.35rem 0.55rem;
}

.home-hero__dot {
	appearance: none;
	border: 0;
	width: 0.65rem;
	height: 0.65rem;
	border-radius: 999px;
	padding: 0;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.45);
	transition: background 0.25s ease, transform 0.25s ease;
}

.home-hero__dot.is-active {
	background: #fff;
	transform: scale(1.2);
}

.home-hero__dot:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

/* Ken Burns on the media plane (not the LCP <img>) after first paint. */
@media (prefers-reduced-motion: no-preference) {
	.home-hero.is-loaded:not(.home-hero--slider) .home-hero__media {
		animation: ugt-hero-ken 18s ease-out forwards;
	}
}

@keyframes ugt-hero-ken {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(1.06);
	}
}

.home-hero__scrim {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(10, 24, 18, 0.78) 0%, rgba(10, 24, 18, 0.45) 48%, rgba(10, 24, 18, 0.25) 100%),
		linear-gradient(180deg, rgba(10, 24, 18, 0.35) 0%, rgba(10, 24, 18, 0.15) 35%, rgba(10, 24, 18, 0.72) 100%);
}

.home-hero--slider .home-hero__scrim {
	background:
		rgba(0, 0, 0, 0.28),
		linear-gradient(90deg, rgba(10, 24, 18, 0.72) 0%, rgba(10, 24, 18, 0.38) 48%, rgba(10, 24, 18, 0.2) 100%),
		linear-gradient(180deg, rgba(10, 24, 18, 0.28) 0%, rgba(10, 24, 18, 0.12) 35%, rgba(10, 24, 18, 0.65) 100%);
}

.home-hero__inner {
	position: relative;
	z-index: 1;
	/* Horizontal padding from .wrap so width matches other home rails (e.g. .home-trust__inner). */
	padding: 6.5rem 0 4.5rem;
	animation: ugt-fade-up 0.85s ease both;
}

@keyframes ugt-fade-up {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.home-hero__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ugt-gold);
	font-weight: 700;
}

.home-hero__title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 4.2vw, 3.15rem);
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.home-hero__intro {
	margin: 0 0 1.75rem;
	font-size: 1.12rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.9);
	max-width: 46rem;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 2.25rem;
}

.home-hero__trust {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem 1.25rem;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.88);
}

.home-hero__trust li {
	position: relative;
	padding-left: 1.15rem;
}

.home-hero__trust li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.35em;
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: var(--ugt-cta);
}

@media (min-width: 720px) {
	.home-hero__trust {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* —— Safari finder —— */
.home-safari-finder {
	position: relative;
	z-index: 5;
	margin-top: -2.75rem;
	padding: 0 1rem 0;
}

.home-safari-finder__form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
	background: #fff;
	padding: 1.15rem;
	border-radius: 8px;
	box-shadow: 0 16px 40px rgba(16, 36, 28, 0.16);
	border: 1px solid rgba(26, 51, 41, 0.08);
}

@media (min-width: 900px) {
	.home-safari-finder__form {
		grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
		align-items: end;
		padding: 1.25rem 1.35rem;
	}
}

.home-safari-finder__field label {
	display: block;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--ugt-muted);
	margin-bottom: 0.35rem;
}

.home-safari-finder__field select {
	width: 100%;
	min-height: 2.75rem;
	border: 1px solid #d7e0db;
	border-radius: 4px;
	padding: 0.45rem 0.65rem;
	background: #fff;
	color: var(--ugt-ink);
}

.home-safari-finder__submit {
	min-height: 2.75rem;
	white-space: nowrap;
}

/* —— Trust —— */
.home-trust {
	padding: 1.5rem 0;
	background: var(--ugt-sand);
	border-bottom: 1px solid rgba(26, 51, 41, 0.06);
}

.home-trust__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 2rem;
}

.home-trust__lead {
	margin: 0;
	font-weight: 700;
	color: var(--ugt-ink);
}

.home-trust__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem 1.35rem;
	color: var(--ugt-muted);
	font-size: 0.92rem;
}

/* Enhanced trust strip */
.home-trust--enhanced {
	padding: 2.75rem 0 3rem;
	background:
		radial-gradient(ellipse 70% 80% at 50% 0%, rgba(45, 106, 79, 0.1), transparent 55%),
		linear-gradient(180deg, #f5f7f4 0%, #eef2ef 100%);
	border-bottom: 1px solid rgba(26, 51, 41, 0.07);
}

.home-trust--enhanced .home-trust__inner {
	display: block;
}

.home-trust__head {
	max-width: 36rem;
	margin: 0 auto 1.65rem;
	text-align: center;
}

.home-trust__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.6rem;
	height: 2.6rem;
	margin-bottom: 0.7rem;
	border-radius: 999px;
	background: #1a3329;
	color: #fff;
	box-shadow: 0 8px 20px rgba(20, 34, 27, 0.18);
}

.home-trust__eyebrow {
	margin: 0 0 0.4rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #2f5d3a;
}

.home-trust--enhanced .home-trust__lead {
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.home-trust--enhanced .home-trust__list--rich {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.85rem;
	align-items: stretch;
}

.home-trust--enhanced .home-trust__item {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	height: 100%;
	padding: 1.15rem 1.05rem 1.2rem;
	background: #fff;
	border: 1px solid rgba(28, 36, 24, 0.08);
	border-radius: 14px;
	box-shadow: 0 8px 22px rgba(20, 34, 27, 0.05);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-trust--enhanced .home-trust__item:hover {
	transform: translateY(-3px);
	border-color: rgba(45, 106, 79, 0.25);
	box-shadow: 0 14px 30px rgba(20, 34, 27, 0.1);
}

.home-trust--enhanced .home-trust__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.75rem;
	height: 2.75rem;
	margin-bottom: 0.45rem;
	border-radius: 10px;
	background: #1a3329;
	color: #fff;
	box-shadow: 0 6px 14px rgba(20, 34, 27, 0.16);
	opacity: 1;
	font-size: 0;
	line-height: 0;
}

.home-trust--enhanced .home-trust__icon .home-icon,
.home-trust--enhanced .home-trust__icon svg {
	display: block;
	width: 1.25rem;
	height: 1.25rem;
	stroke: currentColor;
	stroke-width: 1.85;
	fill: none;
	flex-shrink: 0;
}

.home-trust--enhanced .home-trust__badge .home-icon,
.home-trust--enhanced .home-trust__badge svg {
	display: block;
	stroke: currentColor;
	stroke-width: 1.85;
	fill: none;
}

.home-trust--enhanced .home-trust__item:hover .home-trust__icon {
	background: #2d6a4f;
}

.home-trust--enhanced .home-trust__item strong {
	font-size: 0.95rem;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: #14221b;
}

.home-trust--enhanced .home-trust__text {
	font-size: 0.84rem;
	line-height: 1.5;
	color: #5a6b62;
	opacity: 1;
	font-weight: 400;
}

@media (max-width: 1100px) {
	.home-trust--enhanced .home-trust__list--rich {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.home-trust--enhanced .home-trust__list--rich {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-trust--enhanced .home-trust__item {
		transition: none !important;
		transform: none !important;
	}
}

/* —— Why us —— */
.home-why {
	background: #fff;
}

.home-why__inner {
	display: grid;
	gap: 2.5rem;
}

@media (min-width: 960px) {
	.home-why__inner {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
		align-items: start;
	}
}

.home-why__features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

@media (min-width: 720px) {
	.home-why__features {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.home-why__card {
	padding: 1.35rem 1.2rem;
	background: linear-gradient(180deg, #f7faf8 0%, #eef4f0 100%);
	border: 1px solid rgba(26, 51, 41, 0.06);
}

.home-why__icon {
	display: block;
	width: 2.25rem;
	height: 2.25rem;
	margin-bottom: 0.9rem;
	border-radius: 50%;
	background:
		radial-gradient(circle at 30% 30%, #6fc25a, transparent 55%),
		var(--ugt-green);
}

.home-why__card h3 {
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
	color: var(--ugt-ink);
}

.home-why__card p {
	margin: 0;
	color: var(--ugt-muted);
	font-size: 0.95rem;
	line-height: 1.55;
}

/* —— Safaris —— */
.home-safaris {
	background: var(--ugt-sand);
}

.home-safaris__grid.card-grid,
.home-safaris .card-grid--safari-home {
	gap: 1.25rem;
}

/* —— Destinations —— */
.home-destinations__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
}

@media (min-width: 900px) {
	.home-destinations__grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 1rem;
	}
}

.home-dest-card {
	position: relative;
	display: block;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	color: #fff;
	text-decoration: none;
}

.home-dest-card__media,
.home-dest-card__media img,
.home-dest-card__ph {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.home-dest-card__media img {
	object-fit: cover;
	transition: transform 0.55s ease;
}

.home-dest-card__ph {
	background: linear-gradient(145deg, #2d6a4f, #1a3329 70%);
}

.home-dest-card__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(8, 20, 14, 0.85) 100%);
}

.home-dest-card__meta {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1rem;
	z-index: 1;
}

.home-dest-card__country {
	display: block;
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.85;
	margin-bottom: 0.25rem;
}

.home-dest-card__title {
	display: block;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.2;
}

.home-dest-card:hover .home-dest-card__media img {
	transform: scale(1.06);
}

/* —— Feature bands —— */
.home-feature {
	position: relative;
	color: #fff;
	background: var(--ugt-forest);
}

.home-feature--gorilla {
	background:
		linear-gradient(105deg, rgba(12, 28, 20, 0.92) 0%, rgba(12, 28, 20, 0.72) 55%, rgba(12, 28, 20, 0.55) 100%),
		radial-gradient(ellipse at 80% 40%, rgba(61, 139, 55, 0.35), transparent 55%),
		#14281e;
}

/* Gorilla signature section */
.home-gorilla {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 4.75rem 0;
	color: #f3f6f2;
	background:
		radial-gradient(ellipse at 12% 0%, rgba(61, 139, 55, 0.28), transparent 42%),
		radial-gradient(ellipse at 88% 80%, rgba(201, 162, 39, 0.12), transparent 40%),
		linear-gradient(165deg, rgba(14, 28, 20, 0.94), rgba(20, 40, 30, 0.9)),
		var(--home-gorilla-image, none) center / cover no-repeat,
		#14281e;
}

.home-gorilla::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: repeating-linear-gradient(
		-32deg,
		transparent,
		transparent 16px,
		rgba(255, 255, 255, 0.015) 16px,
		rgba(255, 255, 255, 0.015) 17px
	);
	pointer-events: none;
}

.home-gorilla .wrap {
	position: relative;
	z-index: 1;
}

.home-gorilla__intro {
	max-width: 46rem;
	margin: 0 auto 2rem;
	text-align: center;
}

.home-gorilla__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	margin-bottom: 0.85rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: #d4e8cf;
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.home-gorilla .section-eyebrow {
	color: #d4b84a;
}

.home-gorilla .section-title {
	color: #fff;
	margin-left: auto;
	margin-right: auto;
}

.home-gorilla .section-lead {
	margin-left: auto;
	margin-right: auto;
	max-width: 42rem;
	color: rgba(243, 246, 242, 0.88);
}

.home-gorilla__stats {
	list-style: none;
	margin: 1.35rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
}

.home-gorilla__stats li {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.42rem 0.8rem;
	border-radius: 999px;
	border: 1px solid rgba(212, 184, 74, 0.28);
	background: rgba(255, 255, 255, 0.06);
	font-size: 0.82rem;
	font-weight: 700;
	color: #f3f6f2;
}

.home-gorilla__stat-ico {
	display: inline-flex;
	color: #e6d07a;
}

.home-gorilla .home-gorilla-parks {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.15rem;
}

.home-gorilla .home-gorilla-parks__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0;
	overflow: hidden;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.06);
	text-decoration: none;
	color: inherit;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
	transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.home-gorilla .home-gorilla-parks__card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(212, 184, 74, 0.35);
}

.home-gorilla .home-gorilla-parks__media {
	position: relative;
	display: block;
	aspect-ratio: 5 / 4;
	overflow: hidden;
}

.home-gorilla .home-gorilla-parks__media img,
.home-gorilla .home-gorilla-parks__ph {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-gorilla .home-gorilla-parks__ph {
	background: linear-gradient(145deg, #1a3329, #2d6a4f);
}

.home-gorilla .home-gorilla-parks__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(10, 18, 14, 0.1) 0%,
		rgba(10, 18, 14, 0.15) 40%,
		rgba(10, 18, 14, 0.78) 100%
	);
	pointer-events: none;
}

.home-gorilla .home-gorilla-parks__card:hover .home-gorilla-parks__media img {
	transform: scale(1.05);
}

.home-gorilla .home-gorilla-parks__media img {
	transition: transform 0.55s ease;
}

.home-gorilla .home-gorilla-parks__country {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	z-index: 1;
	padding: 0.28rem 0.6rem;
	border-radius: 999px;
	background: rgba(14, 22, 16, 0.72);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	backdrop-filter: blur(4px);
}

.home-gorilla .home-gorilla-parks__name {
	position: absolute;
	left: 0.95rem;
	right: 0.95rem;
	bottom: 0.85rem;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-family: var(--font-heading);
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #fff;
}

.home-gorilla .home-gorilla-parks__name-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.85rem;
	height: 1.85rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	color: #e6d07a;
}

.home-gorilla .home-gorilla-parks__body {
	display: grid;
	gap: 0.45rem;
	padding: 1.05rem 1.15rem 1.2rem;
	flex: 1;
}

.home-gorilla .home-gorilla-parks__badge {
	justify-self: start;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	background: rgba(212, 184, 74, 0.16);
	color: #e6d07a;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.home-gorilla .home-gorilla-parks__sub {
	margin: 0;
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.35;
	color: #c9e6c4;
}

.home-gorilla .home-gorilla-parks__text {
	font-size: 0.9rem;
	line-height: 1.55;
	color: rgba(243, 246, 242, 0.78);
}

.home-gorilla .home-gorilla-parks__cta {
	margin-top: 0.35rem;
	font-size: 0.88rem;
	font-weight: 700;
	color: #e6d07a;
}

.home-gorilla .home-gorilla-parks__card:hover .home-gorilla-parks__cta {
	color: #f0e2a0;
}

.home-gorilla__cta {
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

@media (max-width: 980px) {
	.home-gorilla .home-gorilla-parks {
		grid-template-columns: 1fr;
		max-width: 34rem;
		margin: 0 auto;
	}

	.home-gorilla .home-gorilla-parks__media {
		aspect-ratio: 16 / 10;
	}
}

@media (max-width: 600px) {
	.home-gorilla {
		padding: 3.5rem 0;
	}

	.home-gorilla__stats {
		gap: 0.4rem;
	}
}

.home-feature--chimp {
	background:
		linear-gradient(255deg, rgba(12, 28, 20, 0.92) 0%, rgba(12, 28, 20, 0.7) 60%, rgba(12, 28, 20, 0.5) 100%),
		radial-gradient(ellipse at 15% 50%, rgba(201, 162, 39, 0.22), transparent 50%),
		#1b3227;
}

/* Chimpanzee section */
.home-chimp {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 4.75rem 0;
	color: #f3f6f2;
	background:
		radial-gradient(ellipse at 85% 12%, rgba(201, 162, 39, 0.16), transparent 42%),
		radial-gradient(ellipse at 8% 85%, rgba(61, 139, 55, 0.22), transparent 40%),
		linear-gradient(155deg, rgba(16, 30, 22, 0.94), rgba(22, 42, 30, 0.9)),
		var(--home-chimp-image, none) center / cover no-repeat,
		#1b3227;
}

.home-chimp::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: repeating-linear-gradient(
		28deg,
		transparent,
		transparent 15px,
		rgba(255, 255, 255, 0.015) 15px,
		rgba(255, 255, 255, 0.015) 16px
	);
	pointer-events: none;
}

.home-chimp .wrap {
	position: relative;
	z-index: 1;
}

.home-chimp__layout {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 2.5rem;
	align-items: center;
}

.home-chimp__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.1rem;
	height: 3.1rem;
	margin-bottom: 0.85rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: #e6d07a;
}

.home-chimp .section-eyebrow {
	color: #d4b84a;
}

.home-chimp .section-title {
	color: #fff;
	max-width: 18ch;
}

.home-chimp .section-lead {
	color: rgba(243, 246, 242, 0.88);
	max-width: 38rem;
}

.home-chimp__stats {
	list-style: none;
	margin: 0 0 1.35rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.home-chimp__stats li {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	border: 1px solid rgba(212, 184, 74, 0.28);
	background: rgba(255, 255, 255, 0.06);
	font-size: 0.8rem;
	font-weight: 700;
}

.home-chimp__stat-ico {
	display: inline-flex;
	color: #e6d07a;
}

.home-chimp .home-chimp-places {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.home-chimp .home-chimp-places a.home-chimp-places__card {
	display: grid;
	grid-template-columns: 4.25rem 1fr;
	gap: 0.75rem;
	align-items: stretch;
	min-height: 100%;
	padding: 0.45rem 0.65rem 0.45rem 0.45rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.06);
	text-decoration: none;
	color: inherit;
	box-shadow: none;
	transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.home-chimp .home-chimp-places a.home-chimp-places__card:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(212, 184, 74, 0.35);
	box-shadow: none;
}

.home-chimp-places__media {
	display: block;
	width: 4.25rem;
	border-radius: 9px;
	overflow: hidden;
	background: #243528;
}

.home-chimp-places__media img,
.home-chimp-places__ph {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 4.5rem;
	object-fit: cover;
}

.home-chimp-places__ph {
	background: linear-gradient(145deg, #1a3329, #2d6a4f);
}

.home-chimp-places__body {
	display: grid;
	align-content: start;
	gap: 0.2rem;
	padding: 0.2rem 0;
	min-width: 0;
}

.home-chimp .home-chimp-places__badge {
	justify-self: start;
	padding: 0.12rem 0.45rem;
	border-radius: 999px;
	background: rgba(212, 184, 74, 0.16);
	color: #e6d07a;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.home-chimp .home-chimp-places__body strong {
	font-size: 0.98rem;
	line-height: 1.2;
	color: #fff;
}

.home-chimp .home-chimp-places span.home-chimp-places__text {
	font-size: 0.78rem;
	line-height: 1.4;
	color: rgba(243, 246, 242, 0.74);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-chimp__visual {
	position: relative;
	min-height: 28rem;
}

.home-chimp__hero-img,
.home-chimp__side-img {
	margin: 0;
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
}

.home-chimp__hero-img {
	width: 88%;
	margin-left: auto;
}

.home-chimp__hero-img img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.home-chimp__side-img {
	position: absolute;
	left: 0;
	bottom: 1.25rem;
	width: 52%;
	border: 3px solid rgba(22, 42, 30, 0.9);
}

.home-chimp__side-img img {
	display: block;
	width: 100%;
	aspect-ratio: 5 / 4;
	object-fit: cover;
}

.home-chimp__hero-img figcaption,
.home-chimp__side-img figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.6rem 0.9rem 0.7rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	background: linear-gradient(transparent, rgba(12, 20, 16, 0.78));
}

.home-chimp__cta {
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

@media (max-width: 980px) {
	.home-chimp__layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.home-chimp .section-title {
		max-width: none;
	}

	.home-chimp__visual {
		min-height: 0;
		max-width: 30rem;
		margin: 0 auto;
		width: 100%;
		order: -1;
	}

	.home-chimp__hero-img {
		width: 100%;
	}

	.home-chimp__side-img {
		width: 46%;
		bottom: 0.75rem;
	}
}

@media (max-width: 700px) {
	.home-chimp {
		padding: 3.5rem 0;
	}

	.home-chimp .home-chimp-places {
		grid-template-columns: 1fr;
	}

	.home-chimp__side-img {
		display: none;
	}

	.home-chimp__hero-img img {
		aspect-ratio: 16 / 11;
	}
}

.home-feature--wildlife {
	background:
		linear-gradient(105deg, rgba(12, 28, 20, 0.94) 0%, rgba(12, 28, 20, 0.75) 100%),
		#163028;
}

/* Wildlife section — light savannah */
.home-wildlife {
	position: relative;
	overflow: hidden;
	padding: 4.75rem 0;
	background:
		radial-gradient(ellipse at 90% 8%, rgba(201, 162, 39, 0.12), transparent 42%),
		radial-gradient(ellipse at 6% 90%, rgba(45, 106, 79, 0.1), transparent 40%),
		linear-gradient(180deg, #f7f8f4 0%, #eef2ec 100%);
	color: var(--ugt-ink, #14221b);
}

.home-wildlife::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(
		-28deg,
		transparent,
		transparent 14px,
		rgba(45, 106, 79, 0.03) 14px,
		rgba(45, 106, 79, 0.03) 15px
	);
	pointer-events: none;
}

.home-wildlife .wrap {
	position: relative;
	z-index: 1;
}

.home-wildlife .section-eyebrow {
	color: var(--ugt-cta, #3d8b37);
}

.home-wildlife .section-title {
	color: var(--ugt-ink, #14221b);
	max-width: 22ch;
}

.home-wildlife .section-lead {
	color: var(--ugt-muted, #5a6b62);
	max-width: 36rem;
}

.home-wildlife__layout {
	display: grid;
	grid-template-columns: 1.15fr 0.95fr;
	gap: 2.75rem;
	align-items: center;
}

.home-wildlife__copy .section-head,
.home-wildlife__copy .section-more {
	margin-top: 0;
}

.home-wildlife-animals {
	list-style: none;
	margin: 0 0 1.35rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.home-wildlife-animals li {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.42rem 0.78rem 0.42rem 0.55rem;
	border-radius: 999px;
	border: 1px solid rgba(45, 106, 79, 0.18);
	background: #fff;
	font-size: 0.84rem;
	font-weight: 600;
	color: var(--ugt-ink, #14221b);
	letter-spacing: 0.01em;
	box-shadow: 0 2px 8px rgba(20, 34, 27, 0.04);
}

.home-wildlife-animals__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.7rem;
	height: 1.7rem;
	border-radius: 999px;
	background: rgba(45, 106, 79, 0.1);
	color: var(--ugt-green, #2d6a4f);
}

.home-wildlife__note {
	margin: 0 0 1.35rem;
	max-width: 36rem;
	color: var(--ugt-muted, #5a6b62);
	line-height: 1.55;
	font-size: 0.98rem;
}

.home-wildlife__parks {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin: 0 0 1.5rem;
}

.home-wildlife__park {
	display: grid;
	grid-template-columns: 3.25rem 1fr;
	gap: 0.7rem;
	align-items: center;
	padding: 0.55rem 0.7rem 0.55rem 0.55rem;
	text-decoration: none;
	color: inherit;
	border: 1px solid rgba(26, 51, 41, 0.1);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(20, 34, 27, 0.05);
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.home-wildlife__park:hover {
	background: #fff;
	border-color: rgba(45, 106, 79, 0.3);
	box-shadow: 0 10px 24px rgba(20, 34, 27, 0.08);
	transform: translateY(-2px);
}

.home-wildlife__park-media {
	display: block;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 8px;
	overflow: hidden;
}

.home-wildlife__park-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.home-wildlife__park-text {
	display: grid;
	gap: 0.15rem;
	min-width: 0;
}

.home-wildlife__park-text strong {
	font-size: 0.92rem;
	line-height: 1.2;
}

.home-wildlife__park-text span {
	font-size: 0.78rem;
	line-height: 1.35;
	color: var(--ugt-muted, #5a6b62);
}

.home-wildlife__visual {
	position: relative;
	min-height: 28rem;
}

.home-wildlife__hero-img,
.home-wildlife__side-img {
	margin: 0;
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	box-shadow: 0 18px 40px rgba(20, 34, 27, 0.14);
}

.home-wildlife__hero-img {
	position: relative;
	width: 88%;
	margin-left: auto;
}

.home-wildlife__hero-img img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.home-wildlife__side-img {
	position: absolute;
	left: 0;
	bottom: 1.25rem;
	width: 52%;
	border: 3px solid #f7f8f4;
}

.home-wildlife__side-img img {
	display: block;
	width: 100%;
	aspect-ratio: 5 / 4;
	object-fit: cover;
}

.home-wildlife__hero-img figcaption,
.home-wildlife__side-img figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.6rem 0.9rem 0.7rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	background: linear-gradient(transparent, rgba(12, 20, 16, 0.75));
}

.home-wildlife .btn--home-primary {
	box-shadow: 0 10px 24px rgba(45, 106, 79, 0.18);
}

@media (max-width: 980px) {
	.home-wildlife__layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.home-wildlife__visual {
		min-height: 0;
		max-width: 32rem;
		margin: 0 auto;
		width: 100%;
	}

	.home-wildlife__hero-img {
		width: 100%;
	}

	.home-wildlife__side-img {
		width: 46%;
		bottom: 0.75rem;
	}

	.home-wildlife .section-title {
		max-width: none;
	}
}

@media (max-width: 600px) {
	.home-wildlife {
		padding: 3.5rem 0;
	}

	.home-wildlife__parks {
		grid-template-columns: 1fr;
	}

	.home-wildlife__side-img {
		display: none;
	}

	.home-wildlife__hero-img img {
		aspect-ratio: 16 / 11;
	}
}

.home-feature__copy {
	max-width: 36rem;
	animation: ugt-fade-up 0.7s ease both;
}

.home-feature .section-eyebrow {
	color: var(--ugt-gold);
}

.home-feature .section-title,
.home-feature .section-lead {
	color: #fff;
}

.home-feature .section-lead {
	opacity: 0.9;
}

.home-feature__links {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: grid;
	gap: 0.45rem;
}

.home-feature__links a {
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
	font-weight: 600;
}

.home-feature__links a:hover {
	color: #fff;
	text-decoration: underline;
}

/* —— Guides —— */
.home-guides {
	background: #fff;
}

.home-guides__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 720px) {
	.home-guides__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1100px) {
	.home-guides__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.home-guide-card {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	min-height: 11rem;
	padding: 1.35rem 1.25rem;
	background: linear-gradient(160deg, #f4f8f5, #e8f0ea);
	border: 1px solid rgba(26, 51, 41, 0.07);
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-guide-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(20, 40, 30, 0.1);
}

.home-guide-card__label {
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--ugt-cta);
}

.home-guide-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--ugt-ink);
	flex: 1;
}

.home-guide-card__cta {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--ugt-green);
}

/* —— Comparisons —— */
.home-compare {
	background: var(--ugt-sand);
}

.home-compare__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

@media (min-width: 800px) {
	.home-compare__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.home-compare-card {
	display: block;
	padding: 1.5rem 1.25rem;
	background: #fff;
	border: 1px solid rgba(26, 51, 41, 0.08);
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.home-compare-card h3 {
	margin: 0 0 0.65rem;
	font-size: 1.05rem;
	color: var(--ugt-ink);
}

.home-compare-card p {
	margin: 0;
	color: var(--ugt-muted);
	font-size: 0.95rem;
	line-height: 1.5;
}

.home-compare-card:hover {
	border-color: rgba(61, 139, 55, 0.45);
}

/* —— Testimonial —— */
.home-testimonial {
	position: relative;
	padding: 5rem 0;
	color: #fff;
	background:
		linear-gradient(90deg, rgba(8, 18, 14, 0.88) 0%, rgba(8, 18, 14, 0.55) 100%),
		var(--ugt-testimonial-bg, none) center / cover no-repeat,
		#102018;
}

.home-testimonial__inner {
	display: grid;
	gap: 2.5rem;
}

@media (min-width: 900px) {
	.home-testimonial__inner {
		grid-template-columns: 1.4fr 0.8fr;
		align-items: end;
	}
}

.home-testimonial__quote {
	margin: 0;
}

.home-testimonial__quote blockquote {
	margin: 0 0 1.25rem;
}

.home-testimonial__quote p {
	margin: 0;
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	line-height: 1.45;
	font-weight: 500;
}

.home-testimonial__name {
	display: block;
	font-weight: 700;
}

.home-testimonial__meta {
	display: block;
	opacity: 0.8;
	font-size: 0.9rem;
	margin-top: 0.2rem;
}

.home-testimonial__partners-label {
	margin: 0 0 0.85rem;
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--ugt-gold);
}

.home-testimonial__logos {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}

.home-testimonial__logos li {
	padding: 0.75rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.25);
	font-weight: 600;
	font-size: 0.92rem;
}

/* Newsletter on homepage uses shared .ugt-footer-newsletter styles */

/* Homepage FAQ styles moved to shared assets/ugt-faq.css (.ugt-faq) */

/* —— Final CTA —— */
.home-final-cta {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 5.5rem 0;
	color: #f3f6f2;
	text-align: center;
	background:
		radial-gradient(ellipse at 50% 0%, rgba(61, 139, 55, 0.28), transparent 48%),
		linear-gradient(165deg, rgba(12, 22, 16, 0.88) 0%, rgba(20, 38, 28, 0.82) 55%, rgba(12, 22, 16, 0.9) 100%),
		var(--home-final-image, none) center / cover no-repeat,
		var(--ugt-forest, #1a3329);
}

.home-final-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: repeating-linear-gradient(
		-28deg,
		transparent,
		transparent 18px,
		rgba(255, 255, 255, 0.015) 18px,
		rgba(255, 255, 255, 0.015) 19px
	);
	pointer-events: none;
}

.home-final-cta .wrap {
	position: relative;
	z-index: 1;
}

.home-final-cta__layout {
	display: flex;
	justify-content: center;
}

.home-final-cta__panel {
	width: min(100%, 46rem);
	padding: 2.25rem 2rem 2.35rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(12px);
	box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.home-final-cta__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.35rem;
	height: 3.35rem;
	margin-bottom: 0.95rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: #e6d07a;
}

.home-final-cta .section-eyebrow {
	color: #d4b84a;
}

.home-final-cta h2 {
	margin: 0 0 0.95rem;
	font-size: clamp(1.75rem, 3.4vw, 2.45rem);
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: #fff;
}

.home-final-cta__lead,
.home-final-cta__note {
	margin: 0 auto 0.9rem;
	max-width: 38rem;
	font-size: 1.02rem;
	line-height: 1.6;
	color: rgba(243, 246, 242, 0.9);
}

.home-final-cta__note {
	margin-bottom: 1.25rem;
	font-size: 0.96rem;
	color: rgba(243, 246, 242, 0.78);
}

.home-final-cta__trust {
	list-style: none;
	margin: 0 auto 1.5rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
}

.home-final-cta__trust li {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	border: 1px solid rgba(212, 184, 74, 0.28);
	background: rgba(255, 255, 255, 0.06);
	font-size: 0.8rem;
	font-weight: 700;
	color: #f3f6f2;
}

.home-final-cta__trust li span {
	display: inline-flex;
	color: #e6d07a;
}

.home-final-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

.home-final-cta__actions .btn--home-primary {
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.home-final-cta__btn-ghost {
	border-color: rgba(255, 255, 255, 0.55) !important;
	color: #fff !important;
	background: transparent !important;
}

.home-final-cta__btn-ghost:hover {
	background: rgba(255, 255, 255, 0.1) !important;
}

@media (max-width: 700px) {
	.home-final-cta {
		padding: 3.75rem 0;
	}

	.home-final-cta__panel {
		padding: 1.6rem 1.2rem 1.7rem;
	}

	.home-final-cta__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.home-final-cta__actions .btn {
		width: 100%;
		justify-content: center;
	}
}

.home-empty {
	color: var(--ugt-muted);
}

@media (max-width: 719px) {
	.ugt-home .section {
		padding: 3.25rem 0;
	}

	.home-hero {
		min-height: 70vh;
	}

	.home-hero__inner {
		padding-top: 5.75rem;
		padding-bottom: 3.75rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-hero__media,
	.home-hero__img,
	.home-hero__inner,
	.home-feature__copy,
	.home-dest-card__media img,
	.home-guide-card {
		animation: none !important;
		transition: none !important;
		transform: none !important;
	}
}

/* —— Homepage content refresh (landing doc) —— */
.home-hero__intro-stack {
	display: grid;
	gap: 0.75rem;
	max-width: 42rem;
	margin-bottom: 1.25rem;
}

.home-hero__intro--secondary {
	opacity: 0.92;
	font-size: 0.98rem;
}

.home-trust__list--rich {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 1rem;
	align-items: start;
}

.home-trust__list--rich li {
	display: grid;
	gap: 0.35rem;
}

.home-trust__list--rich strong {
	display: block;
	font-size: 0.92rem;
}

.home-trust__list--rich span.home-trust__text {
	display: block;
	font-size: 0.82rem;
	line-height: 1.45;
	opacity: 0.88;
	font-weight: 400;
}

@media (max-width: 980px) {
	.home-trust__list--rich {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.home-why__intro--wide {
	max-width: 48rem;
}

.home-why__copy {
	margin: 1rem 0 1.35rem;
}

.home-why__copy p {
	margin: 0 0 0.85rem;
	color: var(--ugt-muted);
	line-height: 1.65;
}

.home-gorilla-parks,
.home-chimp-places,
.home-why-travel__grid,
.home-how__steps,
.home-interests__grid,
.home-when__grid {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: grid;
	gap: 1.15rem;
}

.home-gorilla-parks {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-gorilla-parks__card,
.home-chimp-places a,
.home-why-travel__grid li,
.home-how__steps li,
.home-interests__grid a,
.home-compare__col {
	padding: 1.15rem 1.2rem;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid var(--ugt-line, #e5e1d6);
	border-radius: 8px;
}

.home-gorilla-parks__sub {
	margin: 0.25rem 0 0.65rem;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--ugt-green, #2f5d3a);
}

.home-gorilla-parks__card a,
.home-chimp-places a,
.home-interests__grid a {
	text-decoration: none;
	color: inherit;
}

.home-compare__split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
	margin-top: 1.25rem;
}

.home-compare__best {
	font-weight: 700;
	margin: 0.35rem 0 0.65rem;
}

.home-compare__col ul {
	margin: 0;
	padding-left: 1.1rem;
	color: var(--ugt-muted);
}

.home-compare__note {
	margin: 1.25rem 0 0;
	max-width: 42rem;
	color: var(--ugt-muted);
}

.home-destinations__grid--rich {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-dest-card--rich {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background: #fff;
	border: 1px solid var(--ugt-line, #e5e1d6);
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
}

.home-dest-card--rich .home-dest-card__media {
	aspect-ratio: 4 / 3;
}

.home-dest-card__body {
	display: grid;
	gap: 0.35rem;
	padding: 0.9rem 1rem 1.1rem;
}

.home-dest-card__sub {
	font-weight: 700;
	font-size: 0.92rem;
}

.home-dest-card__text,
.home-dest-card__best {
	font-size: 0.84rem;
	line-height: 1.45;
	color: var(--ugt-muted);
}

.home-why-travel__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Why travel — enhanced */
.home-why-travel {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(ellipse at 12% 0%, rgba(45, 106, 79, 0.08), transparent 45%),
		radial-gradient(ellipse at 92% 100%, rgba(201, 162, 39, 0.1), transparent 40%),
		linear-gradient(180deg, #f8f7f2 0%, #eef1ec 100%);
}

.home-why-travel__intro {
	max-width: 42rem;
	margin: 0 auto 2.25rem;
	text-align: center;
}

.home-why-travel__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.1rem;
	height: 3.1rem;
	margin-bottom: 0.85rem;
	border-radius: 999px;
	background: rgba(45, 106, 79, 0.1);
	color: var(--ugt-green, #2d6a4f);
	border: 1px solid rgba(45, 106, 79, 0.12);
}

.home-why-travel__intro .section-lead {
	margin-left: auto;
	margin-right: auto;
}

.home-why-travel__layout {
	display: grid;
	grid-template-columns: 1.45fr 0.7fr;
	gap: 1.5rem;
	align-items: start;
}

.home-why-travel .home-why-travel__grid {
	margin: 0;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
}

.home-why-travel .home-why-travel__item {
	position: relative;
	display: grid;
	gap: 0.45rem;
	align-content: start;
	min-height: 100%;
	padding: 1.25rem 1.2rem 1.3rem;
	background: #fff;
	border: 1px solid rgba(26, 51, 41, 0.1);
	border-radius: 14px;
	box-shadow: 0 10px 26px rgba(20, 34, 27, 0.05);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-why-travel .home-why-travel__item:hover {
	transform: translateY(-3px);
	border-color: rgba(45, 106, 79, 0.28);
	box-shadow: 0 16px 34px rgba(20, 34, 27, 0.09);
}

.home-why-travel__num {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: rgba(45, 106, 79, 0.35);
}

.home-why-travel__item-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.7rem;
	height: 2.7rem;
	border-radius: 999px;
	background: rgba(45, 106, 79, 0.1);
	color: var(--ugt-green, #2d6a4f);
	margin-bottom: 0.2rem;
}

.home-why-travel .home-why-travel__item h3 {
	margin: 0;
	padding-right: 1.75rem;
	font-size: 1.05rem;
	line-height: 1.25;
	color: var(--ugt-ink, #14221b);
}

.home-why-travel .home-why-travel__item p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--ugt-muted, #5a6b62);
}

.home-why-travel__aside {
	display: grid;
	gap: 0.9rem;
	position: sticky;
	top: 6.5rem;
}

.home-why-travel__figure {
	margin: 0;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 16px 36px rgba(20, 34, 27, 0.12);
}

.home-why-travel__figure img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.home-why-travel__aside-card {
	display: grid;
	gap: 0.55rem;
	padding: 1.25rem 1.2rem 1.35rem;
	border-radius: 14px;
	background:
		radial-gradient(ellipse at 20% 0%, rgba(61, 139, 55, 0.22), transparent 55%),
		linear-gradient(165deg, #1a3329 0%, #243f34 100%);
	color: #f3f6f2;
	box-shadow: 0 14px 32px rgba(20, 34, 27, 0.16);
}

.home-why-travel__aside-card strong {
	font-size: 1.1rem;
	line-height: 1.25;
}

.home-why-travel__aside-card p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgba(243, 246, 242, 0.82);
}

.home-why-travel__aside-card .btn--home-primary {
	justify-self: start;
	margin-top: 0.35rem;
}

@media (max-width: 980px) {
	.home-why-travel__layout {
		grid-template-columns: 1fr;
	}

	.home-why-travel__aside {
		position: static;
		grid-template-columns: 1fr 1.1fr;
		align-items: stretch;
	}

	.home-why-travel__figure img {
		aspect-ratio: 16 / 11;
		height: 100%;
	}
}

@media (max-width: 700px) {
	.home-why-travel .home-why-travel__grid {
		grid-template-columns: 1fr;
	}

	.home-why-travel__aside {
		grid-template-columns: 1fr;
	}
}

.home-chimp-places,
.home-interests__grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-chimp-places a,
.home-interests__grid a {
	display: grid;
	gap: 0.4rem;
	min-height: 100%;
}

.home-chimp-places span,
.home-interests__grid span,
.home-interests__grid em {
	font-style: normal;
	font-size: 0.88rem;
	line-height: 1.45;
	color: var(--ugt-muted);
}

/* Interests — enhanced */
.home-interests {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(ellipse at 88% 0%, rgba(45, 106, 79, 0.08), transparent 42%),
		radial-gradient(ellipse at 8% 100%, rgba(201, 162, 39, 0.1), transparent 40%),
		linear-gradient(180deg, #f7f8f4 0%, #eef2ec 100%);
}

.home-interests__intro {
	max-width: 40rem;
	margin: 0 auto 2rem;
	text-align: center;
}

.home-interests__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.1rem;
	height: 3.1rem;
	margin-bottom: 0.85rem;
	border-radius: 999px;
	background: rgba(45, 106, 79, 0.1);
	color: var(--ugt-green, #2d6a4f);
	border: 1px solid rgba(45, 106, 79, 0.12);
}

.home-interests__intro .section-lead {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
}

.home-interests .home-interests__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.home-interests .home-interests__card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 0;
	overflow: hidden;
	border-radius: 14px;
	background: #fff;
	border: 1px solid rgba(26, 51, 41, 0.1);
	box-shadow: 0 10px 26px rgba(20, 34, 27, 0.05);
	text-decoration: none;
	color: inherit;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-interests .home-interests__card:hover {
	transform: translateY(-4px);
	border-color: rgba(45, 106, 79, 0.28);
	box-shadow: 0 16px 34px rgba(20, 34, 27, 0.1);
}

.home-interests__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #243528;
}

.home-interests__media img,
.home-interests__ph {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s ease;
}

.home-interests__ph {
	background: linear-gradient(145deg, #1a3329, #2d6a4f);
}

.home-interests .home-interests__card:hover .home-interests__media img {
	transform: scale(1.05);
}

.home-interests__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(12, 20, 16, 0.35) 100%);
	pointer-events: none;
}

.home-interests__tag {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.38rem 0.72rem 0.38rem 0.58rem;
	border-radius: 3px;
	background: rgba(255, 252, 247, 0.94);
	color: #1a3329;
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1;
	text-transform: uppercase;
	border: 1px solid rgba(201, 162, 39, 0.42);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.65) inset,
		0 6px 16px rgba(12, 20, 16, 0.18);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-interests__tag::before {
	content: "";
	flex-shrink: 0;
	width: 0.28rem;
	height: 0.28rem;
	border-radius: 1px;
	background: var(--ugt-gold, #c9a227);
	box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.22);
}

.home-interests .home-interests__card:hover .home-interests__tag {
	transform: translateY(-1px);
	border-color: rgba(201, 162, 39, 0.7);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.7) inset,
		0 8px 18px rgba(12, 20, 16, 0.22);
}

.home-interests__body {
	display: grid;
	gap: 0.4rem;
	padding: 1rem 1.05rem 1.15rem;
	flex: 1;
}

.home-interests__card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 999px;
	background: rgba(45, 106, 79, 0.1);
	color: var(--ugt-green, #2d6a4f);
}

.home-interests .home-interests__body strong {
	font-size: 1.02rem;
	line-height: 1.25;
	color: var(--ugt-ink, #14221b);
}

.home-interests .home-interests__text {
	font-size: 0.88rem;
	line-height: 1.5;
	color: var(--ugt-muted, #5a6b62);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-interests .home-interests__cta {
	margin-top: auto;
	padding-top: 0.25rem;
	font-style: normal;
	font-size: 0.86rem;
	font-weight: 700;
	color: var(--ugt-green, #2d6a4f);
}

.home-interests .home-interests__card:hover .home-interests__cta {
	color: var(--ugt-cta, #3d8b37);
}

@media (max-width: 1100px) {
	.home-interests .home-interests__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.home-interests .home-interests__grid {
		grid-template-columns: 1fr;
	}
}

.home-how__steps {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	counter-reset: none;
}

.home-how__num {
	display: inline-block;
	margin-bottom: 0.45rem;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: var(--ugt-green, #2f5d3a);
}

/* How it works — process journey */
.home-how {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(ellipse at 80% 0%, rgba(45, 106, 79, 0.07), transparent 42%),
		linear-gradient(180deg, #fff 0%, #f5f7f4 100%);
}

.home-how__intro {
	max-width: 40rem;
	margin: 0 auto 2.5rem;
	text-align: center;
}

.home-how__badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 0.85rem;
	border-radius: 999px;
	background: rgba(45, 106, 79, 0.1);
	color: var(--ugt-green, #2d6a4f);
	border: 1px solid rgba(45, 106, 79, 0.12);
}

.home-how__intro .section-lead {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
}

.home-how .home-how__steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.85rem;
	position: relative;
}

.home-how .home-how__step {
	position: relative;
	display: grid;
	gap: 0.85rem;
	align-content: start;
	min-height: 100%;
	padding: 1.25rem 1.1rem 1.35rem;
	background: #fff;
	border: 1px solid rgba(26, 51, 41, 0.1);
	border-radius: 14px;
	box-shadow: 0 10px 26px rgba(20, 34, 27, 0.05);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-how .home-how__step:hover {
	transform: translateY(-3px);
	border-color: rgba(45, 106, 79, 0.28);
	box-shadow: 0 16px 34px rgba(20, 34, 27, 0.09);
}

.home-how .home-how__rail {
	display: none;
}

.home-how .home-how__marker {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
}

.home-how .home-how__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.7rem;
	height: 2.7rem;
	margin: 0;
	border-radius: 999px;
	background: rgba(45, 106, 79, 0.1);
	color: var(--ugt-green, #2d6a4f);
}

.home-how .home-how__num {
	margin: 0;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: rgba(45, 106, 79, 0.45);
}

.home-how .home-how__body h3 {
	margin: 0 0 0.4rem;
	font-size: 1.02rem;
	line-height: 1.25;
	color: var(--ugt-ink, #14221b);
}

.home-how .home-how__body p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--ugt-muted, #5a6b62);
}

.home-how__cta-band {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	margin-top: 2rem;
	padding: 1.25rem 1.4rem;
	border-radius: 14px;
	background:
		radial-gradient(ellipse at 15% 0%, rgba(61, 139, 55, 0.22), transparent 50%),
		linear-gradient(165deg, #1a3329 0%, #243f34 100%);
	color: #f3f6f2;
	box-shadow: 0 14px 32px rgba(20, 34, 27, 0.14);
}

.home-how__cta-band strong {
	display: block;
	font-size: 1.15rem;
	margin-bottom: 0.3rem;
}

.home-how__cta-band p {
	margin: 0;
	max-width: 36rem;
	font-size: 0.92rem;
	line-height: 1.5;
	color: rgba(243, 246, 242, 0.82);
}

.home-how__cta-band .btn--home-primary {
	flex-shrink: 0;
}

@media (max-width: 1100px) {
	.home-how .home-how__steps {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.home-how .home-how__steps {
		grid-template-columns: 1fr;
		gap: 0;
		padding-left: 0.35rem;
	}

	.home-how .home-how__step {
		grid-template-columns: auto 1fr;
		gap: 0.85rem 1rem;
		padding: 1.1rem 1rem 1.15rem 0.85rem;
		border-radius: 0;
		border: 0;
		border-bottom: 1px solid rgba(26, 51, 41, 0.1);
		box-shadow: none;
		background: transparent;
	}

	.home-how .home-how__step:hover {
		transform: none;
		box-shadow: none;
		border-color: rgba(26, 51, 41, 0.1);
	}

	.home-how .home-how__step:last-child {
		border-bottom: 0;
	}

	.home-how .home-how__marker {
		flex-direction: column;
		align-items: center;
		gap: 0.35rem;
		position: relative;
		z-index: 1;
	}

	.home-how .home-how__rail {
		display: block;
		position: absolute;
		left: 1.85rem;
		top: 2.8rem;
		bottom: -0.15rem;
		width: 2px;
		background: rgba(45, 106, 79, 0.18);
	}

	.home-how .home-how__step:last-child .home-how__rail {
		display: none;
	}

	.home-how .home-how__body {
		grid-column: 2;
	}

	.home-how__cta-band {
		flex-direction: column;
		align-items: flex-start;
	}
}

.home-when__grid {
	grid-template-columns: 1fr 1fr;
}

.home-permits__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.15rem;
}

.home-conservation__inner,
.home-permits__inner {
	max-width: 48rem;
}

/* Permits — enhanced split band */
.home-permits {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 4.75rem 0;
	color: #f3f6f2;
	background:
		radial-gradient(ellipse at 18% 0%, rgba(61, 139, 55, 0.28), transparent 45%),
		linear-gradient(120deg, rgba(14, 28, 20, 0.94) 0%, rgba(20, 40, 30, 0.88) 48%, rgba(14, 28, 20, 0.78) 100%),
		var(--home-permits-image, none) center / cover no-repeat,
		#14281e;
}

.home-permits::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: repeating-linear-gradient(
		-28deg,
		transparent,
		transparent 16px,
		rgba(255, 255, 255, 0.015) 16px,
		rgba(255, 255, 255, 0.015) 17px
	);
	pointer-events: none;
}

.home-permits .wrap {
	position: relative;
	z-index: 1;
}

.home-permits__layout {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 2.25rem;
	align-items: center;
}

.home-permits__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.1rem;
	height: 3.1rem;
	margin-bottom: 0.85rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: #e6d07a;
}

.home-permits .section-eyebrow {
	color: #d4b84a;
}

.home-permits .section-title {
	color: #fff;
	max-width: 16ch;
}

.home-permits .section-lead {
	color: rgba(243, 246, 242, 0.9);
	max-width: 38rem;
}

.home-permits__note {
	margin: 0 0 1.35rem;
	max-width: 38rem;
	font-size: 0.98rem;
	line-height: 1.55;
	color: rgba(243, 246, 242, 0.78);
}

.home-permits__points {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.home-permits__points li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.75rem;
	align-items: start;
	padding: 0.8rem 0.9rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-permits__point-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 999px;
	background: rgba(212, 184, 74, 0.16);
	color: #e6d07a;
}

.home-permits__points strong {
	display: block;
	margin-bottom: 0.15rem;
	font-size: 0.95rem;
	color: #fff;
}

.home-permits__points li span span {
	display: block;
	font-size: 0.86rem;
	line-height: 1.45;
	color: rgba(243, 246, 242, 0.76);
}

.home-permits__actions {
	margin-top: 0;
}

.home-permits__btn-ghost {
	border-color: rgba(255, 255, 255, 0.55) !important;
	color: #fff !important;
	background: transparent !important;
}

.home-permits__btn-ghost:hover {
	background: rgba(255, 255, 255, 0.1) !important;
}

.home-permits__panel {
	display: flex;
	justify-content: flex-end;
}

.home-permits__panel-card {
	width: min(100%, 22rem);
	padding: 1.5rem 1.4rem 1.45rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(10px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.home-permits__panel-label {
	margin: 0 0 0.85rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #e6d07a;
}

.home-permits__panel-card ul {
	list-style: none;
	margin: 0 0 1.15rem;
	padding: 0;
	display: grid;
	gap: 0.7rem;
}

.home-permits__panel-card li {
	position: relative;
	padding-left: 1.15rem;
	font-size: 0.95rem;
	line-height: 1.45;
	color: rgba(243, 246, 242, 0.9);
}

.home-permits__panel-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55rem;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 999px;
	background: #e6d07a;
}

.home-permits__panel-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.92rem;
	font-weight: 700;
	color: #e6d07a;
	text-decoration: none;
}

.home-permits__panel-link:hover {
	color: #f0e2a0;
}

@media (max-width: 900px) {
	.home-permits__layout {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.home-permits .section-title {
		max-width: none;
	}

	.home-permits__panel {
		justify-content: stretch;
	}

	.home-permits__panel-card {
		width: 100%;
	}
}

@media (max-width: 600px) {
	.home-permits {
		padding: 3.5rem 0;
	}
}

@media (max-width: 1100px) {
	.home-gorilla-parks,
	.home-chimp-places,
	.home-why-travel__grid,
	.home-interests__grid,
	.home-destinations__grid--rich,
	.home-how__steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.home-gorilla-parks,
	.home-chimp-places,
	.home-why-travel__grid,
	.home-interests__grid,
	.home-destinations__grid--rich,
	.home-how__steps,
	.home-compare__split,
	.home-when__grid,
	.home-trust__list--rich,
	.home-feature__split,
	.home-why--split .home-why__inner {
		grid-template-columns: 1fr;
	}
}

/* —— Visual polish: icons, bands, media, reveal —— */
.home-icon {
	display: block;
	flex-shrink: 0;
}

.home-card-icon,
.home-trust__icon,
.home-how__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.65rem;
	height: 2.65rem;
	margin-bottom: 0.65rem;
	border-radius: 999px;
	background: rgba(45, 106, 79, 0.1);
	color: var(--ugt-green, #2d6a4f);
}

.home-card-icon--light {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	margin-bottom: 1rem;
}

.home-band--sand {
	background:
		radial-gradient(ellipse at 90% 10%, rgba(61, 139, 55, 0.08), transparent 45%),
		linear-gradient(180deg, #f4f7f5 0%, #eef2ef 100%);
}

.home-band--forest {
	background:
		radial-gradient(ellipse at 15% 0%, rgba(61, 139, 55, 0.35), transparent 48%),
		linear-gradient(165deg, #1a3329 0%, #243f34 55%, #1a3329 100%);
	color: #f4f7f5;
}

.home-band--forest .section-title,
.home-band--forest .section-eyebrow,
.home-band--forest .section-lead {
	color: inherit;
}

.home-band--forest .section-eyebrow {
	color: #c9e6c4;
}

.home-band--forest .section-lead {
	opacity: 0.88;
	max-width: 44rem;
}

.home-band--forest .home-gorilla-parks__card {
	padding: 0;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(6px);
	transition: transform 0.35s ease, background 0.35s ease;
}

.home-band--forest .home-gorilla-parks__card:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.12);
}

.home-gorilla-parks__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.home-gorilla-parks__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.home-gorilla-parks__card:hover .home-gorilla-parks__media img {
	transform: scale(1.05);
}

.home-gorilla-parks__body {
	padding: 1.1rem 1.15rem 1.25rem;
}

.home-band--forest .home-gorilla-parks__sub {
	color: #b8d9b2;
}

.home-band--forest .home-gorilla-parks__card a {
	color: #d5ecd1;
	font-weight: 600;
}

.home-band--photo {
	position: relative;
	isolation: isolate;
	background:
		linear-gradient(135deg, rgba(20, 34, 27, 0.88), rgba(26, 51, 41, 0.82)),
		var(--home-band-image, none) center / cover no-repeat;
	color: #fff;
	text-align: center;
}

.home-band--photo .section-eyebrow {
	color: #c9e6c4;
}

.home-band--photo .section-title,
.home-band--photo .section-lead,
.home-band--photo p {
	color: inherit;
}

.home-band--photo .section-lead,
.home-band--photo p {
	opacity: 0.92;
	margin-left: auto;
	margin-right: auto;
}

.home-permits__inner,
.home-conservation__inner {
	margin-left: auto;
	margin-right: auto;
}

.home-why--split .home-why__inner {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 2.5rem;
	align-items: center;
}

.home-why__media {
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(20, 34, 27, 0.16);
}

.home-why__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 5;
}

.home-feature__split {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 2.5rem;
	align-items: center;
}

.home-feature__split--reverse {
	grid-template-columns: 0.9fr 1.1fr;
}

.home-feature__split--reverse > :first-child {
	order: 2;
}

.home-feature__figure {
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(20, 34, 27, 0.14);
}

.home-feature__figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 5;
}

.home-dest-card__media img,
.home-dest-card__ph {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-dest-card__ph {
	background:
		linear-gradient(145deg, #2d6a4f, #1a3329 60%),
		repeating-linear-gradient(
			-35deg,
			transparent,
			transparent 8px,
			rgba(255, 255, 255, 0.04) 8px,
			rgba(255, 255, 255, 0.04) 16px
		);
}

.home-dest-card__scrim {
	position: absolute;
	inset: auto 0 0;
	height: 45%;
	background: linear-gradient(transparent, rgba(14, 24, 18, 0.45));
	pointer-events: none;
}

.home-dest-card--rich .home-dest-card__media {
	position: relative;
}

.home-dest-card--rich:hover .home-dest-card__media img {
	transform: scale(1.04);
}

.home-dest-card--rich .home-dest-card__media img {
	transition: transform 0.55s ease;
}

.home-compare__col--media {
	padding: 0;
	overflow: hidden;
}

.home-compare__media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.home-compare__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.home-compare__body {
	padding: 1.15rem 1.2rem 1.25rem;
}

.home-when__panel {
	padding: 1.25rem 1.3rem;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid var(--ugt-line, #e5e1d6);
	border-radius: 10px;
}

.home-when__panel ul {
	margin: 0.65rem 0 0;
	padding-left: 1.1rem;
	color: var(--ugt-muted);
}

.home-when__panel p {
	margin: 0.65rem 0 0;
	color: var(--ugt-muted);
	line-height: 1.55;
}

/* When to go — enhanced */
.home-when {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(ellipse at 10% 0%, rgba(45, 106, 79, 0.08), transparent 42%),
		radial-gradient(ellipse at 95% 100%, rgba(201, 162, 39, 0.1), transparent 40%),
		linear-gradient(180deg, #f8f7f2 0%, #eef2ec 100%);
}

.home-when__intro {
	max-width: 42rem;
	margin: 0 auto 1.75rem;
	text-align: center;
}

.home-when__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.1rem;
	height: 3.1rem;
	margin-bottom: 0.85rem;
	border-radius: 999px;
	background: rgba(45, 106, 79, 0.1);
	color: var(--ugt-green, #2d6a4f);
	border: 1px solid rgba(45, 106, 79, 0.12);
}

.home-when__intro .section-lead {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
}

.home-when__year {
	max-width: 48rem;
	margin: 0 auto 1.75rem;
	padding: 1rem 1.1rem 1.05rem;
	border-radius: 14px;
	background: #fff;
	border: 1px solid rgba(26, 51, 41, 0.1);
	box-shadow: 0 10px 26px rgba(20, 34, 27, 0.05);
}

.home-when__months {
	list-style: none;
	margin: 0 0 0.85rem;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 0.35rem;
}

.home-when__months li {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 2.4rem;
	border-radius: 8px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.home-when__months li.is-dry {
	background: rgba(45, 106, 79, 0.14);
	color: var(--ugt-green-deep, #2f4a24);
}

.home-when__months li.is-green {
	background: rgba(201, 162, 39, 0.16);
	color: #6a5410;
}

.home-when__legend {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	justify-content: center;
	font-size: 0.8rem;
	color: var(--ugt-muted, #5a6b62);
}

.home-when__legend li {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.home-when__legend span {
	display: inline-block;
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 3px;
}

.home-when__legend span.is-dry {
	background: rgba(45, 106, 79, 0.35);
}

.home-when__legend span.is-green {
	background: rgba(201, 162, 39, 0.45);
}

.home-when .home-when__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin: 0;
}

.home-when .home-when__panel {
	display: grid;
	align-content: start;
	gap: 0.45rem;
	min-height: 100%;
	padding: 1.35rem 1.3rem 1.4rem;
	background: #fff;
	border: 1px solid rgba(26, 51, 41, 0.1);
	border-radius: 14px;
	box-shadow: 0 10px 26px rgba(20, 34, 27, 0.05);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-when .home-when__panel:hover {
	transform: translateY(-3px);
	border-color: rgba(45, 106, 79, 0.28);
	box-shadow: 0 16px 34px rgba(20, 34, 27, 0.09);
}

.home-when__panel-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.7rem;
	height: 2.7rem;
	border-radius: 999px;
	background: rgba(45, 106, 79, 0.1);
	color: var(--ugt-green, #2d6a4f);
}

.home-when__panel--green .home-when__panel-icon {
	background: rgba(201, 162, 39, 0.16);
	color: #8a6d12;
}

.home-when__panel-tag {
	margin: 0.15rem 0 0;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ugt-green, #2d6a4f);
}

.home-when__panel--green .home-when__panel-tag {
	color: #8a6d12;
}

.home-when .home-when__panel h3 {
	margin: 0;
	font-size: 1.2rem;
	line-height: 1.25;
	color: var(--ugt-ink, #14221b);
}

.home-when .home-when__panel ul {
	list-style: none;
	margin: 0.5rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.home-when .home-when__panel li {
	display: grid;
	gap: 0.2rem;
	padding: 0.75rem 0.85rem;
	border-radius: 10px;
	background: rgba(45, 106, 79, 0.06);
}

.home-when .home-when__panel li strong {
	font-size: 0.95rem;
	color: var(--ugt-ink, #14221b);
}

.home-when .home-when__panel li span {
	font-size: 0.88rem;
	line-height: 1.45;
	color: var(--ugt-muted, #5a6b62);
}

.home-when .home-when__panel > p {
	margin: 0.35rem 0 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--ugt-muted, #5a6b62);
}

@media (max-width: 900px) {
	.home-when__months {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.home-when .home-when__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 520px) {
	.home-when__months {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.home-chimp-places a,
.home-why-travel__grid li,
.home-how__steps li,
.home-interests__grid a,
.home-guide-card {
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.home-chimp-places a:hover,
.home-why-travel__grid li:hover,
.home-how__steps li:hover,
.home-interests__grid a:hover,
.home-guide-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(20, 34, 27, 0.08);
	border-color: rgba(45, 106, 79, 0.28);
}


[data-ugt-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-ugt-reveal].is-revealed {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	[data-ugt-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.home-gorilla-parks__card,
	.home-gorilla-parks__media img,
	.home-dest-card--rich .home-dest-card__media img,
	.home-chimp-places a,
	.home-why-travel__grid li,
	.home-how__steps li,
	.home-interests__grid a,
	.home-guide-card {
		transition: none !important;
		transform: none !important;
	}
}

@media (max-width: 900px) {
	.home-why--split .home-why__inner,
	.home-feature__split,
	.home-feature__split--reverse {
		grid-template-columns: 1fr;
	}

	.home-feature__split--reverse > :first-child {
		order: 0;
	}

	.home-why__media img,
	.home-feature__figure img {
		aspect-ratio: 16 / 10;
		max-height: 320px;
	}
}

/* —— Uganda vs Rwanda (enhanced) —— */
.home-compare--uganda-rwanda {
	position: relative;
	background:
		radial-gradient(ellipse 70% 50% at 0% 0%, rgba(45, 106, 79, 0.08), transparent 55%),
		radial-gradient(ellipse 60% 45% at 100% 100%, rgba(26, 51, 41, 0.06), transparent 50%),
		#f3f5f2;
	overflow: hidden;
}

.home-compare--uganda-rwanda .home-compare__intro {
	max-width: 40rem;
	margin: 0 auto 1.75rem;
	text-align: center;
}

.home-compare__intro-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 0.85rem;
	border-radius: 999px;
	background: rgba(45, 106, 79, 0.12);
	color: #2f5d3a;
}

.home-compare--uganda-rwanda .section-lead {
	margin-left: auto;
	margin-right: auto;
}

.home-compare__snapshots {
	list-style: none;
	margin: 0 0 1.75rem;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem;
}

.home-compare__snapshots li {
	padding: 1rem 1.1rem;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(28, 36, 24, 0.08);
	border-radius: 12px;
	box-shadow: 0 8px 22px rgba(20, 34, 27, 0.04);
}

.home-compare__snap-label {
	display: block;
	margin-bottom: 0.55rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #2f5d3a;
}

.home-compare__snap-row {
	display: grid;
	gap: 0.4rem;
	font-size: 0.88rem;
	line-height: 1.4;
	color: #5a6b62;
}

.home-compare__snap-row strong {
	display: inline-block;
	min-width: 4.2rem;
	margin-right: 0.25rem;
	color: #14221b;
	font-weight: 700;
}

.home-compare--uganda-rwanda .home-compare__split {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 1.25rem;
	align-items: stretch;
	margin-top: 0;
}

.home-compare--uganda-rwanda .home-compare__col {
	display: flex;
	flex-direction: column;
	padding: 0;
	background: #fff;
	border: 1px solid rgba(28, 36, 24, 0.08);
	border-radius: 14px;
	box-shadow: 0 12px 32px rgba(20, 34, 27, 0.07);
	overflow: hidden;
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.home-compare--uganda-rwanda .home-compare__col:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(20, 34, 27, 0.12);
}

.home-compare--uganda-rwanda .home-compare__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #1a3329;
}

.home-compare--uganda-rwanda .home-compare__media img,
.home-compare__media-ph {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s ease;
}

.home-compare__media-ph {
	background: linear-gradient(145deg, #1a3329, #2d6a4f);
}

.home-compare--uganda-rwanda .home-compare__col:hover .home-compare__media img {
	transform: scale(1.04);
}

.home-compare__media-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(12, 20, 16, 0.45) 100%);
	pointer-events: none;
}

.home-compare__flag {
	position: absolute;
	left: 0.9rem;
	bottom: 0.85rem;
	z-index: 1;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: rgba(14, 22, 16, 0.78);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	backdrop-filter: blur(4px);
}

.home-compare--uganda-rwanda .home-compare__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.25rem 1.3rem 1.35rem;
}

.home-compare--uganda-rwanda .home-compare__body h3 {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #14221b;
}

.home-compare__tag {
	margin: 0.35rem 0 0.85rem;
	font-size: 0.95rem;
	font-weight: 700;
	color: #2f5d3a;
}

.home-compare__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}

.home-compare__list li {
	display: grid;
	grid-template-columns: 1.15rem 1fr;
	gap: 0.55rem;
	align-items: start;
	font-size: 0.92rem;
	line-height: 1.45;
	color: #5a6b62;
}

.home-compare__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.15rem;
	height: 1.15rem;
	margin-top: 0.1rem;
	border-radius: 999px;
	background: rgba(45, 106, 79, 0.12);
	color: #2f5d3a;
}

.home-compare__country-cta {
	margin-top: auto;
	padding-top: 1.1rem;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	color: #2f5d3a;
}

.home-compare__country-cta:hover {
	color: #3d8b37;
}

.home-compare__vs {
	align-self: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.1rem;
	height: 3.1rem;
	border-radius: 999px;
	background: #1a3329;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	box-shadow: 0 10px 24px rgba(20, 34, 27, 0.2);
	z-index: 1;
}

.home-compare__note-card {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 1rem 1.25rem;
	align-items: center;
	margin-top: 1.5rem;
	padding: 1.15rem 1.35rem;
	border-radius: 14px;
	background: #1a3329;
	color: #fff;
	box-shadow: 0 14px 34px rgba(20, 34, 27, 0.16);
}

.home-compare__note-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.home-compare__note-card strong {
	display: block;
	margin-bottom: 0.25rem;
	font-size: 1.05rem;
}

.home-compare__note-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.92rem;
	line-height: 1.5;
}

.home-compare__note-card .btn--home-secondary {
	border-color: rgba(255, 255, 255, 0.35);
	background: transparent;
	color: #fff;
	white-space: nowrap;
}

.home-compare__note-card .btn--home-secondary:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.home-compare__more {
	margin-top: 1.5rem;
	text-align: center;
}

@media (max-width: 1000px) {
	.home-compare__snapshots {
		grid-template-columns: 1fr;
	}

	.home-compare--uganda-rwanda .home-compare__split {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.home-compare__vs {
		width: 2.6rem;
		height: 2.6rem;
		margin: -0.35rem auto;
	}

	.home-compare__note-card {
		grid-template-columns: auto 1fr;
	}

	.home-compare__note-card .btn {
		grid-column: 1 / -1;
		justify-self: start;
	}
}

@media (max-width: 640px) {
	.home-compare__note-card {
		grid-template-columns: 1fr;
		text-align: left;
	}

	.home-compare__note-card .btn {
		width: 100%;
		text-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-compare--uganda-rwanda .home-compare__col,
	.home-compare--uganda-rwanda .home-compare__media img {
		transition: none !important;
		transform: none !important;
	}
}
