/* —— Cards —— */
.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

@media (max-width: 900px) {
	.card-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 560px) {
	.card-grid {
		grid-template-columns: 1fr;
	}
}

.card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 48px rgba(26, 15, 8, 0.14);
}

.card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--brown-mid);
}

.card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 180px;
	background: linear-gradient(145deg, var(--forest-mid), var(--brown-mid));
}

.wildlife-content-figure {
	margin: 1.5rem 0 2rem;
}

.wildlife-content-figure img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.wildlife-content-figure--placeholder img {
	object-fit: cover;
	max-height: 420px;
}

.wildlife-content-figure figcaption {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	color: var(--text-muted, #5c6b63);
	font-style: italic;
}

/* Wildlife guide prose — shared formatter (inc/wildlife-content/wildlife-content-format.php) */
.wildlife-formatted-prose .wildlife-section-heading {
	letter-spacing: 0.01em;
}

.wildlife-formatted-prose .wildlife-section-heading:first-of-type {
	margin-top: 0.5rem;
}

.wildlife-formatted-prose .wildlife-section-subheading {
	color: var(--forest-mid, #1e4d3a);
}

.wildlife-formatted-prose .wildlife-section-lede {
	font-size: 1.08rem;
	line-height: 1.75;
	color: var(--brown-mid, #4a3728);
	margin-bottom: 1.25rem;
}

.wildlife-formatted-prose .wildlife-quick-facts-card,
.wildlife-formatted-prose .wildlife-highlight-list {
	margin: 1rem 0 1.75rem;
	padding: 1rem 1.15rem;
	background: linear-gradient(180deg, rgba(250, 248, 243, 0.95) 0%, var(--white) 100%);
	border: 1px solid rgba(184, 134, 11, 0.28);
	border-radius: var(--radius, 8px);
	box-shadow: 0 2px 14px rgba(26, 15, 8, 0.05);
}

.wildlife-formatted-prose .wildlife-quick-facts,
.wildlife-formatted-prose .wildlife-highlight-list ul {
	margin: 0;
	padding-left: 1.2rem;
}

.wildlife-formatted-prose .wildlife-quick-facts li,
.wildlife-formatted-prose .wildlife-highlight-list li {
	margin-bottom: 0.35rem;
}

.wildlife-formatted-prose .wildlife-quick-facts-table {
	margin-top: 0.75rem;
}

.wildlife-formatted-prose .dest-hub__figure {
	margin-top: 0;
}

/* Wildlife subpage safari marketing grid */
.wildlife-section-safari-packages {
	margin-top: clamp(2rem, 4vw, 2.75rem);
}

.wildlife-section-safari-packages .dest-hub-section-packages__bar {
	align-items: flex-start;
	gap: 1rem 1.5rem;
}

.wildlife-section-safari-packages__headings {
	flex: 1 1 16rem;
	min-width: 0;
}

.wildlife-section-safari-packages__intro {
	margin: 0.35rem 0 0;
	font-size: 0.98rem;
	line-height: 1.55;
	color: var(--brown-mid, #4a3728);
	max-width: 42rem;
}

.wildlife-formatted-prose h3 a {
	color: var(--forest-mid, #1e4d3a);
	text-decoration: none;
	border-bottom: 1px solid rgba(184, 134, 11, 0.45);
}

.wildlife-formatted-prose h3 a:hover,
.wildlife-formatted-prose h3 a:focus-visible {
	color: var(--gold, #b8860b);
	border-bottom-color: currentColor;
}

.wildlife-archive {
	padding-bottom: 3rem;
}

.wildlife-archive__section {
	margin-top: 2.75rem;
}

.wildlife-archive__section:first-child {
	margin-top: 1.5rem;
}

.wildlife-archive__section-head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.5rem 1rem;
	margin-bottom: 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.wildlife-archive__section-title {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	margin: 0;
}

.wildlife-archive__section-count {
	margin: 0;
	font-size: 0.9rem;
	color: var(--text-muted, #5c6b63);
}

.wildlife-filters {
	margin-top: 1.25rem;
}

.wildlife-filters__groups {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}

.wildlife-filters__group-pill {
	display: inline-block;
	padding: 0.35rem 0.85rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--forest-mid, #1e4d3a);
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 999px;
	transition: background 0.15s ease, color 0.15s ease;
}

.wildlife-filters__group-pill:hover,
.wildlife-filters__group-pill.is-active {
	background: var(--forest-mid, #1e4d3a);
	color: #fff;
	border-color: var(--forest-mid, #1e4d3a);
}

.wildlife-archive__empty {
	margin: 2rem 0;
	padding: 1.5rem;
	text-align: center;
	color: var(--text-muted, #5c6b63);
	background: rgba(0, 0, 0, 0.03);
	border-radius: 8px;
}

.archive-hero--travel-guide {
	padding: 2rem 0 1.25rem;
	background: linear-gradient(180deg, rgba(245, 240, 232, 0.95), var(--cream));
}

.archive-hero--travel-guide .page-title {
	margin-bottom: 1rem;
}

.travel-guide-archive__content {
	width: 100%;
	max-width: none;
	margin: 0 0 1.75rem;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--brown-mid, #4a3f35);
}

.travel-guide-archive__content > *:first-child {
	margin-top: 0;
}

.travel-guide-archive__content p {
	margin: 0 0 0.85rem;
}

.travel-guide-archive__content p:last-child {
	margin-bottom: 0;
}

.travel-guide-archive__status {
	margin: 0.85rem 0 0;
	color: var(--muted);
	font-size: 0.98rem;
	line-height: 1.55;
}

.archive-hero--travel-guide .travel-guide-archive__content {
	margin-bottom: 1.25rem;
}

.travel-guide-filters {
	margin-top: 0;
	flex-wrap: wrap;
}

.travel-guide-filters__topic {
	min-width: 11rem;
	padding: 0.5rem 0.75rem;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 4px;
	font-size: 0.95rem;
}

.travel-guide-filters__topics {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}

.travel-guide-filters__topic-pill {
	display: inline-block;
	padding: 0.35rem 0.85rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--forest-mid, #1e4d3a);
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 999px;
}

.travel-guide-filters__topic-pill:hover,
.travel-guide-filters__topic-pill.is-active {
	background: var(--forest-mid, #1e4d3a);
	color: #fff;
	border-color: var(--forest-mid, #1e4d3a);
}

.travel-guide-archive {
	padding-top: 0;
	padding-bottom: 3rem;
}

.travel-guide-archive__empty {
	margin: 2rem 0;
	padding: 1.5rem;
	text-align: center;
	color: var(--text-muted, #5c6b63);
	background: rgba(0, 0, 0, 0.03);
	border-radius: 8px;
}

.card-grid--travel-guides {
	margin-top: 1.5rem;
}

.card__placeholder--guide {
	background: linear-gradient(145deg, #2a4a62, #1e4d3a);
}

.card--travel-guide .card__link {
	margin-top: auto;
	font-weight: 600;
	font-size: 0.9rem;
}

/* FAQ hub & singles (blueprint layout) */
.archive-hero--faq {
	background: linear-gradient(160deg, #1a3c34 0%, #2d5a4a 55%, #3d6b55 100%);
	color: #fff;
	padding: 2.5rem 0 2rem;
}

.archive-hero--faq .page-title,
.archive-hero--faq .archive-hero__subtitle {
	color: #fff;
}

.archive-hero--faq .archive-hero__subtitle {
	margin: 0.35rem 0 1rem;
	opacity: 0.92;
	font-size: 1.1rem;
}

.faq-archive__content {
	max-width: 52rem;
	margin: 0 auto 1.25rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.92);
}

.faq-archive__status {
	font-weight: 600;
	margin-top: 1rem;
}

.faq-filters__topics {
	margin-top: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	max-width: 56rem;
	margin-left: auto;
	margin-right: auto;
}

.faq-hero--archive .faq-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	margin-top: 1.25rem;
	max-width: 56rem;
	margin-left: auto;
	margin-right: auto;
}

.faq-hero--archive .faq-filters__topic,
.faq-hero--archive .faq-filters__country {
	margin-top: 0;
	padding: 0.45rem 0.75rem;
	border-radius: 8px;
	border: 1px solid rgba(61, 41, 20, 0.2);
	font: inherit;
	background: var(--white);
	min-width: 140px;
	height: 2.5rem;
	box-sizing: border-box;
}

.faq-hero--archive .dest-filters__search {
	flex: 1 1 220px;
	min-width: 12rem;
	max-width: 420px;
	height: 2.5rem;
	box-sizing: border-box;
}

.faq-hero--archive .faq-filters .btn {
	height: 2.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.faq-filters__topic-pill {
	display: inline-block;
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	color: #fff;
	font-size: 0.85rem;
	text-decoration: none;
}

.faq-filters__topic-pill.is-active,
.faq-filters__topic-pill:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: #fff;
}

.faq-archive {
	padding-bottom: 3rem;
}

.card-grid--faqs {
	margin-top: 1.5rem;
}

.pagination-wrap--faq {
	padding: 2.25rem 0 0.5rem;
	margin-top: 2rem;
	border-top: 1px solid rgba(61, 41, 20, 0.08);
}

.pagination--faq {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.pagination--faq__meta {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--text-muted, #5c6b63);
}

.pagination--faq .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
}

.pagination--faq .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.7rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.9rem;
	line-height: 1;
	text-decoration: none;
	color: var(--forest-dark, #1a3c34);
	background: var(--white, #fff);
	border: 1px solid rgba(61, 41, 20, 0.12);
	box-shadow: 0 1px 2px rgba(26, 15, 8, 0.05);
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.pagination--faq a.page-numbers:hover,
.pagination--faq a.page-numbers:focus-visible {
	background: var(--forest-mid, #1e4d3a);
	color: #fff;
	border-color: var(--forest-mid, #1e4d3a);
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(30, 77, 58, 0.22);
}

.pagination--faq .page-numbers.current {
	background: var(--forest-dark, #1a3c34);
	color: var(--cream, #f6f3ed);
	border-color: var(--forest-dark, #1a3c34);
	box-shadow: 0 6px 18px rgba(26, 60, 52, 0.28);
}

.pagination--faq .page-numbers.dots {
	min-width: auto;
	padding: 0 0.2rem;
	border: none;
	background: transparent;
	box-shadow: none;
	color: var(--text-muted, #5c6b63);
}

.pagination--faq .prev.page-numbers,
.pagination--faq .next.page-numbers {
	min-width: auto;
	padding: 0 1.1rem;
}

@media (max-width: 560px) {
	.pagination--faq .prev.page-numbers,
	.pagination--faq .next.page-numbers {
		flex: 1 1 calc(50% - 0.25rem);
		max-width: calc(50% - 0.25rem);
	}
}

.card--faq .card__body--faq {
	padding: 1.25rem 1.35rem;
	min-height: 8rem;
	display: flex;
	flex-direction: column;
}

.card--faq .card__title {
	font-size: 1.05rem;
	line-height: 1.35;
}

/* FAQ single page */
.faq-page {
	margin: 0;
	background-color: #f6f3ed;
}

.faq-hero.dest-hub-hero {
	min-height: clamp(240px, 32vw, 340px);
	margin-bottom: 0;
}

.faq-hero .dest-hub-hero__bg-img {
	transform: none;
}

.faq-hero__scrim {
	background: linear-gradient(
		180deg,
		rgba(8, 28, 21, 0.2) 0%,
		rgba(8, 28, 21, 0.72) 100%
	);
}

.dest-hub-hero__bg-fallback--faq {
	background: linear-gradient(155deg, #0d2b24 0%, #1b4332 50%, #2d6a4f 100%);
}

.faq-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 820px;
	padding-bottom: 2rem;
}

.faq-hero__crumb {
	margin-bottom: 0.75rem;
	font-size: 0.82rem;
	opacity: 0.9;
}

.faq-hero__crumb a {
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	transition: border-color 0.15s ease;
}

.faq-hero__crumb a:hover {
	border-bottom-color: rgba(255, 255, 255, 0.7);
}

.faq-hero__title {
	margin-bottom: 0;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	text-wrap: balance;
	max-width: 22ch;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

.faq-page-header {
	background: linear-gradient(165deg, #1a3c34 0%, #264d42 50%, #2f5c4e 100%);
	color: #fff;
	padding: 1.75rem 0 2rem;
}

.faq-page-header__inner {
	max-width: 920px;
}

.faq-page-header__crumb {
	margin: 0 0 0.75rem;
	font-size: 0.875rem;
}

.faq-page-header__crumb a {
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
}

.faq-page-header__crumb a:hover {
	color: #fff;
	text-decoration: underline;
}

.faq-page-header__sep {
	margin: 0 0.35rem;
	opacity: 0.55;
}

.faq-page-header__topic {
	display: inline-block;
	margin: 0 0 0.65rem;
	padding: 0.25rem 0.65rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.14);
	border-radius: 0;
	color: rgba(255, 255, 255, 0.95);
}

.faq-page-header__title {
	margin: 0;
	font-size: clamp(1.65rem, 3.5vw, 2.35rem);
	line-height: 1.2;
	font-weight: 700;
	max-width: 28ch;
	color: #fff;
}

.faq-page__wrap {
	position: relative;
	z-index: 2;
	padding: 2rem 0 4rem;
	margin-top: 0;
}

.faq-page__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 310px);
	gap: 2.25rem 2.75rem;
	align-items: start;
	max-width: 1160px;
	margin: 0 auto;
}

.faq-page__main {
	min-width: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.65rem;
	align-items: stretch;
}

.faq-page__answer-wrap {
	margin-bottom: 0.35rem;
}

.faq-answer-card {
	position: relative;
	width: 100%;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid rgba(61, 41, 20, 0.1);
	border-left: 4px solid var(--gold, #d4af37);
	border-radius: 0;
	padding: 1.35rem 1.5rem;
	box-shadow: none;
}

.faq-answer-card__eyebrow {
	margin: 0 0 0.65rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--forest-dark, #1b4332);
}

.faq-answer-card__body p {
	margin: 0;
	font-size: clamp(1.05rem, 1.6vw, 1.2rem);
	line-height: 1.7;
	font-weight: 600;
	color: var(--forest-darkest, #081c15);
}

.faq-page__body.prose--faq {
	max-width: none;
	margin: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	align-items: stretch;
}

.faq-section-card {
	width: 100%;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid rgba(61, 41, 20, 0.08);
	border-radius: 0;
	padding: 1.35rem 1.5rem;
	box-shadow: none;
}

.faq-section-card--expanded {
	border-left: 3px solid rgba(45, 106, 79, 0.35);
}

.faq-section-card--facts {
	background: #fdfbf7;
	border-left: 3px solid var(--gold, #d4af37);
}

.prose--faq .faq-section-card h2 {
	margin: 0 0 0.85rem;
	padding-bottom: 0.55rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--forest-dark, #1b4332);
	line-height: 1.32;
	border-bottom: 1px solid rgba(61, 41, 20, 0.08);
}

.prose--faq .faq-section-card h3 {
	margin: 1.35rem 0 0.55rem;
	font-size: 1.06rem;
	color: var(--forest-dark, #1b4332);
}

.prose--faq .faq-section-card p,
.prose--faq .faq-section-card li {
	color: #4a4540;
	line-height: 1.72;
	text-align: left;
}

.prose--faq .faq-section-card ul {
	margin: 0.65rem 0 0;
	padding-left: 0;
	list-style: none;
}

.prose--faq .faq-section-card li {
	position: relative;
	padding-left: 1.35rem;
	margin-bottom: 0.45rem;
}

.prose--faq .faq-section-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.4rem;
	height: 0.4rem;
	border-radius: 0;
	background: var(--forest-mid, #2d6a4f);
	opacity: 0.65;
}

.prose--faq .faq-section-card a {
	font-weight: 600;
	color: var(--forest-dark, #1b4332);
	text-decoration: underline;
	text-decoration-color: rgba(212, 175, 55, 0.55);
	text-underline-offset: 0.15em;
}

.prose--faq .faq-section-card a:hover {
	text-decoration-color: var(--gold, #d4af37);
}

.faq-related-block {
	width: 100%;
	box-sizing: border-box;
	margin-top: 0.5rem;
	padding: 1.35rem 1.5rem;
	background: #fff;
	border: 1px solid rgba(61, 41, 20, 0.08);
	border-radius: 0;
	box-shadow: none;
}

.faq-related-block__title {
	margin: 0 0 1rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--forest-dark, #1b4332);
}

.faq-page__main .dest-hub-adventure-cta.faq-inline-cta {
	width: 100%;
	max-width: none;
	margin: 0.75rem 0 0;
	border-radius: 0;
}

/* CTA Secondary — green content band */
.ust-cta-secondary,
.faq-page-cta-wrap .ust-cta-secondary {
	width: 100%;
	box-sizing: border-box;
	margin-top: 0.5rem;
	border-radius: 0;
	overflow: hidden;
	background: linear-gradient(135deg, #1a3c34 0%, #2d5a4a 100%);
	color: #fff;
}

.ust-cta-secondary__inner {
	padding: 1.75rem 1.75rem;
}

.ust-cta-secondary__text {
	margin: 0 0 1.15rem;
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.55;
	max-width: 42rem;
	font-size: 1rem;
}

.ust-cta-secondary__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	align-items: center;
}

.ust-cta-secondary__actions .btn--lg {
	min-height: 2.75rem;
	padding-inline: 1.25rem;
}

.ust-cta-secondary__btn-wa {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
}

/* Legacy parsed FAQ CTA blocks */
.faq-page-cta-wrap {
	width: 100%;
	box-sizing: border-box;
	margin-top: 0.5rem;
	border-radius: 0;
	overflow: hidden;
	background: linear-gradient(135deg, #1a3c34 0%, #2d5a4a 100%);
	color: #fff;
}

.faq-page-sidebar .faq-sidebar-cta-card.tour-sidebar-card {
	width: 100%;
	max-width: none;
	margin: 0 0 0.5rem;
}

.faq-safaris-block {
	width: 100%;
	box-sizing: border-box;
	margin-top: 0.5rem;
}

.faq-safaris-block__title {
	margin: 0 0 1rem;
	font-size: 1.2rem;
	font-weight: 700;
	color: #1a3c34;
}

.faq-safaris-block__grid {
	width: 100%;
}

.faq-safaris-block__grid .card-grid {
	margin: 0;
}

.faq-safaris-block__footer {
	margin: 1rem 0 0;
	text-align: right;
}

.faq-safaris-block__all {
	font-weight: 600;
	color: var(--forest-dark, #1a3c34);
	text-decoration: none;
}

.faq-safaris-block__all:hover {
	text-decoration: underline;
}

.faq-related-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
}

.faq-related-card {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 0.9rem 1rem;
	background: #faf8f4;
	border: 1px solid rgba(61, 41, 20, 0.08);
	border-radius: 0;
	text-decoration: none;
	box-shadow: none;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.faq-related-card:hover {
	border-color: rgba(45, 106, 79, 0.25);
	background: #fff;
}

.faq-related-card__q {
	font-weight: 700;
	font-size: 0.94rem;
	line-height: 1.42;
	color: var(--forest-dark, #1b4332);
}

.faq-related-card__hint {
	font-size: 0.84rem;
	line-height: 1.48;
	color: #6b6560;
}

.faq-page-cta-wrap .faq-cta,
.faq-page-cta-wrap .faq-page-cta__inner {
	padding: 1.75rem 1.75rem;
}

.faq-page-cta-wrap .faq-cta h2,
.faq-page-cta-wrap .faq-page-cta__title {
	margin: 0 0 0.65rem;
	font-size: 1.35rem;
	color: #fff;
}

.faq-page-cta-wrap .faq-cta p,
.faq-page-cta-wrap .faq-page-cta__text {
	margin: 0 0 1.15rem;
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.55;
	max-width: 42rem;
}

.faq-page-sidebar {
	position: sticky;
	top: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.faq-page-sidebar__panel {
	background: #fff;
	border: 1px solid rgba(61, 41, 20, 0.08);
	border-radius: 0;
	padding: 1rem 1.1rem;
	box-shadow: none;
}

.faq-page-sidebar__toc-list,
.faq-page-sidebar__related-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.faq-page-sidebar__label {
	margin: 0 0 0.65rem;
	padding-bottom: 0.45rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1a3c34;
	border-bottom: 1px solid rgba(61, 41, 20, 0.1);
}

.faq-page-sidebar__toc-list a,
.faq-page-sidebar__related-list a {
	display: block;
	padding: 0.4rem 0;
	font-size: 0.88rem;
	line-height: 1.42;
	color: #4a3728;
	text-decoration: none;
	border-bottom: 1px solid rgba(61, 41, 20, 0.06);
}

.faq-page-sidebar__toc-list li:last-child a,
.faq-page-sidebar__related-list li:last-child a {
	border-bottom: 0;
}

.faq-page-sidebar__toc-list a:hover,
.faq-page-sidebar__related-list a:hover {
	color: #1a3c34;
	text-decoration: underline;
}

.faq-page-sidebar .tour-sidebar-packages--faq {
	margin-top: 0;
	margin-bottom: 0;
	width: 100%;
}

.faq-page--singular .faq-sidebar-cta-card,
.faq-page--singular .faq-safaris-block,
.faq-page--singular .tour-sidebar-card {
	border-radius: 0;
}


@media (max-width: 960px) {
	.faq-page__layout {
		grid-template-columns: 1fr;
	}

	.faq-page__wrap {
		padding: 1.5rem 0 3rem;
	}

	.faq-page-sidebar {
		position: static;
		order: -1;
	}

	.faq-related-grid {
		grid-template-columns: 1fr;
	}

	.faq-hero__title {
		max-width: none;
	}
}

@media (max-width: 600px) {
	.faq-page-header {
		padding: 1.35rem 0 1.5rem;
	}

	.faq-page__wrap {
		padding: 1.25rem 0 2.5rem;
	}

	.faq-hero.dest-hub-hero {
		min-height: 220px;
	}

	.faq-hero__inner {
		padding-bottom: 1.5rem;
	}

	.faq-answer-card {
		padding: 1.15rem 1.1rem;
	}

	.faq-section-card {
		padding: 1.15rem 1.1rem;
		border-radius: 0;
	}

	.faq-related-block {
		padding: 1.15rem 1.1rem;
		border-radius: 0;
	}
}

/* Travel guide singular */
.travel-guide-singular-article {
	margin: 0;
}

/* Travel guides — blog editorial layout (matches single post / journal) */
.travel-guide-blog-single.blog-single {
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.travel-guide-blog-layout .tour-layout__main > .safari-cost-child-intro,
.travel-guide-blog-layout .tour-layout__main > .safari-cost-landing,
.travel-guide-blog-layout .tour-layout__main > .birding-hub-landing,
.travel-guide-blog-layout .tour-layout__main > .culture-hub-landing,
.travel-guide-blog-layout .tour-layout__main > .seasonal-hub-landing {
	margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.travel-guide-blog-toc {
	margin: 0 0 1.35rem;
	padding-bottom: 1.15rem;
	border-bottom: 1px solid rgba(61, 41, 20, 0.08);
}

.travel-guide-blog-index .travel-guide-filters--blog {
	margin-top: 1.35rem;
}

.travel-guide-blog-archive-hero .travel-guide-filters__topics {
	margin-top: 1rem;
}

.travel-guide-blog-layout .tour-layout__main > .safari-cost-related,
.travel-guide-blog-layout .tour-layout__main > .birding-child-related,
.travel-guide-blog-layout .tour-layout__main > .culture-child-related,
.travel-guide-blog-layout .tour-layout__main > .seasonal-child-related,
.travel-guide-blog-layout .tour-layout__main > .safari-cost-hub-related,
.travel-guide-blog-layout .tour-layout__main > .birding-hub-related,
.travel-guide-blog-layout .tour-layout__main > .culture-hub-related,
.travel-guide-blog-layout .tour-layout__main > .seasonal-hub-related {
	margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.travel-guide-blog-layout .safari-cost-child-related__grid,
.travel-guide-blog-layout .safari-cost-featured__grid {
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.travel-guide-blog-layout .safari-cost-featured-card {
	min-height: 100%;
}

.travel-guide-blog-layout .tour-layout__main > .travel-guide-standard-related {
	margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

/* —— Prose / content —— */
.prose {
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

.home-deep-seo .prose.prose--home-deep,
.home-deep-seo-faq .prose.prose--home-deep {
	max-width: min(52rem, 100%);
}

.home-deep-seo__head {
	margin-bottom: 1.75rem;
}

.home-deep-seo__head h2 {
	font-size: clamp(1.35rem, 3.1vw, 1.95rem);
	line-height: 1.22;
}

.home-deep-seo__lede {
	font-size: 1.05rem;
	line-height: 1.65;
	margin: 0 0 1rem;
	color: var(--brown-mid, #4a3728);
}

.home-deep-seo__head .home-deep-seo__lede:last-child {
	margin-bottom: 0;
}

.home-deep-seo__lede strong,
.home-deep-highlight__text strong {
	font-weight: 700;
	color: var(--brown-dark, #3d2914);
}

.home-deep-seo .prose--home-deep h3 {
	margin-top: 2.25rem;
	margin-bottom: 0.75rem;
	font-size: clamp(1.15rem, 2.2vw, 1.35rem);
}

/* Destinations / popular-experiences cards: heading stays in prose column; grid spans full `.wrap` width */
.home-deep-dest-explore-band,
.home-deep-exp-explore-band {
	width: 100%;
	margin-block: clamp(0.75rem, 2vw, 1.35rem);
}

.home-deep-seo .home-deep-dest-explore-band > .prose.prose--home-deep h3,
.home-deep-seo .home-deep-exp-explore-band > .prose.prose--home-deep h3 {
	margin-top: 0;
	margin-bottom: 0.65rem;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.home-deep-seo .home-deep-dest-explore .card__title a,
.home-deep-seo .home-deep-exp-explore .card__title a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.home-deep-seo .home-deep-dest-explore-band .home-deep-dest-explore,
.home-deep-seo .home-deep-exp-explore-band .home-deep-exp-explore {
	margin-top: 0;
	max-width: none;
	width: 100%;
	margin-bottom: 1.25rem;
}

.home-deep-seo .home-deep-dest-explore .card__excerpt,
.home-deep-seo .home-deep-exp-explore .card__excerpt {
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--text, inherit);
}

.home-deep-seo .home-deep-exp-explore .card__excerpt p {
	margin: 0 0 0.65rem;
}

.home-deep-seo .home-deep-exp-explore .card__excerpt p:last-child {
	margin-bottom: 0;
}

.home-deep-seo .home-deep-exp-explore .card__excerpt .home-deep-morelink {
	margin-top: 0.05rem;
	margin-bottom: 0;
	font-weight: 600;
}

.home-deep-seo .home-deep-dest-explore .card__excerpt strong,
.home-deep-seo .home-deep-exp-explore .card__excerpt strong {
	font-weight: 700;
	color: var(--brown-dark, inherit);
}

/* Popular experiences strip: two cards per row (destinations band keeps three-up) */
.home-deep-seo .home-deep-exp-explore-band .home-deep-exp-explore.card-grid--dest {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 768px) {
	.home-deep-seo .home-deep-exp-explore-band .home-deep-exp-explore.card-grid--dest {
		grid-template-columns: 1fr;
	}
}

/* Planning arrivals: wide image + editorial column (featured split rows) */
.home-deep-planning-features-band {
	width: 100%;
	max-width: none;
	margin: clamp(1.25rem, 3.5vw, 2.5rem) 0 clamp(1.75rem, 4vw, 3rem);
}

.home-deep-planning-features-band__head {
	margin-bottom: clamp(1.35rem, 3.2vw, 2rem);
	text-align: center;
}

.home-deep-planning-features-band__head-inner {
	max-width: min(56rem, 100%);
	margin-left: auto;
	margin-right: auto;
}

.home-deep-planning-features-band .home-deep-planning-features-band__title {
	margin: 0 auto;
	max-width: min(52rem, 100%);
	text-align: center;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 6px;
}

.home-deep-planning-features-band__stack {
	display: flex;
	flex-direction: column;
	gap: clamp(1.35rem, 3.2vw, 2.25rem);
}

/* Each topic in its own tinted panel */
.home-deep-planning-features-band .home-deep-planning-feature {
	margin: 0;
	padding: clamp(1.15rem, 2.8vw, 1.75rem);
	border-radius: var(--radius, 12px);
	border: 1px solid rgba(61, 41, 20, 0.12);
	box-shadow: 0 6px 28px rgba(26, 15, 8, 0.07);
}

.home-deep-planning-features-band .home-deep-planning-feature:nth-child(6n + 1) {
	background: linear-gradient(160deg, rgba(255, 254, 250, 0.98) 0%, rgba(247, 241, 232, 0.96) 100%);
}

.home-deep-planning-features-band .home-deep-planning-feature:nth-child(6n + 2) {
	background: linear-gradient(160deg, rgba(236, 245, 238, 0.92) 0%, rgba(228, 238, 232, 0.94) 100%);
}

.home-deep-planning-features-band .home-deep-planning-feature:nth-child(6n + 3) {
	background: linear-gradient(160deg, rgba(255, 249, 242, 0.97) 0%, rgba(242, 232, 220, 0.95) 100%);
}

.home-deep-planning-features-band .home-deep-planning-feature:nth-child(6n + 4) {
	background: linear-gradient(160deg, rgba(240, 246, 252, 0.9) 0%, rgba(232, 238, 245, 0.94) 100%);
}

.home-deep-planning-features-band .home-deep-planning-feature:nth-child(6n + 5) {
	background: linear-gradient(160deg, rgba(252, 246, 236, 0.97) 0%, rgba(244, 234, 218, 0.95) 100%);
}

.home-deep-planning-features-band .home-deep-planning-feature:nth-child(6n + 6) {
	background: linear-gradient(160deg, rgba(233, 242, 236, 0.94) 0%, rgba(222, 234, 228, 0.96) 100%);
}

.home-deep-planning-feature__grid {
	display: grid;
	grid-template-columns: minmax(260px, 1fr) minmax(260px, 1.12fr);
	gap: clamp(1.35rem, 3.5vw, 3.35rem);
	align-items: stretch;
	width: 100%;
	max-width: 100%;
}

@media (max-width: 760px) {
	.home-deep-planning-feature__grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 761px) {
	.home-deep-planning-feature--reverse .home-deep-planning-feature__media {
		grid-column: 2;
		grid-row: 1;
	}

	.home-deep-planning-feature--reverse .home-deep-planning-feature__content {
		grid-column: 1;
		grid-row: 1;
	}
}

.home-deep-planning-feature__media-hit {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
	border-radius: var(--radius, 12px);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 6px 20px rgba(26, 15, 8, 0.08);
	transition: box-shadow 0.2s ease;
}

.home-deep-planning-feature__media-hit:hover {
	box-shadow: 0 10px 28px rgba(26, 15, 8, 0.11);
}

.home-deep-planning-feature__frame {
	position: relative;
	flex: 1 1 auto;
	min-height: clamp(14rem, 32vw, 22rem);
	overflow: hidden;
	background: linear-gradient(145deg, var(--forest-mid), var(--brown-dark));
}

.home-deep-planning-feature__img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: transform 0.35s ease;
}

.home-deep-planning-feature__media-hit:hover .home-deep-planning-feature__img {
	transform: scale(1.03);
}

.home-deep-planning-feature__placeholder {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.home-deep-planning-feature__caption-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.65rem 0.95rem;
	background: #fff;
	font-size: 0.865rem;
	font-weight: 600;
	color: var(--brown-dark, #3d2914);
	line-height: 1.38;
	border-top: 1px solid rgba(61, 41, 20, 0.1);
	flex-shrink: 0;
}

.home-deep-planning-feature__caption-label {
	flex: 1;
}

.home-deep-planning-feature__caption-chevron {
	flex-shrink: 0;
	font-size: 1.4rem;
	font-weight: 300;
	color: #9a8878;
	line-height: 1;
}

.home-deep-planning-feature__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0 0 0.55rem;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--forest-dark);
}

.home-deep-planning-feature__eyebrow::before {
	content: '';
	width: 26px;
	height: 26px;
	border-radius: 7px;
	background: linear-gradient(135deg, var(--forest-mid), var(--forest-dark));
	flex-shrink: 0;
	opacity: 0.95;
	box-shadow: 0 4px 12px rgba(27, 67, 50, 0.25);
}

.home-deep-planning-feature__title {
	margin: 0 0 0.9rem;
	font-family: var(--font-display);
	font-size: clamp(1.06rem, 2.05vw, 1.38rem);
	font-weight: 800;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: 0.035em;
	color: var(--brown-dark);
}

.home-deep-planning-feature__accent {
	border-bottom: 4px solid var(--gold, #ddbf4c);
	padding-bottom: 1px;
}

.home-deep-planning-feature__body p {
	font-size: 1rem;
	line-height: 1.74;
	margin: 0 0 0.9rem;
	color: var(--brown-mid, #4a3728);
}

.home-deep-planning-feature__body .home-deep-morelink {
	margin-top: 0.35rem;
}

/* Guides / ethics narrative — full-bleed band up to Travel Style quote CTA */
.home-deep-lodge-ethics-panel {
	width: 100vw;
	max-width: none;
	box-sizing: border-box;
	margin-block: clamp(1.75rem, 5vw, 3rem);
	margin-inline: calc(50% - 50vw);
	padding-block: clamp(2.25rem, 5.5vw, 3.5rem);
	padding-inline: 0;
	position: relative;
	border: none;
	border-radius: 0;
	border-top: 1px solid rgba(61, 41, 20, 0.09);
	border-bottom: 1px solid rgba(61, 41, 20, 0.09);
	background: linear-gradient(
		178deg,
		rgba(248, 252, 254, 0.99) 0%,
		rgba(225, 238, 250, 0.97) 36%,
		rgba(230, 244, 235, 0.96) 72%,
		rgba(242, 248, 252, 0.98) 100%
	);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.72),
		0 28px 64px rgba(26, 15, 8, 0.07);
}

.home-deep-seo .home-deep-lodge-ethics-panel__shell.wrap {
	max-width: var(--wrap);
	margin-inline: auto;
}

.home-deep-seo .home-deep-lodge-ethics-panel__inner.prose.prose--home-deep {
	max-width: min(52rem, 100%);
	margin-inline: auto;
	margin-block: 0;
}

/* Tablet + laptop + desktop: ~80% viewport for this band’s column (can extend past outer .wrap). */
@media (min-width: 640px) {
	.home-deep-seo .home-deep-lodge-ethics-panel__shell.wrap {
		width: min(80vw, 1600px);
		max-width: min(80vw, 1600px);
		box-sizing: border-box;
		margin-inline: auto;
	}

	.home-deep-seo .home-deep-lodge-ethics-panel__inner.prose.prose--home-deep {
		max-width: 100%;
		width: 100%;
	}
}

.home-deep-seo .home-deep-lodge-ethics-panel__inner.prose--home-deep > :first-child {
	margin-top: 0;
}

.home-deep-seo .home-deep-lodge-ethics-panel__inner.prose--home-deep > :last-child {
	margin-bottom: 0;
}

/* Section headings anywhere inside ethics band prose */
.home-deep-seo .home-deep-lodge-ethics-panel__inner.prose--home-deep h3 {
	text-decoration: underline;
	text-decoration-color: rgba(221, 191, 76, 0.85);
	text-decoration-thickness: 2px;
	text-underline-offset: 6px;
}

/*
 * Safari guide block: tighter paragraph rhythm + small right-float image + italic caption.
 */
.home-deep-lodge-ethics-panel .home-deep-guide-intro {
	display: flow-root;
	max-width: 100%;
	margin: 0 0 clamp(0.25rem, 1.2vw, 0.85rem);
}

.home-deep-lodge-ethics-panel .home-deep-guide-intro > h3 {
	margin-top: 0;
	margin-bottom: clamp(0.65rem, 2vw, 0.95rem);
	font-size: clamp(1.15rem, 2.2vw, 1.35rem);
}

.home-deep-lodge-ethics-panel .home-deep-guide-intro > p {
	margin: 0 0 clamp(0.55rem, 1.45vw, 0.82rem);
	line-height: 1.62;
	text-align: left;
}

.home-deep-lodge-ethics-panel .home-deep-guide-intro > p:last-child {
	margin-bottom: 0;
}

.home-deep-lodge-ethics-panel .home-deep-guide-intro__figure {
	float: right;
	clear: right;
	width: clamp(354px, 57vw, 606px);
	margin: 0.15rem 0 0 clamp(1rem, 3vw, 1.75rem);
	margin-bottom: 0.55rem;
	text-align: center;
}

.home-deep-lodge-ethics-panel .home-deep-guide-intro__media-hit {
	display: block;
	border-radius: calc(var(--radius, 12px) - 2px);
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(26, 15, 8, 0.12);
	text-decoration: none;
	line-height: 0;
	transition: box-shadow 0.2s ease;
}

.home-deep-lodge-ethics-panel .home-deep-guide-intro__media-hit:hover {
	box-shadow: 0 9px 28px rgba(26, 15, 8, 0.14);
}

.home-deep-lodge-ethics-panel .home-deep-guide-intro__img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 4 / 3;
	min-height: 5.5rem;
}

.home-deep-lodge-ethics-panel .home-deep-guide-intro__placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: calc(var(--radius, 12px) - 2px);
	background: linear-gradient(145deg, var(--forest-mid), var(--brown-dark));
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.home-deep-lodge-ethics-panel .home-deep-guide-intro__figcaption {
	margin-top: 0.38rem;
	font-family: var(--font-body);
	font-size: clamp(0.7rem, 1.38vw, 0.795rem);
	font-style: italic;
	font-weight: 400;
	line-height: 1.42;
	color: var(--muted, #5c4a3d);
	padding: 0 0.2rem;
}

@media (max-width: 519px) {
	.home-deep-lodge-ethics-panel .home-deep-guide-intro__figure {
		float: none;
		width: min(92%, 34.5rem);
		margin: 0 auto clamp(1rem, 4vw, 1.35rem);
	}
}

/* Responsible safari — centred heading + intro */
.home-deep-lodge-ethics-panel .home-deep-responsible-lede {
	max-width: min(48rem, 100%);
	margin-inline: auto;
	margin-top: 0;
	margin-bottom: 0;
	text-align: center;
	text-wrap: balance;
}

.home-deep-lodge-ethics-panel .home-deep-responsible-lede h3 {
	margin-top: clamp(2.25rem, 4.5vw, 2.85rem);
	margin-bottom: 0.75rem;
	padding-top: clamp(1.85rem, 3.8vw, 2.35rem);
	border-top: 1px solid rgba(61, 41, 20, 0.12);
	text-decoration: underline;
	text-decoration-color: rgba(221, 191, 76, 0.85);
	text-decoration-thickness: 2px;
	text-underline-offset: 6px;
}

.home-deep-lodge-ethics-panel .home-deep-responsible-lede p {
	margin-left: auto;
	margin-right: auto;
}

.home-deep-lodge-ethics-panel .home-deep-responsible-lede p:last-child {
	margin-bottom: 0;
}

/*
 * Responsible safari: split image + copy rows embedded in ethics band (“glass” cards).
 */
.home-deep-lodge-ethics-panel .home-deep-ethics-stack {
	display: flex;
	flex-direction: column;
	gap: clamp(1.2rem, 3vw, 1.95rem);
	margin-inline: auto;
	max-width: 100%;
	margin-top: clamp(1.35rem, 2.95vw, 2.05rem);
	margin-bottom: clamp(0.15rem, 0.75vw, 0.65rem);
}

/* Card copy column: centred titles, left-aligned paragraphs in a centred measure */
.home-deep-lodge-ethics-panel .home-deep-ethics-stack .home-deep-planning-feature__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.home-deep-lodge-ethics-panel .home-deep-ethics-stack .home-deep-planning-feature__eyebrow {
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	flex-wrap: wrap;
}

.home-deep-lodge-ethics-panel .home-deep-ethics-stack .home-deep-planning-feature__title {
	width: 100%;
}

.home-deep-lodge-ethics-panel .home-deep-ethics-stack .home-deep-planning-feature__body {
	width: 100%;
	max-width: min(44rem, 100%);
	margin-inline: auto;
	text-align: left;
}

.home-deep-lodge-ethics-panel .home-deep-ethics-stack > .home-deep-planning-feature {
	margin: 0;
	padding: clamp(1rem, 2.35vw, 1.65rem);
	border-radius: calc(var(--radius, 12px) + 3px);
	border: 1px solid rgba(255, 255, 255, 0.55);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 16px 44px rgba(26, 15, 8, 0.08);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.home-deep-lodge-ethics-panel .home-deep-ethics-stack > .home-deep-planning-feature:nth-child(1) {
	background: linear-gradient(
		152deg,
		rgba(255, 255, 255, 0.78) 0%,
		rgba(246, 250, 255, 0.38) 100%
	);
}

.home-deep-lodge-ethics-panel .home-deep-ethics-stack > .home-deep-planning-feature:nth-child(2) {
	background: linear-gradient(
		152deg,
		rgba(255, 255, 255, 0.76) 0%,
		rgba(236, 246, 239, 0.42) 100%
	);
}

.home-deep-lodge-ethics-panel .home-deep-ethics-stack > .home-deep-planning-feature:nth-child(3) {
	background: linear-gradient(
		152deg,
		rgba(255, 255, 255, 0.76) 0%,
		rgba(237, 244, 252, 0.45) 100%
	);
}

.home-deep-lodge-ethics-panel .home-deep-ethics-stack > .home-deep-planning-feature:nth-child(4) {
	background: linear-gradient(
		152deg,
		rgba(255, 255, 255, 0.78) 0%,
		rgba(250, 244, 236, 0.44) 100%
	);
}

.home-deep-lodge-ethics-panel .home-deep-ethics-stack > .home-deep-planning-feature:nth-child(5) {
	background: linear-gradient(
		152deg,
		rgba(255, 255, 255, 0.77) 0%,
		rgba(246, 250, 255, 0.4) 100%
	);
}

.home-deep-lodge-ethics-panel .home-deep-ethics-stack .home-deep-planning-feature__frame {
	border-radius: calc(var(--radius, 12px) - 1px);
	overflow: hidden;
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.35),
		0 14px 32px rgba(26, 15, 8, 0.12);
}

@media (prefers-reduced-motion: reduce) {
	.home-deep-planning-feature__img {
		transition: none;
	}

	.home-deep-planning-feature__media-hit:hover .home-deep-planning-feature__img {
		transform: none;
	}
}

/* Responsible cards: drop caption chevron (link affordance stays on whole bar). */
.home-deep-lodge-ethics-panel .home-deep-ethics-stack .home-deep-planning-feature__caption-chevron {
	display: none;
}

.home-deep-lodge-ethics-panel .home-deep-ethics-stack .home-deep-planning-feature__caption-bar {
	justify-content: center;
	text-align: center;
	font-style: italic;
	font-weight: 400;
	font-size: clamp(0.74rem, 1.55vw, 0.8125rem);
	line-height: 1.48;
	letter-spacing: 0.02em;
	color: var(--muted, #5c4a3d);
	padding: 0.52rem clamp(0.85rem, 2.8vw, 1.05rem);
	background: rgba(252, 252, 251, 0.97);
	border-top: 1px solid rgba(61, 41, 20, 0.08);
	font-family: var(--font-body, inherit);
}

.home-deep-lodge-ethics-panel .home-deep-ethics-stack .home-deep-planning-feature__caption-label {
	flex: 0 1 auto;
	max-width: 100%;
	font-style: inherit;
	font-weight: inherit;
}

.home-deep-experience__title {
	margin-top: 1.75rem;
	margin-bottom: 0.6rem;
	font-family: var(--font-display);
	font-size: clamp(1.06rem, 2.05vw, 1.22rem);
	font-weight: 700;
	line-height: 1.28;
	color: var(--forest-dark);
}

.home-deep-seo .prose--home-deep h3 + .home-deep-experience__title {
	margin-top: 1.1rem;
}

.home-deep-experience__title a {
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.home-deep-morelink {
	margin: 0.35rem 0 0.85rem;
	font-size: 0.96rem;
	font-weight: 600;
}

.home-deep-seo .prose--home-deep .home-deep-checklist {
	margin: 0.15rem 0 1rem;
	padding-left: 1.35rem;
	line-height: 1.6;
	color: var(--brown-mid, #4a3728);
}

.home-deep-seo .prose--home-deep .home-deep-checklist li {
	margin: 0.2rem 0;
}

.home-deep-seo .prose--home-deep p {
	margin: 0 0 1rem;
	line-height: 1.7;
}

.home-deep-seo-faq__intro {
	margin: 0 0 1.25rem;
	color: var(--muted, #5c4a3d);
}

a.home-deep-link {
	font-weight: 600;
	color: var(--forest-dark);
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

a.home-deep-link:hover,
a.home-deep-link:focus-visible {
	color: var(--forest-mid);
}

.home-deep-cta-strip {
	margin: clamp(1.75rem, 4vw, 2.75rem) 0;
	padding: 0;
	background: var(--white);
	border: 1px solid rgba(61, 41, 20, 0.12);
	border-radius: var(--radius);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.85) inset,
		0 14px 42px rgba(42, 33, 24, 0.09);
	border-left: 4px solid var(--forest-dark);
	overflow: hidden;
}

.home-deep-cta-strip__inner {
	display: flex;
	flex-direction: column;
	gap: 1.15rem;
	align-items: stretch;
	padding: clamp(1.35rem, 3.5vw, 1.95rem) clamp(1.2rem, 3vw, 2rem);
}

.home-deep-cta-strip__text {
	margin: 0;
	font-size: clamp(1rem, 2.3vw, 1.08rem);
	line-height: 1.55;
	color: var(--brown-dark);
	text-align: center;
	font-weight: 500;
	max-width: 38rem;
	margin-left: auto;
	margin-right: auto;
}

.home-deep-cta-strip__buttons {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem 0.75rem;
	width: 100%;
	max-width: 26rem;
	margin-left: auto;
	margin-right: auto;
	align-items: stretch;
}

.home-deep-cta-strip__buttons .btn {
	min-height: 3rem;
	min-width: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.home-deep-cta-strip__browse {
	grid-column: 1 / -1;
	width: 100%;
	background: rgba(245, 240, 232, 0.65);
	border-color: rgba(61, 41, 20, 0.18) !important;
	font-weight: 600;
}

.home-deep-cta-strip__browse:hover {
	background: rgba(42, 72, 56, 0.08);
	border-color: rgba(42, 72, 56, 0.35) !important;
	color: var(--forest-dark) !important;
}

.home-deep-cta-strip__buttons--no-wa {
	grid-template-columns: 1fr;
	max-width: 22rem;
}

.home-deep-cta-strip__buttons--no-wa .home-deep-cta-strip__browse {
	grid-column: 1;
}

@media (min-width: 720px) {
	.home-deep-cta-strip__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: clamp(1.25rem, 3vw, 2.25rem);
		text-align: left;
	}

	.home-deep-cta-strip__text {
		text-align: left;
		margin-left: 0;
		margin-right: 0;
		flex: 1 1 0;
		min-width: min(100%, 20rem);
		max-width: 32rem;
	}

	.home-deep-cta-strip__buttons {
		flex: 0 0 auto;
		margin-left: 0;
		margin-right: 0;
		width: min(100%, 19.5rem);
		max-width: 19.5rem;
	}
}

/* Homepage deep section: layout + visual boxes */
.home-deep-wrap {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.home-deep-wrap > .prose.prose--home-deep {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.home-deep-wrap > .prose.prose--home-deep + .prose.prose--home-deep {
	margin-top: clamp(0.5rem, 2vw, 1rem);
}

.home-deep-highlights {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(0.75rem, 2vw, 1.25rem);
	margin: clamp(1.25rem, 3vw, 2rem) 0 clamp(1.5rem, 4vw, 2.5rem);
}

@media (max-width: 720px) {
	.home-deep-highlights {
		grid-template-columns: 1fr;
	}
}

.home-deep-highlight {
	background: var(--white, #fff);
	border-radius: var(--radius);
	padding: 0;
	border: 1px solid rgba(61, 41, 20, 0.1);
	box-shadow: 0 6px 24px rgba(42, 33, 24, 0.06);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.home-deep-highlight__media-hit {
	display: block;
	text-decoration: none;
	color: inherit;
	line-height: 0;
	flex-shrink: 0;
}

.home-deep-highlight__frame {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	background: linear-gradient(145deg, var(--forest-mid), var(--brown-dark));
	overflow: hidden;
}

.home-deep-highlight__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.35s ease;
}

.home-deep-highlight__media-hit:hover .home-deep-highlight__img {
	transform: scale(1.04);
}

.home-deep-highlight__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 7.5rem;
	background: linear-gradient(
		160deg,
		rgba(27, 67, 50, 0.95) 0%,
		rgba(36, 44, 32, 0.88) 45%,
		rgba(61, 41, 20, 0.92) 100%
	);
}

.home-deep-highlight__inner {
	padding: 1rem 1.15rem 1.15rem;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

.home-deep-highlight__eyebrow {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(0.9rem, 1.5vw, 0.98rem);
	color: var(--forest-dark);
	margin-bottom: 0.45rem;
}

.home-deep-highlight__text {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--brown-dark);
}

@media (prefers-reduced-motion: reduce) {
	.home-deep-highlight__img {
		transition: none;
	}

	.home-deep-highlight__media-hit:hover .home-deep-highlight__img {
		transform: none;
	}
}

.home-deep-band {
	margin: clamp(1.25rem, 4vw, 2.75rem) 0;
	padding: clamp(1.25rem, 3vw, 2rem);
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(61, 41, 20, 0.08);
	border-radius: var(--radius);
}

.home-deep-band__title {
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 2.5vw, 1.5rem);
	margin: 0 0 0.5rem;
	color: var(--brown-dark);
	text-align: center;
}

.home-deep-band__intro {
	margin: 0 auto 0.7rem;
	max-width: min(52rem, 100%);
	text-align: center;
	color: var(--muted);
	font-size: 0.98rem;
	line-height: 1.55;
}

.home-deep-band__intro:last-of-type {
	margin-bottom: 1.25rem;
}

.home-deep-travel-style {
	margin-block: clamp(1.5rem, 4vw, 2.75rem);
	margin-inline: auto;
	max-width: 40rem;
}

.home-deep-split__actions {
	margin: 0.5rem 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.home-deep-seo-faq {
	background: var(--white);
	border-top: 1px solid rgba(61, 41, 20, 0.08);
	border-bottom: 1px solid rgba(61, 41, 20, 0.06);
	box-shadow: 0 -8px 32px rgba(42, 33, 24, 0.04);
}

/* Homepage FAQ band uses global .faq-list card styles below */

/* Homepage: latest blog strip (replaces former testimonials block) */
.home-latest-blog {
	background: var(--white);
	border-top: 1px solid rgba(61, 41, 20, 0.08);
	border-bottom: 1px solid rgba(61, 41, 20, 0.06);
}

.home-latest-blog .blog-grid-outer {
	padding-top: 0;
	padding-bottom: 0;
}

.home-latest-blog__intro {
	text-align: center;
	margin: 0 auto 1.75rem;
	max-width: 38rem;
	color: var(--muted);
	line-height: 1.55;
	font-size: 1rem;
}

.home-latest-blog__empty {
	text-align: center;
	color: var(--muted);
	margin: 0;
	max-width: 28rem;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.55;
}

.home-latest-blog .section__cta.home-latest-blog__footer-cta {
	margin-top: 2rem;
	margin-bottom: 0;
}

/* Homepage: finale strips (conversion, trust, guides, bottom CTA) */
.home-finale__inner {
	max-width: 44rem;
	margin-left: auto;
	margin-right: auto;
}

.home-finale.home-finale--inspire > .wrap.home-finale__inner {
	width: 80%;
	box-sizing: border-box;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.home-finale.home-finale--inspire .home-finale__prose {
	max-width: none;
}

.home-finale.home-finale--trust > .wrap.home-finale__inner {
	width: 80%;
	box-sizing: border-box;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.home-finale.home-finale--trust .home-finale__prose {
	max-width: none;
}

.home-finale.home-finale--plan > .wrap.home-finale__inner {
	width: 80%;
	box-sizing: border-box;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.home-finale.home-finale--plan .home-finale__prose {
	max-width: none;
}

.home-finale-plan__prose {
	display: flow-root;
}

.home-finale-plan__figure {
	float: right;
	clear: right;
	width: clamp(281px, 57.6vw, 540px);
	margin: 0.2rem 0 0.85rem clamp(1rem, 3vw, 1.35rem);
	border-radius: calc(var(--radius, 12px) - 2px);
	overflow: hidden;
	box-shadow: 0 8px 26px rgba(26, 15, 8, 0.11);
	line-height: 0;
}

.home-finale-plan__media-hit {
	display: block;
	text-decoration: none;
	color: inherit;
}

.home-finale-plan__img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center;
	transition: transform 0.35s ease;
}

.home-finale-plan__media-hit:hover .home-finale-plan__img,
.home-finale-plan__media-hit:focus-visible .home-finale-plan__img {
	transform: scale(1.03);
}

.home-finale-plan__placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	min-height: 14.4rem;
	background: linear-gradient(
		155deg,
		rgba(27, 67, 50, 0.92) 0%,
		rgba(36, 44, 32, 0.88) 48%,
		rgba(61, 41, 20, 0.9) 100%
	);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

@media (max-width: 560px) {
	.home-finale-plan__figure {
		float: none;
		width: min(100%, 39.6rem);
		margin: 0 auto 1rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-finale-plan__img {
		transition: none;
		transform: none;
	}

	.home-finale-plan__media-hit:hover .home-finale-plan__img,
	.home-finale-plan__media-hit:focus-visible .home-finale-plan__img {
		transform: none;
	}
}

.home-finale.home-finale--plan .section__title strong {
	font-weight: 700;
	color: var(--forest-dark);
	text-decoration: none;
}

.home-finale-plan__prose strong {
	font-weight: 700;
	color: var(--forest-dark);
	text-decoration: none;
}

.home-finale-trust__tiles {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: clamp(0.65rem, 2vw, 1.05rem);
	margin: 0 0 clamp(1.35rem, 3.2vw, 2rem);
}

@media (max-width: 640px) {
	.home-finale-trust__tiles {
		grid-template-columns: 1fr;
		max-width: 22rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.home-finale-trust__tile-hit {
	display: block;
	line-height: 0;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.home-finale-trust__tile-frame {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 7.75rem;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: calc(var(--radius, 12px) - 1px);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.28),
		0 12px 32px rgba(26, 15, 8, 0.1);
	background: linear-gradient(145deg, var(--forest-mid), var(--brown-dark));
}

.home-finale-trust__tile-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.38s ease;
}

.home-finale-trust__tile-hit:hover .home-finale-trust__tile-img,
.home-finale-trust__tile-hit:focus-visible .home-finale-trust__tile-img {
	transform: scale(1.035);
}

.home-finale-trust__tile-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: linear-gradient(
		160deg,
		rgba(27, 67, 50, 0.9) 0%,
		rgba(36, 44, 32, 0.86) 48%,
		rgba(61, 41, 20, 0.92) 100%
	);
}

@media (prefers-reduced-motion: reduce) {
	.home-finale-trust__tile-img {
		transition: none;
		transform: none;
	}

	.home-finale-trust__tile-hit:hover .home-finale-trust__tile-img,
	.home-finale-trust__tile-hit:focus-visible .home-finale-trust__tile-img {
		transform: none;
	}
}

.home-finale__prose {
	margin: 0 auto;
	max-width: 40rem;
}

.home-finale__prose p {
	margin: 0 0 0.85rem;
	line-height: 1.65;
	color: var(--brown-mid, #4a3728);
}

.home-finale__prose p:last-child {
	margin-bottom: 0;
}

.home-finale-trust__h {
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	margin: 1.35rem 0 0.5rem;
	color: var(--forest-dark);
}

.home-finale-trust__h:first-of-type {
	margin-top: 1.5rem;
}

.home-finale-guides-topic__title {
	font-size: clamp(1.05rem, 2vw, 1.18rem);
	margin: 1.25rem 0 0.35rem;
	line-height: 1.35;
	color: var(--brown-dark);
}

.home-finale-guides-topic__link {
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	color: var(--forest-dark);
	font-weight: 700;
}

.home-finale-guides-topic__link:hover,
.home-finale-guides-topic__link:focus-visible {
	color: var(--forest-mid);
}

.home-finale-guides-topic__inline {
	font-weight: 600;
	color: var(--forest-dark);
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.home-finale__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	justify-content: center;
	margin-top: 1.75rem;
	margin-bottom: 0;
}

.home-finale__actions.section__cta {
	margin-top: 2rem;
}

.section--forest .home-finale__prose--on-dark p {
	color: rgba(245, 240, 232, 0.92);
}

.home-finale__actions--bottom {
	margin-top: 2rem;
}

@media (max-width: 900px) and (min-width: 641px) {
	.home-latest-blog .card-grid--blog {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.prose h2,
.prose h3 {
	font-family: var(--font-display);
	color: var(--brown-dark);
}

/* Sitewide h3 (~UA 1.17em relative to parent) + 2px for day titles & rich text */
h3 {
	font-size: calc(1.17em + 2px);
}

.content-singular {
	padding: clamp(2rem, 4vw, 3.5rem) 0 4rem;
}

.page-front-intro.content-singular {
	padding: clamp(1rem, 3vw, 2rem) 0 1.5rem;
}

.entry-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 2.75rem);
	margin: 0 0 0.5rem;
	color: var(--brown-dark);
}

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

.entry-meta {
	color: var(--muted);
	font-size: 0.9rem;
	margin: 0 0 1.5rem;
}

.entry-thumb {
	margin: 0 0 1.5rem;
	border-radius: var(--radius);
	overflow: hidden;
}

/* SEO phrase emphasis: bold only (see ust_lr_post_keyword_phrase_list). */
.entry-content strong.entry-keyword {
	font-weight: 700;
	background: none;
	color: inherit;
	padding: 0;
	border-radius: 0;
	box-decoration-break: unset;
	-webkit-box-decoration-break: unset;
}

.entry-content a.ust-lr-interlink {
	font-weight: 700;
	color: var(--forest-dark);
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.entry-content a.ust-lr-interlink:hover,
.entry-content a.ust-lr-interlink:focus-visible {
	color: var(--forest-mid);
}

.entry-content a.ust-lr-interlink strong.entry-keyword {
	font-weight: 700;
	color: inherit;
}

.prose--dest-hub .dest-hub__body.entry-content strong.entry-keyword,
.prose--dest-hub .dest-hub__article.entry-content strong.entry-keyword {
	font-weight: 700;
}

/* Destination / hotel editorial copy — bold links and keywords in body prose */
.prose--dest-hub .dest-hub__body.entry-content a:not(.btn):not(.card__link):not([class*="card-sb"]),
.prose--dest-hub .dest-hub__article.entry-content a:not(.btn):not(.card__link):not([class*="card-sb"]),
.prose--dest-hub .dest-hub__main-copy.entry-content a:not(.btn):not(.card__link):not([class*="card-sb"]),
.prose--dest-hub.entry-content a:not(.btn):not(.card__link):not([class*="card-sb"]),
.hotel-hub__body.entry-content a:not(.btn):not(.card__link),
.hotel-hub__article.entry-content a:not(.btn):not(.card__link) {
	font-weight: 700;
}

.prose--dest-hub .dest-hub__body.entry-content a strong,
.prose--dest-hub .dest-hub__article.entry-content a strong,
.prose--dest-hub .dest-hub__main-copy.entry-content a strong,
.prose--dest-hub.entry-content a strong,
.hotel-hub__body.entry-content a strong,
.hotel-hub__article.entry-content a strong,
.prose--dest-hub .dest-hub__body.entry-content strong,
.prose--dest-hub .dest-hub__article.entry-content strong,
.prose--dest-hub .dest-hub__main-copy.entry-content strong,
.prose--dest-hub.entry-content strong,
.hotel-hub__body.entry-content strong,
.hotel-hub__article.entry-content strong {
	font-weight: 700;
}

/* —— FAQ (sitewide standard card layout) —— */
.faq-list,
.ust-faq-list {
	margin: 1.5rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.faq-item {
	margin: 0;
	padding: 1.15rem 1.35rem;
	background: #fdfaf5;
	border: 1px solid rgba(61, 41, 20, 0.08);
	border-radius: 9px;
	box-shadow: 0 2px 12px rgba(42, 33, 24, 0.04);
}

.faq-item dt,
.faq-item .faq-item__q {
	margin: 0 0 0.5rem;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.45;
	color: #1a3c34;
}

.faq-item dd,
.faq-item .faq-item__a {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #555555;
}

.faq-item dd p,
.faq-item .faq-item__a p {
	margin: 0 0 0.65rem;
}

.faq-item dd p:last-child,
.faq-item .faq-item__a p:last-child {
	margin-bottom: 0;
}

.faq-item dd a,
.faq-item .faq-item__a a {
	color: var(--forest-dark);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.prose .faq-list {
	max-width: none;
}

/* —— Detailed tour template (sidebar, sections, ads-ready) —— */
.tour-shell {
	max-width: 1200px;
}

/* Tight gutter under hero → main column (explicit 25px) */
.tour-page .tour-shell.content-singular {
	padding-top: 25px;
}

/* Shared horizontal rail: hero + main column use the same max-width, padding, and 2-col grid */
.tour-page {
	--tour-rail-max: 1200px;
	--tour-rail-pad: 1rem;
	--tour-sidebar-col: minmax(240px, 300px);
	--tour-layout-gap: clamp(1.5rem, 3vw, 2.75rem);
}

.tour-page .tour-page__rail.wrap {
	box-sizing: border-box;
	width: min(100%, var(--tour-rail-max));
	max-width: var(--tour-rail-max);
	margin-inline: auto;
	padding-inline: var(--tour-rail-pad);
}

.tour-page .tour-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) var(--tour-sidebar-col);
	gap: var(--tour-layout-gap);
	align-items: start;
	padding-top: 0;
}

/* Hero: same main + sidebar tracks as the shell below (title aligns with Tour overview). */
.tour-page .tour-hero .tour-layout.tour-hero__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) var(--tour-sidebar-col);
	gap: var(--tour-layout-gap);
	width: 100%;
	align-items: end;
	padding-top: 0;
}

.tour-page .tour-hero .tour-hero__rail-spacer {
	visibility: hidden;
	pointer-events: none;
	min-height: 1px;
}

.tour-hero {
	position: relative;
	isolation: isolate;
	min-height: clamp(340px, 52vw, 540px);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: stretch;
	width: 100%;
	color: var(--cream);
	margin-bottom: 0;
}

.tour-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(135deg, var(--forest-darkest) 0%, #1b2f24 65%, var(--brown-dark) 105%);
	overflow: hidden;
}

.tour-hero__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.03);
	opacity: 0.94;
	filter: saturate(1.06);
}

.tour-hero__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(26, 20, 16, 0.12) 0%,
		rgba(19, 32, 25, 0.3) 68%,
		rgba(19, 32, 25, 0.48) 100%
	);
}

/* Same horizontal rail as .tour-shell (override generic .wrap width so hero lines up with Tour overview). */
.tour-page .tour-hero__inner.tour-page__rail.wrap {
	position: relative;
	z-index: 2;
	box-sizing: border-box;
	width: min(100%, var(--tour-rail-max));
	max-width: var(--tour-rail-max);
	margin-inline: auto;
	padding-inline: var(--tour-rail-pad);
	padding-block: 1rem clamp(2.25rem, 5vw, 3.75rem);
}

/* SafariBookings-style itinerary breadcrumb rail (under site header) */
.breadcrumbs-itinerary-sb {
	width: 100%;
	background: #f2f2f3;
	border-bottom: 1px solid #e2e2e4;
	color: var(--muted);
	font-family: var(--font-body, "Noto Sans", system-ui, sans-serif);
	font-size: 0.875rem;
	line-height: 1.45;
	padding: 0.55rem 0;
}

.breadcrumbs-itinerary-sb__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	column-gap: 0.4rem;
	row-gap: 0.2rem;
}

.breadcrumbs-itinerary-sb__prefix {
	color: var(--muted);
	font-weight: 400;
	white-space: nowrap;
}

.breadcrumbs-itinerary-sb__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	column-gap: 0;
	row-gap: 0.15rem;
}

.breadcrumbs-itinerary-sb__item {
	display: inline-flex;
	align-items: baseline;
	margin: 0;
	padding: 0;
}

.breadcrumbs-itinerary-sb__item + .breadcrumbs-itinerary-sb__item::before {
	content: "\203A";
	display: inline-block;
	margin: 0 0.42em;
	color: var(--muted);
	opacity: 0.75;
	font-weight: 400;
}

.breadcrumbs-itinerary-sb__link {
	color: var(--forest-dark);
	text-decoration: none;
	text-underline-offset: 2px;
	font-weight: 500;
}

.breadcrumbs-itinerary-sb__link:hover,
.breadcrumbs-itinerary-sb__link:focus {
	text-decoration: underline;
	text-decoration-color: rgba(27, 67, 50, 0.45);
	color: var(--forest-mid);
}

.breadcrumbs-itinerary-sb__link:focus-visible {
	outline: 2px solid rgba(27, 67, 50, 0.4);
	outline-offset: 2px;
	color: var(--forest-mid);
}

.breadcrumbs-itinerary-sb__item--current {
	color: var(--brown-dark);
	font-weight: 600;
	max-width: 100%;
}

.tour-hero__content {
	min-width: 0;
}

/* Reserve sidebar column width so hero title lines up with .tour-layout__main */
.tour-page .tour-hero .tour-hero__rail-spacer {
	visibility: hidden;
	pointer-events: none;
}

.tour-hero__ribbon {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 0.65rem;
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	background: rgba(212, 175, 55, 0.2);
	border: 1px solid rgba(212, 175, 55, 0.55);
	color: #fde9b8;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.tour-hero__badge-pill {
	display: inline-block;
	margin-bottom: 0.65rem;
	padding: 0.3rem 0.85rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	font-size: 0.82rem;
	font-weight: 700;
	background: rgba(0, 0, 0, 0.2);
	color: rgba(255, 247, 233, 0.95);
}

.tour-hero__title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4.5vw, 3rem);
	margin: 0 0 0.6rem;
	line-height: 1.13;
	text-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
	color: var(--white);
}

.tour-hero__type {
	font-size: 1rem;
	opacity: 0.92;
	line-height: 1.45;
	max-width: 44rem;
	margin: 0 0 1.1rem;
}

.tour-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
	align-items: stretch;
	list-style: none;
	padding: 0;
	margin-left: 0;
}

.tour-hero__meta-item {
	display: inline-flex;
	flex-direction: column;
	gap: 0.08rem;
	padding: 0.45rem 0.72rem;
	background: rgba(0, 0, 0, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.17);
	border-radius: 11px;
	font-size: 0.78rem;
}

.tour-hero__meta-item--pill {
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	flex-direction: row;
	align-items: center;
	padding: 0.45rem 0.85rem;
	font-weight: 600;
	font-size: 0.84rem;
}

.tour-hero__meta-item--price {
	min-width: 9rem;
}

.tour-hero__meta-k {
	opacity: 0.78;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.62rem;
	letter-spacing: 0.05em;
}

.tour-hero__meta-v {
	font-weight: 700;
	font-size: 0.93rem;
}

.tour-hero__price-tag {
	font-size: 1.05rem !important;
	color: #fde9b8;
}

.tour-hero__actions {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0.65rem;
	align-items: center;
}

@media (min-width: 480px) {
	.tour-hero__actions {
		flex-wrap: nowrap;
	}
}

.tour-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
	gap: clamp(1.5rem, 3vw, 2.75rem);
	padding-top: clamp(2rem, 4vw, 3rem);
	align-items: start;
}

.single-ust_safari .tour-layout {
	padding-top: 0;
}

.tour-layout__main {
	min-width: 0;
}

.tour-sidebar__sticky {
	position: sticky;
	top: calc(var(--sticky-top, 0px) + 1rem);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-bottom: 2rem;
}

.tour-layout__sidebar {
	min-width: 0;
	padding-top: 0.35rem;
}

/* Below the main + sidebar grid: full shell width — sidebar column does not extend here */
.single-ust_safari .tour-shell > .tour-related {
	width: 100%;
	margin-top: clamp(1.5rem, 3vw, 2.75rem);
	padding-top: clamp(1rem, 2vw, 1.75rem);
	box-sizing: border-box;
}

.tour-section {
	scroll-margin-top: 6.5rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tour-section__h {
	font-family: var(--font-display);
	font-size: clamp(1.55rem, 3vw, 1.95rem);
	color: var(--brown-dark);
	margin: 0 0 0.75rem;
	line-height: 1.22;
	border-bottom: 2px solid rgba(212, 175, 55, 0.45);
	padding-bottom: 0.55rem;
}

.tour-section__sub {
	font-size: 0.96rem;
	color: rgba(61, 41, 20, 0.78);
	line-height: 1.48;
	max-width: 44rem;
	margin: -0.25rem 0 1rem;
}

.tour-prose.prose {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.tour-lead {
	font-size: clamp(1.08rem, 2vw, 1.22rem);
	line-height: 1.55;
	color: rgba(61, 41, 20, 0.92);
}

/* Opening paragraph of rich-text tour overview keeps “lead” scale */
.tour-overview-copy > p:first-child {
	font-size: clamp(1.08rem, 2vw, 1.22rem);
	line-height: 1.55;
	color: rgba(61, 41, 20, 0.92);
}

.tour-route-list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: stop;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 0.85rem;
}

.tour-route-list__item {
	position: relative;
	margin: 0;
	padding: 1rem 1rem 1rem 2.6rem;
	background: linear-gradient(180deg, rgba(249, 245, 236, 0.85), rgba(255, 255, 255, 0.65));
	border: 1px solid rgba(27, 67, 50, 0.12);
	border-radius: var(--radius);
	counter-increment: stop;
	box-shadow: 0 14px 32px rgba(42, 33, 24, 0.06);
	min-height: 4.75rem;
	font-weight: 600;
	line-height: 1.42;
	font-size: 0.94rem;
}

.tour-route-list__item::before {
	content: counter(stop);
	position: absolute;
	left: 0.85rem;
	top: 0.85rem;
	width: 1.45rem;
	height: 1.45rem;
	border-radius: 8px;
	background: var(--forest-dark);
	color: var(--cream);
	font-size: 0.74rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
}

#tour-route-map {
	scroll-margin-top: clamp(4.5rem, 10vw, 6.75rem);
}

.tour-route-map .tour-route-map__note {
	margin-top: -0.35rem;
	max-width: 48rem;
}

.tour-route-map__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1rem, 2.5vw, 1.35rem);
	align-items: start;
}

@media (min-width: 768px) {
	.tour-route-map__layout {
		grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
	}
}

.tour-route-map__canvas {
	min-height: clamp(260px, 42vw, 420px);
	width: 100%;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid rgba(27, 67, 50, 0.18);
	box-shadow: 0 14px 36px rgba(42, 33, 24, 0.08);
	background: rgba(240, 244, 240, 0.45);
	z-index: 1;
	outline-offset: 2px;
}

.tour-route-map__canvas:focus-visible {
	outline: 3px solid rgba(212, 175, 55, 0.55);
}

.tour-route-map .leaflet-control-attribution {
	font-size: 0.66rem;
	max-width: 100%;
	white-space: normal;
	line-height: 1.25;
}

.tour-route-map__canvas--loading {
	opacity: 0.72;
	filter: saturate(0.94);
	transition: opacity 0.35s ease, filter 0.35s ease;
}

.tour-route-map__canvas:not(.tour-route-map__canvas--loading) {
	opacity: 1;
	filter: none;
}

/* Numbered itinerary markers (map) + legend list (sidebar) */
.tour-route-map .ust-route-num-pin-wrap {
	background: none !important;
	border: none !important;
	box-shadow: none !important;
}

.tour-route-map .ust-route-num-pin {
	display: block;
	line-height: 1;
}

.tour-route-map .ust-route-hub-pin-wrap {
	background: none !important;
	border: none !important;
	box-shadow: none !important;
}

.tour-route-map .ust-route-hub-pin--departure {
	display: block;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #1b4332;
	border: 2px solid #fff;
	box-shadow:
		0 0 0 1px #1a1a1a,
		0 2px 6px rgba(0, 0, 0, 0.28);
}

.tour-route-map .ust-route-num-pin__square {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.85rem;
	height: 1.85rem;
	padding: 0 0.35rem;
	border-radius: 3px;
	background: #ffd400;
	border: 2px solid #1a1a1a;
	box-shadow:
		0 1px 0 rgba(0, 0, 0, 0.35),
		0 3px 8px rgba(0, 0, 0, 0.22);
	color: #111;
	font-family: var(--font-body, ui-sans-serif, system-ui, sans-serif);
	font-size: clamp(0.72rem, 2.2vw, 0.88rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
	white-space: nowrap;
}

.tour-route-map .leaflet-popup-content .ust-route-num-popup {
	margin: 0.15rem 0;
	font-size: 0.88rem;
	line-height: 1.35;
	color: #2a2118;
}

.tour-route-map__legend {
	padding: 0.85rem 1rem;
	border-radius: var(--radius);
	border: 1px solid rgba(27, 67, 50, 0.14);
	background: rgba(252, 250, 244, 0.92);
	box-shadow: 0 8px 22px rgba(42, 33, 24, 0.06);
}

.tour-route-map__legend-title {
	margin: 0 0 0.65rem;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(27, 67, 50, 0.88);
}

.tour-route-map__legend-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.tour-route-map__legend-item {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	font-size: 0.88rem;
	line-height: 1.35;
	color: #2a2118;
}

.tour-route-map__legend-marker {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.65rem;
	height: 1.65rem;
	border-radius: 50%;
	background: #ffd400;
	border: 2px solid #1a1a1a;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
	color: #111;
}

.tour-route-map__legend-marker--square {
	border-radius: 3px;
	min-width: 1.65rem;
	width: auto;
	padding: 0 0.28rem;
}

.tour-route-map__legend-label {
	flex: 1 1 auto;
	min-width: 0;
	font-weight: 600;
}

.tour-route-map__legend-item {
	align-items: baseline;
}

.tour-twocol {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: clamp(1rem, 3vw, 1.65rem);
}

/* Breathing room between includes/excludes row and accommodation card */
.single-ust_safari .tour-twocol:has(.tour-section) + #tour-accommodation {
	margin-top: 5px;
}

.tour-section--panel {
	padding: clamp(1.15rem, 2.5vw, 1.5rem);
	border-radius: var(--radius);
	background: var(--white);
	border: 1px solid rgba(61, 41, 20, 0.1);
	box-shadow: 0 22px 50px rgba(42, 33, 24, 0.07);
	margin-bottom: 0;
	height: fit-content;
}

.tour-section--muted {
	background: linear-gradient(180deg, #f7f7f8, rgba(246, 244, 240, 0.75));
	border-style: dashed;
}

.tour-wysiwyg ul,
.tour-wysiwyg ol {
	padding-left: 1.35rem;
}

.tour-wysiwyg li + li {
	margin-top: 0.35rem;
}

/* Day-by-day itinerary: same size as sitewide body (--ust-lr-reading-size); justified */
#tour-itinerary .tour-wysiwyg p,
#tour-itinerary .tour-wysiwyg li {
	font-size: 1em;
	text-align: justify;
	text-justify: inter-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

#tour-itinerary .tour-wysiwyg h3,
#tour-itinerary .tour-wysiwyg h4 {
	text-align: start;
	hyphens: none;
}

.tour-cta-band {
	margin-top: clamp(2rem, 4vw, 2.75rem);
	margin-bottom: clamp(2rem, 5vw, 3rem);
}

#tour-booking {
	scroll-margin-top: clamp(4.5rem, 10vw, 6.75rem);
}

.tour-cta-band__inner {
	border-radius: var(--radius);
	padding: clamp(1.65rem, 4vw, 2.35rem);
	background: linear-gradient(125deg, var(--forest-dark) 0%, #142e22 72%, rgba(212, 175, 55, 0.25) 150%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 34px 64px rgba(19, 32, 25, 0.25);
	color: rgba(255, 247, 233, 0.97);
	position: relative;
	overflow: hidden;
}

.tour-cta-band__inner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(900px 220px at 80% -10%, rgba(212, 175, 55, 0.22), transparent 55%);
	pointer-events: none;
	opacity: 0.9;
}

.tour-cta-band .tour-section__h {
	position: relative;
	border-bottom-color: rgba(255, 255, 255, 0.22);
	margin-bottom: 0.95rem;
	color: var(--white);
	z-index: 1;
}

.tour-cta-band__title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.6rem;
}

.tour-cta-band__title-text {
	min-width: 0;
}

.tour-cta-band__title-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	color: rgba(253, 233, 180, 0.95);
	flex-shrink: 0;
}

.tour-cta-band__title-icon svg {
	display: block;
	width: 1.12em;
	height: 1.12em;
}

.tour-cta-band .tour-cta-band__sub {
	position: relative;
	z-index: 1;
	font-size: clamp(0.92rem, 2.1vw, 1rem);
	line-height: 1.5;
	max-width: 48rem;
	margin: -0.45rem 0 0.95rem;
	color: rgba(255, 252, 248, 0.97);
}

.tour-cta-band .tour-cta-band__sub strong {
	font-weight: 800;
	color: rgba(253, 233, 184, 0.98);
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.tour-cta-band__note,
.tour-cta-band__price {
	position: relative;
	z-index: 1;
}

.tour-cta-band__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(1.1rem, 2.75vw, 1.65rem);
	position: relative;
	z-index: 1;
	align-items: start;
}

.tour-cta-band__lead {
	min-width: 0;
	position: relative;
	z-index: 1;
	max-width: 48rem;
}

.tour-cta-band__cf7 .wpcf7 form {
	max-width: 100%;
}

.tour-cta-band__note {
	margin: 0 0 0.85rem;
	font-size: 0.96rem;
	line-height: 1.52;
	opacity: 0.95;
}

.tour-cta-band__price {
	margin: 0 0 0.35rem;
	font-size: 0.93rem;
	line-height: 1.45;
	opacity: 0.9;
	max-width: 48rem;
}

.tour-cta-band__price strong {
	color: #fde9b8;
	font-weight: 800;
}

/* Contact Form 7 — safari “Request Pricing & booking information” band (flush with parent panel, no inner card) */
.tour-cta-band__cf7 {
	min-width: 0;
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.tour-cta-band__cf7 .wpcf7 form {
	position: relative;
	display: grid;
	gap: 0.5rem;
}

.tour-cta-band__cf7 .wpcf7-list-item-label,
.tour-cta-band__cf7 .wpcf7-checkbox .wpcf7-list-item-label,
.tour-cta-band__cf7 label {
	display: inline-block;
	color: rgba(255, 250, 240, 0.92);
	font-size: 0.84rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.tour-cta-band__cf7 .wpcf7-form-control-wrap {
	display: block;
	margin-top: 0.2rem;
}

.tour-cta-band__cf7 input[type="email"],
.tour-cta-band__cf7 input[type="tel"],
.tour-cta-band__cf7 input[type="text"],
.tour-cta-band__cf7 input[type="url"],
.tour-cta-band__cf7 select,
.tour-cta-band__cf7 textarea {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 0.46rem 0.65rem;
	font-size: 0.9125rem;
	font-family: inherit;
	line-height: 1.42;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	background: rgba(10, 28, 20, 0.55);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
	color: rgba(255, 252, 244, 0.98);
	transition:
		border-color 0.16s ease,
		box-shadow 0.16s ease,
		background 0.16s ease;
}

.tour-cta-band__cf7 textarea {
	min-height: 4.75rem;
	resize: vertical;
}

.tour-cta-band__cf7 ::placeholder {
	color: rgba(255, 250, 240, 0.45);
}

.tour-cta-band__cf7 input:focus-visible,
.tour-cta-band__cf7 select:focus-visible,
.tour-cta-band__cf7 textarea:focus-visible {
	outline: 3px solid rgba(240, 220, 150, 0.55);
	outline-offset: 1px;
	border-color: rgba(212, 175, 55, 0.55);
	background: rgba(12, 32, 24, 0.65);
}

.tour-cta-band__cf7 .wpcf7-not-valid-tip {
	color: #ffb4a8;
	font-size: 0.78rem;
	margin-top: 0.2rem;
	line-height: 1.3;
}

.tour-cta-band__cf7 .wpcf7-response-output {
	margin: 0.25rem 0 0 !important;
	padding: 0.45rem 0.55rem;
	border-radius: 8px;
	font-size: 0.82rem !important;
	border-width: 1px !important;
}

.tour-cta-band__cf7 input.wpcf7-submit,
.tour-cta-band__cf7 button[type="submit"] {
	align-self: start;
	justify-content: center;
	margin-top: 0.25rem;
	padding: 0.68rem 1.35rem !important;
	font-size: 0.96rem !important;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	border-radius: var(--radius-btn);
	border: 2px solid transparent;
	background: linear-gradient(160deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
	color: var(--brown-darkest) !important;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
	transition:
		transform 0.14s ease,
		box-shadow 0.14s ease;
}

.tour-cta-band__cf7 input.wpcf7-submit:hover,
.tour-cta-band__cf7 button[type="submit"]:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38);
	color: var(--brown-darkest) !important;
}

.tour-cta-band__cf7 input.wpcf7-submit:focus-visible,
.tour-cta-band__cf7 button[type="submit"]:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.75);
	outline-offset: 2px;
}

.tour-cta-band__cf7 input.wpcf7-submit:disabled,
.tour-cta-band__cf7 button[type="submit"]:disabled {
	opacity: 0.55;
	transform: none;
	cursor: not-allowed;
}

/* CF7 “Contact form 1” safari layout — fieldsets / grids / beige inputs */
.tour-cta-band__cf7 .ust-cf7-req-note {
	margin: 0 0 0.35rem;
	font-size: 0.785rem;
	color: rgba(255, 250, 240, 0.78);
}

.tour-cta-band__cf7 .ust-cf7-intro-text {
	margin: 0 0 0.55rem;
	font-size: 0.865rem;
	line-height: 1.42;
	color: rgba(255, 250, 240, 0.88);
}

.tour-cta-band__cf7 fieldset.ust-cf7-fieldset {
	border: none;
	margin: 0;
	padding: 0;
	min-width: 0;
}

.tour-cta-band__cf7 fieldset.ust-cf7-fieldset::after {
	content: '';
	display: table;
	clear: both;
}

.tour-cta-band__cf7 form fieldset.ust-cf7-fieldset ~ fieldset.ust-cf7-fieldset {
	margin-top: 0.62rem;
	padding-top: 0.58rem;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.tour-cta-band__cf7 fieldset.ust-cf7-fieldset legend {
	float: left;
	width: 100%;
	margin: 0 0 0.28rem;
	padding: 0;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 252, 244, 0.98);
	line-height: 1.35;
}

.tour-cta-band__cf7 .ust-cf7-legend-caps {
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.tour-cta-band__cf7 .ust-cf7-star {
	color: #ff8a7a;
	font-weight: 800;
}

.tour-cta-band__cf7 .ust-cf7-hint {
	margin: 0 0 0.35rem;
	font-size: 0.785rem;
	line-height: 1.4;
	color: rgba(255, 250, 240, 0.72);
	font-weight: 500;
}

.tour-cta-band__cf7 .ust-cf7-hint-muted {
	margin-top: 0.25rem;
	margin-bottom: 0;
}

.tour-cta-band__cf7 .ust-cf7-hint-muted strong {
	color: rgba(240, 220, 150, 0.95);
	font-weight: 700;
}

.tour-cta-band__cf7 .ust-cf7-fieldset .wpcf7-radio .wpcf7-list-items {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.3rem 0.52rem;
	margin: 0.18rem 0 0;
}

.tour-cta-band__cf7 .ust-cf7-fieldset .wpcf7-radio .wpcf7-list-item {
	margin: 0;
	display: flex;
	align-items: flex-start;
	gap: 0.42rem;
}

.tour-cta-band__cf7 .ust-cf7-check-horizontal .wpcf7-checkbox .wpcf7-list-items {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	column-gap: clamp(1.25rem, 4vw, 2.35rem);
	row-gap: 0.55rem;
	margin: 0.18rem 0 0;
}

.tour-cta-band__cf7 .ust-cf7-check-horizontal .wpcf7-checkbox .wpcf7-list-item {
	margin: 0;
	padding: 0.12rem clamp(0.35rem, 1.8vw, 0.85rem) 0.12rem 0;
	display: inline-flex;
	align-items: flex-start;
	gap: 0.55rem;
}

.tour-cta-band__cf7 .ust-cf7-check-horizontal .wpcf7-radio .wpcf7-list-items {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem 0.85rem;
	margin: 0.18rem 0 0;
}

.tour-cta-band__cf7 .ust-cf7-check-horizontal .wpcf7-radio .wpcf7-list-item {
	margin: 0;
	display: inline-flex;
	align-items: flex-start;
	gap: 0.42rem;
}

.tour-cta-band__cf7 input[type="radio"],
.tour-cta-band__cf7 input[type="checkbox"] {
	width: 1.06rem;
	height: 1.06rem;
	margin-top: 0.14rem;
	flex-shrink: 0;
	accent-color: #e8943a;
}

.tour-cta-band__cf7 input[type="date"] {
	min-height: 2.65rem;
}

.tour-cta-band__cf7 input[type="email"],
.tour-cta-band__cf7 input[type="tel"],
.tour-cta-band__cf7 input[type="text"],
.tour-cta-band__cf7 input[type="url"],
.tour-cta-band__cf7 input[type="date"],
.tour-cta-band__cf7 select,
.tour-cta-band__cf7 textarea {
	background: rgba(248, 242, 230, 0.94);
	color: rgba(42, 33, 24, 0.95);
	border-color: rgba(61, 41, 20, 0.22);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.tour-cta-band__cf7 ::placeholder {
	color: rgba(61, 41, 20, 0.46);
}

.tour-cta-band__cf7 input:focus-visible,
.tour-cta-band__cf7 select:focus-visible,
.tour-cta-band__cf7 textarea:focus-visible {
	background: rgba(255, 252, 246, 0.98);
	color: rgba(42, 33, 24, 0.98);
	border-color: rgba(212, 175, 55, 0.65);
}

.tour-cta-band__cf7 .ust-cf7-row-two {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.45rem 0.95rem;
	width: 100%;
	min-width: 0;
	align-items: start;
	margin: 0 0 0.42rem;
}

.tour-cta-band__cf7 .ust-cf7-row-two > .ust-cf7-stack {
	min-width: 0;
	margin-bottom: 0;
}

/* Block stack avoids flex-column splitting label text vs. * into separate rows */
.tour-cta-band__cf7 .ust-cf7-stack {
	display: block;
	width: 100%;
	margin: 0 0 0.42rem;
	color: rgba(255, 250, 240, 0.92);
	font-size: 0.84rem;
	font-weight: 600;
	line-height: 1.35;
}

.tour-cta-band__cf7 .ust-cf7-stack .ust-cf7-label-inline {
	display: inline-block;
	vertical-align: baseline;
	margin-bottom: 0.18rem;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
}

.tour-cta-band__cf7 .ust-cf7-stack > .wpcf7-form-control-wrap {
	display: block;
	margin-top: 0;
}

.tour-cta-band__cf7 .ust-cf7-fieldset-contact .ust-cf7-stack:last-of-type {
	margin-bottom: 0;
}

.tour-cta-band__cf7 .ust-cf7-nationality-other-wrap:not([hidden]) {
	margin: 0.12rem 0 0;
}

.tour-cta-band__cf7 .ust-cf7-nationality-other-wrap .ust-cf7-stack {
	margin-bottom: 0;
}

.tour-cta-band__cf7 .ust-cf7-fieldset-extra textarea {
	min-height: 6rem;
}

.tour-cta-band__cf7 .ust-cf7-accept {
	margin: 0.15rem 0 0.35rem;
	font-size: 0.8rem;
	line-height: 1.45;
	font-weight: 500;
	color: rgba(255, 250, 240, 0.82);
}

.tour-cta-band__cf7 .ust-cf7-accept .wpcf7-list-item {
	margin: 0;
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

@media (max-width: 560px) {
	.tour-cta-band__cf7 .ust-cf7-fieldset .wpcf7-radio .wpcf7-list-items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 360px) {
	.tour-cta-band__cf7 .ust-cf7-row-two {
		grid-template-columns: 1fr;
	}
}

/* Legacy tour-faq markup — mirror standard FAQ cards when old HTML remains in content */
.tour-faq,
.tour-faq-list {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	margin: 1.5rem 0 0;
}

.tour-faq--always-open .tour-faq__item,
.tour-faq__item {
	margin: 0;
	padding: 1.15rem 1.35rem;
	background: #fdfaf5;
	border: 1px solid rgba(61, 41, 20, 0.08) !important;
	border-radius: 9px;
	box-shadow: 0 2px 12px rgba(42, 33, 24, 0.04);
	overflow: visible;
}

.tour-faq--always-open .tour-faq__q,
.tour-faq__q {
	display: block;
	cursor: default;
	pointer-events: none;
	padding: 0;
	margin: 0 0 0.5rem;
	font-weight: 700;
	line-height: 1.45;
	list-style: none;
	font-family: inherit;
	font-size: 1rem;
	color: #1a3c34;
}

.tour-faq__q::-webkit-details-marker {
	display: none;
}

.tour-faq__q::after {
	display: none;
}

.tour-faq--always-open .tour-faq__q::after {
	display: none;
}

.tour-faq__a {
	padding: 0;
	margin: 0;
	color: #555555;
	font-size: 0.9375rem;
	line-height: 1.6;
}

.tour-related {
	padding-bottom: 1rem;
}

.tour-toc {
	background: rgba(255, 255, 255, 0.97);
	border: 1px solid rgba(61, 41, 20, 0.09);
	border-radius: var(--radius);
	padding: 1rem;
	box-shadow: 0 22px 40px rgba(42, 33, 24, 0.07);
	font-size: 0.875rem;
}

.tour-toc__title {
	margin: 0 0 0.55rem;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 0.7rem;
	letter-spacing: 0.065em;
	color: rgba(42, 33, 24, 0.55);
}

.tour-toc__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.18rem;
}

.tour-toc__link {
	display: block;
	padding: 0.35rem 0.42rem;
	margin: 0 -0.3rem;
	border-radius: 6px;
	text-decoration: none;
	color: var(--forest-dark);
	font-weight: 600;
	transition: background 0.14s ease, color 0.14s ease;
}

.tour-toc__link:hover {
	background: rgba(27, 67, 50, 0.08);
	color: var(--forest-darkest);
	text-decoration: none;
}

/* Country package lists — single safari sidebar (replaces “On this page”) */
.tour-sidebar-packages {
	margin-top: clamp(1rem, 3vw, 1.35rem);
	margin-bottom: clamp(0.85rem, 2.2vw, 1.1rem);
	background: linear-gradient(180deg, rgba(250, 248, 243, 0.92) 0%, rgba(255, 255, 255, 0.88) 100%);
	border: 1px solid rgba(61, 41, 20, 0.1);
	border-radius: 0;
	padding: clamp(0.82rem, 2vw, 1.05rem);
	box-shadow: 0 18px 42px rgba(42, 33, 24, 0.08);
	font-size: 0.8625rem;
}

.tour-sidebar-packages__block + .tour-sidebar-packages__block {
	margin-top: 0.85rem;
	padding-top: 0.85rem;
	border-top: 1px dashed rgba(61, 41, 20, 0.12);
}

.tour-sidebar-packages__heading {
	display: block;
	padding: 0.55rem 0.65rem;
	margin: 0 0 0.5rem;
	border-radius: 0;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 800;
	font-size: calc(0.78rem + 1px);
	letter-spacing: 0.05em;
	line-height: 1.3;
	color: var(--cream);
	background: linear-gradient(125deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
	border: 1px solid rgba(26, 15, 8, 0.35);
	box-shadow: 0 10px 24px rgba(26, 15, 8, 0.12);
	transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.tour-sidebar-packages__heading:hover {
	transform: translateY(-1px);
	filter: brightness(1.06);
	box-shadow: 0 14px 32px rgba(26, 15, 8, 0.16);
	color: var(--cream);
	text-decoration: none;
}

.tour-sidebar-packages__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.04rem;
}

.tour-sidebar-packages__link {
	display: flex;
	align-items: flex-start;
	gap: 0.38rem;
	padding: 0.22rem 0.45rem;
	margin: 0 -0.2rem;
	border-radius: 7px;
	text-decoration: none;
	color: var(--brown-mid);
	font-weight: 400;
	line-height: 1.42;
	transition:
		background 0.14s ease,
		color 0.14s ease,
		box-shadow 0.14s ease;
}

.tour-sidebar-packages__link:hover {
	background: rgba(212, 175, 55, 0.12);
	color: var(--forest-dark);
	text-decoration: none;
}

.tour-sidebar-packages__arrow {
	flex-shrink: 0;
	margin-top: 0.06em;
	font-size: 0.72rem;
	line-height: 1.42;
	opacity: 0.5;
	font-weight: 400;
	color: var(--brown-mid);
}

.tour-sidebar-packages__title {
	display: block;
	flex: 1;
	min-width: 0;
	word-break: break-word;
	font-weight: 400;
	color: var(--brown-dark);
}

.tour-sidebar-packages__item--current .tour-sidebar-packages__link,
.tour-sidebar-packages__link--current {
	background: rgba(27, 67, 50, 0.08);
	box-shadow: inset 3px 0 0 0 var(--gold);
	color: var(--forest-darkest);
}

.tour-sidebar-packages__item--current .tour-sidebar-packages__arrow,
.tour-sidebar-packages__link--current .tour-sidebar-packages__arrow {
	opacity: 0.75;
	color: var(--forest-mid);
}

.tour-sidebar-packages__item--current .tour-sidebar-packages__title,
.tour-sidebar-packages__link--current .tour-sidebar-packages__title {
	color: var(--forest-darkest);
}

.tour-sidebar-packages__block-footer {
	margin: 0.45rem 0 0;
	padding-top: 0.5rem;
	border-top: 1px solid rgba(61, 41, 20, 0.1);
	text-align: center;
}

.tour-sidebar-packages__country-all {
	font-weight: 700;
	font-size: 0.84rem;
	color: var(--forest-dark);
	text-decoration: underline;
	text-decoration-color: rgba(212, 175, 55, 0.55);
	text-underline-offset: 3px;
}

.tour-sidebar-packages__country-all:hover {
	color: var(--forest-mid);
	text-decoration-color: var(--gold);
}

.tour-sidebar-packages__footer {
	margin: 0.75rem 0 0;
	padding-top: 0.65rem;
	border-top: 1px solid rgba(61, 41, 20, 0.1);
	text-align: center;
}

.tour-sidebar-packages__all {
	font-weight: 700;
	font-size: 0.84rem;
	color: var(--forest-dark);
	text-decoration: underline;
	text-decoration-color: rgba(212, 175, 55, 0.55);
	text-underline-offset: 3px;
}

.tour-sidebar-packages__all:hover {
	color: var(--forest-mid);
	text-decoration-color: var(--gold);
}

.tour-sidebar-card {
	background: rgba(255, 255, 255, 0.98);
	border-radius: var(--radius);
	padding: clamp(1.1rem, 2.8vw, 1.35rem);
	border: 1px solid rgba(61, 41, 20, 0.1);
	box-shadow: 0 26px 50px rgba(42, 33, 24, 0.11);
	position: relative;
}

.tour-sidebar-card::before {
	content: '';
	position: absolute;
	inset-inline: -1px;
	top: -1px;
	height: 6px;
	border-radius: var(--radius) var(--radius) 0 0;
	background: linear-gradient(90deg, var(--forest-dark), rgba(212, 175, 55, 0.65));
	opacity: 0.85;
	pointer-events: none;
}

.tour-sidebar-card__kicker {
	margin: 0.45rem 0 0;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 0.65rem;
	color: rgba(42, 33, 24, 0.45);
	letter-spacing: 0.065em;
}

.tour-sidebar-card__title {
	margin: 0.35rem 0 1rem;
	font-weight: 700;
	line-height: 1.38;
	font-size: calc(max(13px, calc(clamp(1.05rem, 2.3vw, 1.28rem) - 10px)) + 5px);
	color: var(--brown-dark);
	font-family: var(--font-body);
}

.tour-sidebar-card__price {
	margin: -0.4rem 0 0.9rem;
	font-weight: 800;
	font-size: 1.15rem;
	color: var(--forest-dark);
}

.tour-sidebar-card__ctas {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	width: 100%;
}

.btn--block {
	display: inline-flex !important;
	width: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
	box-sizing: border-box;
}

.tour-ad-slot {
	background: repeating-linear-gradient(
		-42deg,
		rgba(42, 33, 24, 0.05),
		rgba(42, 33, 24, 0.05) 8px,
		rgba(255, 255, 255, 0.4) 8px,
		rgba(255, 255, 255, 0.4) 16px
	);
	border-radius: var(--radius);
	border: 1px dashed rgba(61, 41, 20, 0.18);
	padding: 1rem;
	text-align: center;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.tour-ad-slot__label {
	margin: 0 0 auto;
	align-self: flex-start;
	padding: 0.12rem 0.45rem;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(42, 33, 24, 0.45);
}

.tour-ad-slot__frame {
	flex: 1;
	width: 100%;
	min-height: 218px;
	outline-offset: -2px;
	border-radius: 9px;
}

.tour-ad-slot--safari-fleet {
	background: var(--white);
	border: 1px solid rgba(61, 41, 20, 0.1);
	box-shadow: 0 14px 36px rgba(42, 33, 24, 0.08);
	min-height: 0;
	padding: 0.65rem;
	justify-content: stretch;
	align-items: stretch;
}

.tour-ad-slot--safari-fleet .tour-ad-slot__frame--media {
	min-height: 0;
	flex: 0 0 auto;
	align-self: stretch;
}

.tour-ad-slot--safari-fleet .tour-ad-slot__frame--media img {
	width: 100%;
	height: auto;
	vertical-align: middle;
	border-radius: 9px;
	display: block;
	object-fit: cover;
}

.tour-sidebar-links {
	background: rgba(249, 245, 237, 0.75);
	padding: 0.92rem;
	border-radius: var(--radius);
	border: 1px solid rgba(61, 41, 20, 0.08);
	font-size: 0.875rem;
}

.tour-sidebar-links__title {
	margin: 0 0 0.45rem;
	font-weight: 800;
	font-size: 0.7rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(42, 33, 24, 0.45);
}

.tour-sidebar-links__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tour-sidebar-links__list a {
	display: inline-block;
	padding: 0.25rem 0;
	font-weight: 600;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.tour-sidebar-links__all {
	margin: 0.55rem 0 0;
	font-weight: 600;
}

@media (max-width: 930px) {
	.tour-page .tour-hero .tour-layout.tour-hero__layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.tour-page .tour-hero .tour-hero__rail-spacer {
		display: none;
	}

	.tour-layout:not(.blog-layout),
	.tour-page .tour-layout:not(.blog-layout) {
		grid-template-columns: minmax(0, 1fr);
		padding-top: clamp(1.65rem, 6vw, 2.75rem);
	}

	.tour-page .tour-layout {
		padding-top: 0;
	}

	.tour-layout__sidebar {
		order: -1;
		padding-top: 0;
	}

	.tour-sidebar__sticky {
		position: static;
		display: grid;
		gap: 1rem;
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
		align-items: start;
	}

	.tour-sidebar-packages {
		grid-column: 1 / -1;
	}

	.tour-toc .tour-toc__list {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
		gap: 0.08rem;
	}

	.tour-ad-slot:not(.tour-ad-slot--safari-fleet) {
		min-height: 120px;
	}

	.tour-ad-slot:not(.tour-ad-slot--safari-fleet) .tour-ad-slot__frame {
		min-height: 92px;
	}
}

.cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

/* —— Safari hotels —— */
.hotel-hub-facts {
	margin-bottom: 1.75rem;
	padding: 1.25rem 1.35rem;
	background: rgba(27, 67, 50, 0.06);
	border-radius: var(--radius);
	border-left: 4px solid var(--gold);
}

.hotel-hub-facts__grid {
	display: grid;
	gap: 0.65rem 1.5rem;
	margin: 0;
}

@media (min-width: 640px) {
	.hotel-hub-facts__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.hotel-hub-facts__row {
	display: grid;
	gap: 0.2rem;
}

.hotel-hub-facts__row dt {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--forest-dark);
}

.hotel-hub-facts__row dd {
	margin: 0;
	font-size: 0.98rem;
	color: var(--brown-dark);
}

.card-grid--hotels {
	margin-top: 1.5rem;
}

.hotel-filters {
	margin-top: 1rem;
}

.hotel-filters__search {
	flex: 1 1 220px;
	min-width: 0;
	max-width: 420px;
}

.hotel-archive-empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 1.5rem 0 2rem;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.5;
}

.hotel-filter-links {
	margin: 0.5rem 0 0;
	font-size: 0.9rem;
}

.hotel-budget-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	margin-top: 0.75rem;
}

.hotel-budget-tabs a {
	font-weight: 600;
}

.hotel-budget-tabs__current {
	font-weight: 700;
	color: var(--forest);
}

.dest-accommodation-lodges {
	margin-top: 2rem;
}

.dest-accommodation-tabs {
	margin-bottom: 1.25rem;
}

.dest-accommodation-lodges__more,
.dest-accommodation-lodges__empty {
	margin: 1rem 0 0;
	font-size: 0.95rem;
	color: var(--muted);
}

.card-grid--dest-lodges {
	margin-top: 0.5rem;
}

.hotel-location-index {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}

@media (min-width: 600px) {
	.hotel-location-index {
		grid-template-columns: repeat(2, 1fr);
	}
}

.card--hotel .card__destinations {
	margin: 0 0 0.5rem;
	font-size: 0.88rem;
	line-height: 1.45;
	color: var(--muted);
}

.card--hotel .card__destinations strong {
	color: var(--brown-dark);
	font-weight: 600;
}

.card--hotel .card__pill--budget,
.card--hotel .card__pill--popular {
	display: inline-block;
	margin: 0 0.35rem 0.5rem 0;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	font-size: 0.75rem;
}

.card--hotel .card__pill--budget {
	background: rgba(212, 175, 55, 0.2);
}

.card--hotel .card__pill--popular {
	background: rgba(45, 90, 61, 0.12);
	color: var(--forest);
	font-weight: 600;
}

.card--hotel .card__pill--budget {
	font-weight: 700;
	color: var(--brown-dark);
}

/* Destination hub — tours prose grouped above package cards */
.dest-hub-safari-zone {
	margin-top: 2.25rem;
}

.dest-hub-safari-zone__prose > h2:first-child {
	margin-top: 0;
}

.dest-hub-safari-zone .dest-hub-section-packages {
	margin-top: 1.35rem;
}

/* Destination hub/sections — homepage safari tour cards, 2 per row in main column */
.dest-hub-section-packages {
	margin-top: 2.25rem;
}

.dest-hub-section-packages--cards-only .dest-hub-section-packages__bar {
	justify-content: flex-end;
	margin-bottom: 1rem;
}

.dest-hub-section-packages__band {
	padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1rem, 2.5vw, 1.35rem);
	border-radius: var(--radius);
	background: linear-gradient(180deg, #f5f0e8 0%, var(--cream) 100%);
	border: 1px solid rgba(61, 41, 20, 0.08);
}

.dest-hub-section-packages__bar {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.5rem 1.25rem;
	margin-bottom: 1.25rem;
}

.dest-hub-section-packages__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.15rem, 2.2vw, 1.35rem);
	font-weight: 600;
	line-height: 1.25;
	color: var(--brown-dark);
}

.dest-hub-section-packages__all {
	flex-shrink: 0;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--forest-dark);
	text-decoration: underline;
	text-underline-offset: 0.2em;
	white-space: nowrap;
}

.dest-hub-section-packages__all:hover,
.dest-hub-section-packages__all:focus-visible {
	color: var(--forest-mid);
}

/* Safari tour cards inside destination prose — layout only; card chrome is global */
.prose--dest-hub .dest-hub-section-packages,
.dest-hub-section-packages,
.dest-hub-suggested-tours,
.prose--dest-hub .dest-hub__article .dest-hub-suggested-tours {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.dest-hub-suggested-tours {
	margin: 1.5rem 0 1.75rem;
}

.prose--dest-hub .card--safari-booking .card-sb__body p,
.prose--dest-hub .card--safari-booking .card-sb__footer {
	text-align: start;
	hyphens: none;
}

/* Image-overlay titles must stay cream inside .prose (hotel hubs, destination copy, safari-packages bands). */
.prose .card--safari-booking .card-sb__title,
.prose--dest-hub .card--safari-booking .card-sb__title {
	color: var(--cream);
	text-shadow:
		0 1px 4px rgba(0, 0, 0, 0.85),
		0 2px 22px rgba(0, 0, 0, 0.6),
		0 0 1px rgba(0, 0, 0, 0.8);
}

.prose--dest-hub .card--safari-booking .card-sb__footer-cta {
	color: var(--cream);
}

/* Destination explore cards (hub nearby + subpage grids) — compact, minimal */
.dest-hub-nearby-cards,
.card-grid--dest-nearby {
	margin: 1.5rem 0 1.25rem;
	max-width: none;
}

.prose--dest-hub .dest-hub__article .dest-hub-nearby-cards {
	max-width: none;
}

.dest-hub-nearby-cards__grid.card-grid--dest {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.15rem;
}

@media (max-width: 900px) {
	.dest-hub-nearby-cards__grid.card-grid--dest {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.dest-hub-nearby-cards__grid.card-grid--dest {
		grid-template-columns: 1fr;
	}
}

.dest-hub-nearby-cards .card,
.card-grid--dest-nearby .card {
	box-shadow: 0 6px 22px rgba(26, 15, 8, 0.08);
}

.dest-hub-nearby-cards .card:hover,
.card-grid--dest-nearby .card:hover {
	transform: translateY(-2px);
}

.dest-hub-nearby-cards .card__body,
.card-grid--dest-nearby .card__body {
	padding: 0.5rem 1rem 5px;
}

.dest-hub-nearby-cards .card__title,
.card-grid--dest-nearby .card__title,
.prose--dest-hub .dest-hub-nearby-cards .card__title {
	margin: 0 0 0.35rem;
	font-size: 1.05rem;
	line-height: 1.25;
	text-align: start;
}

.dest-hub-nearby-cards .card__excerpt,
.card-grid--dest-nearby .card__excerpt,
.prose--dest-hub .dest-hub-nearby-cards .card__excerpt {
	margin: 0 0 5px;
	font-size: 0.88rem;
	line-height: 1.45;
	flex: none;
	text-align: start;
	hyphens: none;
}

.dest-hub-nearby-cards .card__link,
.card-grid--dest-nearby .card__link {
	margin: 5px 0 5px;
	padding: 0;
	font-size: 0.85rem;
	line-height: 1.2;
}

.card-grid.card-grid--safari-home.card-grid--safari-two-col,
.safari-home-card-grid.card-grid--safari-two-col {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 560px) {
	.card-grid.card-grid--safari-home.card-grid--safari-two-col,
	.safari-home-card-grid.card-grid--safari-two-col {
		grid-template-columns: 1fr;
	}
}

/* Destination + hub FAQs — standard card list */
.dest-hub-faqs,
.dest-faqs {
	margin: 1.25rem 0 1rem;
	max-width: none;
}

.prose--dest-hub .dest-hub__article .dest-hub-faqs,
.prose--dest-hub .dest-hub__article .faq-list {
	max-width: none;
}

.prose--dest-hub .dest-hub-faqs .faq-item__q,
.prose--dest-hub .dest-hub-faqs .faq-item dt {
	text-align: start;
}

.prose--dest-hub .dest-hub-faqs .faq-item__a,
.prose--dest-hub .dest-hub-faqs .faq-item dd {
	text-align: start;
	hyphens: none;
}

.dest-tips {
	margin: 0;
	padding-left: 1.2rem;
}

.btn--block {
	display: block;
	text-align: center;
	width: 100%;
}

/* Destination hub landing (hero + sidebar article) */
.dest-hub.dest-hub--landing,
.dest-hub.dest-hub--section-rich {
	padding-top: 0;
	padding-bottom: 3rem;
}

.single-ust_destination .breadcrumbs-itinerary-sb + .dest-hub--landing {
	margin-top: 0;
}

.dest-hub-hero {
	position: relative;
	min-height: 390px;
	display: flex;
	align-items: flex-end;
	color: #fff;
	margin-top: 0;
	margin-bottom: 2rem;
}

.dest-hub-hero__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	background: var(--color-forest, #1a3c34);
}

.dest-hub-hero__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dest-hub-hero__bg-fallback {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1a3c34 0%, #2d5a4a 55%, #4a7c59 100%);
}

.dest-hub-hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.dest-hub-hero__inner {
	position: relative;
	z-index: 1;
	padding: 2.5rem 0 2.75rem;
	max-width: 820px;
}

.dest-hub-hero__crumb {
	margin: 0 0 0.5rem;
	font-size: 0.88rem;
}

.dest-hub-hero__crumb a {
	color: rgba(255, 255, 255, 0.92);
}

.dest-hub-hero__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.65rem, 4vw, 2.45rem);
	line-height: 1.15;
	text-wrap: balance;
}

.dest-hub-hero__tagline {
	margin: 0 0 1.1rem;
	font-size: 1.05rem;
	line-height: 1.5;
	max-width: 62ch;
	opacity: 0.95;
}

.dest-hub-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.dest-hub__shell {
	padding-bottom: 1rem;
}

.dest-hub__sidebar {
	align-self: start;
}

.dest-hub-sidebar__sticky {
	position: sticky;
	top: calc(var(--sticky-top, 0px) + 1rem);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-bottom: 2rem;
}

.dest-hub-sidebar-card.tour-sidebar-card {
	margin-top: 0;
}

.dest-hub-sidebar-card .tour-sidebar-card__kicker {
	text-align: center;
	margin-top: 0.25rem;
}

.dest-hub-sidebar-card .tour-sidebar-card__title {
	font-size: clamp(1.05rem, 2.1vw, 1.2rem);
	text-align: center;
	text-decoration: underline;
	text-underline-offset: 0.2em;
	text-decoration-thickness: 2px;
}

.dest-hub__sidebar .tour-sidebar-packages--dest-hub {
	margin-top: 0;
}

/* Destination sidebar — compact panel (card background, minimal TOC density) */
.dest-hub-sidebar-panel {
	position: relative;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(61, 41, 20, 0.1);
	border-radius: var(--radius);
	padding: 0.55rem 0.7rem 0.6rem;
	box-shadow: 0 10px 24px rgba(42, 33, 24, 0.07);
}

.dest-hub-sidebar-panel::before {
	content: '';
	position: absolute;
	inset-inline: -1px;
	top: -1px;
	height: 3px;
	border-radius: var(--radius) var(--radius) 0 0;
	background: linear-gradient(90deg, var(--forest-dark), rgba(212, 175, 55, 0.65));
	opacity: 0.85;
	pointer-events: none;
}

.dest-hub-nav.tour-sidebar-card {
	margin-top: 0;
	padding: clamp(0.75rem, 1.8vw, 0.95rem);
}

.hotel-hub-sidebar-card + .hotel-hub-nav.tour-sidebar-card {
	margin-top: 0.75rem;
}

.hotel-hub-nav__title {
	margin: 0 0 0.65rem;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--forest-dark);
}

.hotel-hub__guide-links {
	margin: clamp(1.75rem, 3vw, 2.25rem) 0 0;
	padding: clamp(1rem, 2vw, 1.25rem);
	background: rgba(245, 240, 232, 0.55);
	border: 1px solid rgba(61, 41, 20, 0.1);
	border-radius: var(--radius);
}

.hotel-hub__guide-links h2 {
	margin: 0 0 0.75rem;
	font-size: 1.1rem;
}

.hotel-hub__guide-links-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.35rem;
}

.hotel-hub__guide-links-list a {
	font-weight: 600;
	color: var(--forest-dark);
	text-decoration: none;
}

.hotel-hub__guide-links-list a:hover,
.hotel-hub__guide-links-list a:focus-visible {
	text-decoration: underline;
}

.hotel-hub__guide-links-related {
	margin: 0.85rem 0 0;
	font-size: 0.92rem;
}

.hotel-hub__guide-links-related a {
	font-weight: 600;
	color: var(--forest-dark);
}

.hotel-hub__keywords {
	margin: 1.25rem 0 0;
	font-size: 0.95rem;
	line-height: 1.55;
}

.hotel-location-map {
	margin: 0 0 1.75rem;
}

.hotel-location-map .dest-hub-map {
	margin-bottom: 0;
}

.hotel-location-map--lodge {
	margin-bottom: 1.5rem;
}

/* Hotel hub & sections — editorial content panel */
.hotel-hub .hotel-hub__content-panel {
	margin-top: 0;
	padding: clamp(1.25rem, 2.5vw, 1.85rem);
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(61, 41, 20, 0.08);
	border-radius: var(--radius);
	box-shadow: 0 8px 32px rgba(42, 33, 24, 0.06);
}

.hotel-hub .hotel-section__lede,
.hotel-hub .dest-hub__lede.hotel-section__lede {
	margin: 0 0 1.35rem;
	padding: 0.85rem 1rem;
	font-size: 1.02rem;
	line-height: 1.65;
	color: var(--brown-dark);
	background: linear-gradient(135deg, rgba(27, 67, 50, 0.06) 0%, rgba(245, 240, 232, 0.55) 100%);
	border-left: 4px solid var(--gold);
	border-radius: 0 var(--radius) var(--radius) 0;
}

.hotel-hub .dest-hub__body.dest-hub__article,
.hotel-hub .hotel-hub__article.dest-hub__body {
	font-size: 1.02rem;
	line-height: 1.7;
}

.hotel-hub .dest-hub__body.dest-hub__article::after {
	content: '';
	display: table;
	clear: both;
}

.hotel-hub .dest-hub__body.dest-hub__article p,
.hotel-hub .dest-hub__body.dest-hub__article li {
	text-align: justify;
	text-justify: inter-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

.hotel-hub .dest-hub__body.dest-hub__article h2 {
	margin-top: 2.25rem;
	margin-bottom: 0.85rem;
	font-size: 1.45rem;
	scroll-margin-top: 6rem;
	text-align: start;
	hyphens: none;
	color: var(--forest-dark);
}

.hotel-hub .dest-hub__body.dest-hub__article h3 {
	margin-top: 1.5rem;
	margin-bottom: 0.65rem;
	font-size: 1.15rem;
	text-align: start;
	hyphens: none;
	color: var(--forest-dark);
}

.hotel-hub .dest-hub__body.dest-hub__article ul,
.hotel-hub .dest-hub__body.dest-hub__article ol {
	margin: 0.75rem 0 1.1rem;
	padding-left: 1.35rem;
}

.hotel-hub .dest-hub__body.dest-hub__article li {
	margin-bottom: 0.45rem;
}

.hotel-hub .dest-hub__body.dest-hub__article .ust-lr-separator {
	margin: clamp(1.75rem, 3vw, 2.35rem) 0;
}

.hotel-hub .dest-hub-faqs.hotel-section-faqs {
	margin-top: 0;
	margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.hotel-hub .dest-hub-section-packages {
	margin-top: clamp(1.75rem, 3vw, 2.25rem);
}

.hotel-hub .hotel-hub-adventure-cta {
	margin-top: clamp(1.75rem, 3vw, 2.25rem);
}

.hotel-hub-facts {
	box-shadow: 0 4px 20px rgba(42, 33, 24, 0.05);
}

/* Editorial content panel — destinations, wildlife, hotels, pages, FAQ */
.dest-hub.dest-hub--landing .dest-hub__content-panel,
.dest-hub.dest-hub--section-rich .dest-hub__content-panel,
.dest-hub.dest-hub--section.dest-section-view .dest-hub__content-panel,
.wildlife-hub .dest-hub__content-panel,
.hotel-hub .hotel-hub__content-panel,
.page-singular .dest-hub__content-panel,
.activity-singular .dest-hub__content-panel,
.faq-page__body.dest-hub__content-panel {
	margin-top: 0;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.dest-hub .dest-section__lede,
.dest-hub .dest-hub__lede.dest-section__lede,
.hotel-hub .dest-hub__lede.hotel-section__lede,
.wildlife-hub .wildlife-section__lede,
.wildlife-hub .dest-hub__lede.wildlife-section__lede {
	margin: 0 0 1.35rem;
	padding: 0.85rem 1rem;
	font-size: 1.02rem;
	line-height: 1.65;
	color: var(--brown-dark);
	background: linear-gradient(135deg, rgba(27, 67, 50, 0.06) 0%, rgba(245, 240, 232, 0.55) 100%);
	border-left: 4px solid var(--gold);
	border-radius: 0 var(--radius) var(--radius) 0;
	max-width: none;
	opacity: 1;
}

.dest-hub .dest-hub-faqs.dest-section-faqs,
.wildlife-hub .dest-hub-faqs.wildlife-section-faqs,
.hotel-hub .dest-hub-faqs.hotel-section-faqs {
	margin-top: 0;
	margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.dest-hub .dest-hub-section-packages,
.wildlife-hub .dest-hub-section-packages,
.hotel-hub .dest-hub-section-packages {
	margin-top: clamp(1.75rem, 3vw, 2.25rem);
}

.dest-hub .dest-hub-adventure-cta,
.wildlife-hub .dest-hub-adventure-cta,
.hotel-hub .hotel-hub-adventure-cta {
	margin-top: clamp(1.75rem, 3vw, 2.25rem);
}

.wildlife-hub-facts {
	box-shadow: 0 4px 20px rgba(42, 33, 24, 0.05);
}

.page-singular,
.activity-singular {
	padding-block: clamp(1.5rem, 3vw, 2.5rem);
}

.page-singular__title,
.activity-singular__title {
	margin: 0 0 1.25rem;
	font-size: clamp(1.65rem, 3.5vw, 2.15rem);
	line-height: 1.2;
	color: var(--forest-dark);
}

.page-singular__surface,
.activity-singular__surface {
	margin-bottom: 1.5rem;
}

.activity-singular__thumb {
	margin: 0 0 1.25rem;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 12px 28px rgba(42, 33, 24, 0.08);
}

.activity-singular__cta {
	margin: 0;
}

.blog-entry-content.dest-hub__article p,
.blog-entry-content.dest-hub__article li,
.page-singular__body p,
.page-singular__body li,
.activity-singular__body p,
.activity-singular__body li,
.tour-section--panel .tour-section__body p,
.tour-section--panel .tour-section__body li,
.wildlife-hub .wildlife-formatted-prose.dest-hub__article p,
.wildlife-hub .wildlife-formatted-prose.dest-hub__article li {
	text-align: justify;
	text-justify: inter-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

.blog-entry-content.dest-hub__article h2,
.page-singular__body h2,
.activity-singular__body h2,
.wildlife-hub .wildlife-formatted-prose.dest-hub__article h2 {
	margin-top: 2rem;
	margin-bottom: 0.85rem;
	font-size: 1.45rem;
	text-align: start;
	hyphens: none;
	color: var(--forest-dark);
}

.blog-entry-content.dest-hub__article h3,
.page-singular__body h3,
.activity-singular__body h3,
.wildlife-hub .wildlife-formatted-prose.dest-hub__article h3 {
	margin-top: 1.35rem;
	margin-bottom: 0.65rem;
	font-size: 1.15rem;
	text-align: start;
	hyphens: none;
	color: var(--forest-dark);
}

.dest-hub-map {
	margin: 0 0 1.25rem;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid rgba(61, 41, 20, 0.12);
	box-shadow: 0 12px 28px rgba(42, 33, 24, 0.08);
}

.dest-hub-map__iframe {
	display: block;
	width: 100%;
	height: min(420px, 58vw);
	min-height: 280px;
	border: 0;
}

.dest-hub-map__open {
	margin: 0;
	padding: 0.55rem 0.85rem;
	font-size: 0.88rem;
	background: rgba(245, 240, 232, 0.65);
}

.dest-hub-map__open a {
	color: var(--forest-dark);
	font-weight: 600;
}

.dest-hub-toc.dest-hub-sidebar-panel {
	margin-top: 0;
}

.dest-hub-toc__label {
	margin: 0.3rem 0 0.35rem;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.7rem;
	color: rgba(42, 33, 24, 0.5);
	letter-spacing: 0.05em;
}

.dest-hub-toc__list {
	margin: 0;
	padding: 0 0 0 1.05rem;
	font-size: 0.8125rem;
	line-height: 1.32;
	color: var(--muted);
}

.dest-hub-toc__list li {
	margin: 0;
	padding: 0;
}

.dest-hub-toc__list li + li {
	margin-top: 0.1rem;
}

.dest-hub-toc__list a {
	display: block;
	padding: 0.08rem 0;
	text-decoration: none;
	color: var(--muted);
}

.dest-hub-toc__list a:hover,
.dest-hub-toc__list a:focus-visible {
	color: var(--forest-dark);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.dest-hub-nav.tour-sidebar-card .dest-hub-nav__link,
.dest-hub-nav.tour-sidebar-card .dest-hub-nav__sub-link {
	color: var(--brown-dark);
	font-size: 0.84rem;
}

.dest-hub-nav.tour-sidebar-card .dest-hub-nav__item.is-active > .dest-hub-nav__link,
.dest-hub-nav.tour-sidebar-card .dest-hub-nav__sub-item.is-active > .dest-hub-nav__sub-link {
	background: rgba(245, 240, 232, 0.85);
	color: var(--forest-dark);
}

.prose--dest-hub {
	max-width: none;
}

.prose--dest-hub .dest-hub__article {
	font-size: 1.02rem;
	line-height: 1.7;
	max-width: none;
}

/* Inline hub figures */
.dest-hub__figure {
	margin: clamp(1.25rem, 2.5vw, 2rem) 0;
	padding: 0;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--color-sand, #f4efe6);
	box-shadow: 0 4px 24px rgba(26, 15, 8, 0.08);
}

.dest-hub__figure img {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: middle;
}

.dest-hub__figure--wide {
	margin-left: 0;
	margin-right: 0;
}

.dest-hub__figure--right {
	float: right;
	width: min(42%, 280px);
	margin: 0.25rem 0 1rem 1.25rem;
}

.dest-hub__figcaption {
	margin: 0;
	padding: 0.65rem 0.9rem;
	font-size: 0.88rem;
	line-height: 1.45;
	color: var(--brown-mid, #4a3728);
	text-align: center;
	border-top: 1px dotted rgba(61, 41, 20, 0.18);
	background: linear-gradient(180deg, rgba(250, 248, 243, 0.9) 0%, var(--white) 100%);
}

.dest-hub__figure-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin: clamp(1.25rem, 2.5vw, 2rem) 0;
}

.dest-hub__figure-row .dest-hub__figure {
	margin: 0;
}

@media (max-width: 720px) {
	.dest-hub__figure-row {
		grid-template-columns: 1fr;
	}

	.dest-hub__figure--right {
		float: none;
		width: 100%;
		margin: clamp(1rem, 2vw, 1.5rem) 0;
	}
}

.prose--dest-hub .dest-hub__article::after {
	content: '';
	display: table;
	clear: both;
}

.prose--dest-hub .dest-hub__article p,
.prose--dest-hub .dest-hub__article li {
	text-align: justify;
	text-justify: inter-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

.prose--dest-hub .dest-hub__article h2 {
	margin-top: 2.25rem;
	margin-bottom: 0.85rem;
	font-size: 1.45rem;
	scroll-margin-top: 6rem;
	text-align: start;
	hyphens: none;
}

.prose--dest-hub .dest-hub__article h3 {
	margin-top: 1.35rem;
	margin-bottom: 0.55rem;
	font-size: 1.15rem;
	text-align: start;
	hyphens: none;
}

/* Theme section divider (replaces raw <hr> in long-form destination/blog copy) */
.ust-lr-separator {
	display: block;
	width: 100%;
	height: 0;
	margin: clamp(1.75rem, 3vw, 2.35rem) 0;
	padding: 0;
	border: 0;
	border-top: 2px solid var(--gold);
}

.prose--dest-hub .dest-hub__article hr {
	display: none;
	margin: 0;
	border: 0;
}

.dest-hub__facts-table {
	width: 100%;
	border-collapse: collapse;
	margin: 1rem 0 1.5rem;
	font-size: 0.95rem;
}

.dest-hub__facts-table th,
.dest-hub__facts-table td {
	border: 1px solid var(--color-border, #e0d8cc);
	padding: 0.55rem 0.75rem;
	text-align: left;
	vertical-align: top;
}

.dest-hub__facts-table thead th {
	background: var(--color-sand, #f4efe6);
	font-weight: 700;
}

/* Destination hub — “Ready for your adventure?” CTA card */
.prose--dest-hub .dest-hub-adventure-cta,
.dest-hub__main > .dest-hub-adventure-cta,
.utw-geo-view .dest-hub-adventure-cta {
	margin: clamp(2rem, 4vw, 2.75rem) 0 0.5rem;
}

.dest-hub-adventure-cta__card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: clamp(1.1rem, 2.5vw, 1.65rem);
	text-align: left;
	padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.25rem, 3vw, 1.75rem);
	background: var(--cream);
	border: 1px solid rgba(184, 134, 11, 0.42);
	border-radius: var(--radius);
	box-shadow: 0 8px 32px rgba(42, 33, 24, 0.07);
}

.dest-hub-adventure-cta__media {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dest-hub-adventure-cta__consultant {
	margin: 0;
	padding: 0;
	width: 88px;
	height: 88px;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 50%;
	border: 3px solid var(--white);
	box-shadow: 0 4px 18px rgba(26, 15, 8, 0.12);
}

.dest-hub-adventure-cta__consultant-img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 0;
	object-fit: cover;
	object-position: center 18%;
	transform: scale(1.34);
	transform-origin: center 22%;
	border: 0;
	box-shadow: none;
}

.dest-hub-adventure-cta__consultant-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--forest-mid) 0%, var(--forest-dark) 100%);
	border: 3px solid var(--white);
	box-shadow: 0 4px 18px rgba(26, 15, 8, 0.12);
	color: var(--cream);
}

.dest-hub-adventure-cta__consultant-icon svg {
	display: block;
	opacity: 0.92;
}

.dest-hub-adventure-cta__content {
	flex: 1 1 0;
	min-width: 0;
}

.dest-hub-adventure-cta__title {
	margin: 0 0 0.55rem;
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 2.4vw, 1.5rem);
	font-weight: 700;
	color: var(--brown-dark);
	line-height: 1.22;
}

.dest-hub-adventure-cta__text {
	margin: 0 0 1.1rem;
	max-width: none;
	font-size: 0.98rem;
	line-height: 1.58;
	color: var(--muted);
}

.dest-hub-adventure-cta__actions {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 0.65rem;
	width: 100%;
	max-width: 100%;
}

.dest-hub-adventure-cta__actions--cols-1 {
	flex-direction: column;
	max-width: 16rem;
}

.dest-hub-adventure-cta__actions--cols-2 .dest-hub-adventure-cta__btn {
	flex: 1 1 0;
	min-width: 0;
	width: auto;
}

.dest-hub-adventure-cta__actions--cols-1 .dest-hub-adventure-cta__btn {
	width: 100%;
}

.dest-hub-adventure-cta__actions .dest-hub-adventure-cta__btn {
	min-height: 3rem;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	white-space: normal;
	text-align: center;
	font-size: 0.9rem;
	font-weight: 700;
}

@media (max-width: 640px) {
	.dest-hub-adventure-cta__card {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.dest-hub-adventure-cta__content {
		width: 100%;
	}

	.dest-hub-adventure-cta__actions,
	.dest-hub-adventure-cta__actions--cols-2 {
		flex-direction: column;
		max-width: 20rem;
		margin-left: auto;
		margin-right: auto;
	}

	.dest-hub-adventure-cta__actions--cols-2 .dest-hub-adventure-cta__btn,
	.dest-hub-adventure-cta__actions--cols-1 .dest-hub-adventure-cta__btn {
		flex: none;
		width: 100%;
	}
}

@media (max-width: 899px) {
	.dest-hub__sidebar {
		position: static;
	}
	.dest-hub-hero {
		min-height: 330px;
	}
}

/* Uganda to the World — hub + geo market landings */
.utw-hub-hero__bg,
.utw-geo-hero__bg {
	background:
		linear-gradient(135deg, rgba(18, 42, 28, 0.92) 0%, rgba(34, 68, 44, 0.78) 45%, rgba(92, 64, 20, 0.55) 100%),
		url("../images/wildlife/mountain-gorilla-placeholder.svg") center / cover no-repeat;
}

.utw-hub-markets__intro {
	max-width: 42rem;
	margin: 0 0 1.5rem;
	color: var(--color-muted, #5a6b5f);
}

.utw-geo-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr));
	gap: 1rem;
}

.utw-geo-card {
	margin: 0;
}

.utw-geo-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1.25rem 1.35rem;
	border: 1px solid rgba(26, 58, 40, 0.12);
	border-radius: 0.65rem;
	background: #fff;
	box-shadow: 0 2px 12px rgba(18, 42, 28, 0.06);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.utw-geo-card__link:hover,
.utw-geo-card__link:focus-visible {
	border-color: var(--color-gold, #c9a227);
	box-shadow: 0 8px 24px rgba(18, 42, 28, 0.1);
	transform: translateY(-2px);
}

.utw-geo-card__title {
	margin: 0 0 0.35rem;
	font-size: 1.15rem;
	color: var(--color-forest, #1a3a28);
}

.utw-geo-card__subtitle {
	margin: 0 0 0.65rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-muted, #5a6b5f);
}

.utw-geo-card__excerpt {
	margin: 0 0 0.85rem;
	font-size: 0.92rem;
	line-height: 1.55;
	flex: 1;
}

.utw-geo-card__cta {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--color-gold-dark, #9a7b1a);
}

.utw-trust-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.65rem;
	max-width: 40rem;
}

.utw-trust-list li {
	padding-left: 1.35rem;
	position: relative;
}

.utw-trust-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: var(--color-gold, #c9a227);
}

.utw-geo-hero__parent {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.utw-section-heading {
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}

.utw-geo-facts {
	margin: 0 0 1.25rem;
	padding-left: 1.25rem;
}

.utw-geo-facts li {
	margin-bottom: 0.5rem;
}

/* Geo pages — content column (~10% narrower than previous 1280px cap). */
.utw-geo-view .utw-geo-body.wrap {
	width: min(1152px, 84.6vw);
}

.utw-geo-view .utw-geo-body .utw-geo-content.prose {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
	width: 100%;
	font-size: 1.0625rem;
	line-height: 1.72;
}

.utw-geo-view .utw-geo-content > p:first-of-type,
.utw-geo-view .utw-geo-content .utw-geo-intro {
	font-size: 1.125rem;
	line-height: 1.75;
	max-width: none;
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
}

.utw-geo-view .utw-section-heading {
	font-size: clamp(1.35rem, 2.2vw, 1.55rem);
}

.utw-geo-body {
	padding-bottom: 3rem;
}

.utw-geo-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.5rem;
}

.utw-geo-links a {
	font-weight: 600;
}

.utw-geo-cta-band {
	padding: 1.75rem;
	border-radius: 0.65rem;
	background: rgba(26, 58, 40, 0.05);
	border: 1px solid rgba(26, 58, 40, 0.1);
}

/* Geo cluster — national parks showcase (cards + map panel). */
.utw-parks-showcase {
	margin: 2.75rem 0;
	padding: 2rem 0 2.25rem;
	border-top: 1px solid rgba(26, 58, 40, 0.12);
}

.utw-parks-showcase__head {
	margin-bottom: 1.5rem;
	max-width: 40rem;
}

.utw-parks-showcase__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.35rem, 2.4vw, 1.75rem);
	line-height: 1.2;
	color: var(--forest-dark, #1a3c34);
}

.utw-parks-showcase__lede {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--brown-mid, #4a3728);
}

.utw-parks-showcase__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(11rem, 26%);
	gap: clamp(1rem, 2.5vw, 1.75rem);
	align-items: stretch;
}

.utw-parks-showcase__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(0.75rem, 1.5vw, 1rem);
}

.utw-parks-showcase__card {
	margin: 0;
	min-height: 11.5rem;
}

.utw-parks-showcase__card-link {
	display: block;
	position: relative;
	height: 100%;
	min-height: 11.5rem;
	border-radius: 0.5rem;
	overflow: hidden;
	text-decoration: none;
	color: #fff;
	box-shadow: 0 6px 20px rgba(20, 30, 24, 0.14);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.utw-parks-showcase__card-link:hover,
.utw-parks-showcase__card-link:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(20, 30, 24, 0.22);
}

.utw-parks-showcase__card-media {
	display: block;
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, #2d5a4a 0%, #1a3c34 100%);
}

.utw-parks-showcase__img,
.utw-parks-showcase__card-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.utw-parks-showcase__card-caption {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	padding: 2.5rem 0.85rem 0.85rem;
	background: linear-gradient(180deg, transparent 0%, rgba(12, 28, 22, 0.88) 72%);
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.utw-parks-showcase__card-name {
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.02em;
}

.utw-parks-showcase__card-desc {
	font-size: 0.78rem;
	line-height: 1.4;
	opacity: 0.92;
}

.utw-parks-showcase__map-panel {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	padding: 0.85rem;
	border-radius: 0.5rem;
	background: linear-gradient(180deg, #eef4ef 0%, #e2ebe4 100%);
	border: 1px solid rgba(26, 58, 40, 0.14);
}

.utw-parks-showcase__map-visual {
	position: relative;
	flex: 1 1 auto;
	min-height: 12rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.utw-parks-showcase__map-svg {
	display: block;
	width: auto;
	height: min(100%, 16rem);
	max-width: 100%;
	opacity: 0.95;
}

.utw-parks-showcase__map-pins {
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	inset: 8% 6%;
	pointer-events: none;
}

.utw-parks-showcase__map-pin {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	transform: translate(-50%, -50%);
	font-size: 0.62rem;
	font-weight: 600;
	color: var(--forest-dark, #1a3c34);
	white-space: nowrap;
}

.utw-parks-showcase__map-pin-dot {
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: var(--color-gold, #c9a227);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85);
	flex-shrink: 0;
}

.utw-parks-showcase__map-note {
	margin: 0;
	font-size: 0.75rem;
	line-height: 1.45;
	color: var(--brown-mid, #4a3728);
}

.utw-parks-showcase__footer {
	margin: 1.25rem 0 0;
	text-align: start;
}

.utw-parks-showcase__explore-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--forest-mid, #2d5a4a);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.utw-parks-showcase__explore-link:hover,
.utw-parks-showcase__explore-link:focus-visible {
	color: var(--forest-dark, #1a3c34);
}

.utw-geo-main .utw-geo-content--tail,
.utw-geo-main .utw-geo-content--mid {
	margin-top: 0;
}

/* Geo cluster — sample safari trip cards (homepage .card--safari-booking). */
.utw-safari-trips {
	margin: 2.75rem 0;
	padding: 2rem 0 2.25rem;
	border-top: 1px solid rgba(26, 58, 40, 0.12);
}

.utw-safari-trips__head {
	margin-bottom: 1.35rem;
	max-width: 42rem;
}

.utw-safari-trips__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.35rem, 2.4vw, 1.75rem);
	line-height: 1.2;
	color: var(--forest-dark, #1a3c34);
}

.utw-safari-trips__lede {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--brown-mid, #4a3728);
}

.utw-safari-trips__cards .card-grid--safari-home.utw-safari-trips__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.35rem);
}

.utw-safari-trips__footer {
	margin: 1.35rem 0 0;
	text-align: start;
}

.utw-safari-trips__all-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--forest-mid, #2d5a4a);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.utw-safari-trips__all-link:hover,
.utw-safari-trips__all-link:focus-visible {
	color: var(--forest-dark, #1a3c34);
}

/* Geo cluster — things-to-do style experience cards */
.utw-experience-cards {
	margin: 2.5rem 0;
}

.utw-experience-cards .utw-section-heading {
	margin-bottom: 1.25rem;
}

.utw-experience-cards__grid-wrap {
	margin-top: 0;
}

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

@media (max-width: 900px) {
	.utw-experience-cards__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.utw-experience-cards__grid {
		grid-template-columns: 1fr;
	}
}

/* Geo cluster — practical planning travel guide cards */
.utw-planning-guides {
	margin: 2.5rem 0;
}

.utw-planning-guides .utw-section-heading {
	margin-bottom: 1.25rem;
}

.utw-planning-guides__grid {
	margin-top: 0;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 900px) {
	.utw-planning-guides__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.utw-planning-guides__more {
	margin: 1.35rem 0 0;
	text-align: center;
}

.utw-planning-guides__more-link {
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--forest-mid, #2d5a4a);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.utw-planning-guides__more-link:hover,
.utw-planning-guides__more-link:focus-visible {
	color: var(--forest-dark, #1a3c34);
}

@media (max-width: 1100px) {
	.utw-safari-trips__cards .card-grid--safari-home.utw-safari-trips__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.utw-safari-trips__cards .card-grid--safari-home.utw-safari-trips__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.utw-parks-showcase__layout {
		grid-template-columns: 1fr;
	}

	.utw-parks-showcase__map-panel {
		order: -1;
	}

	.utw-parks-showcase__map-visual {
		min-height: 9rem;
	}
}

@media (max-width: 560px) {
	.utw-parks-showcase__grid {
		grid-template-columns: 1fr;
	}

	.utw-parks-showcase__card,
	.utw-parks-showcase__card-link {
		min-height: 10rem;
	}
}