/* ==========================================================================
   Kili Beyond Adventure — design system
   Mobile-first.
   APPROVED COLOURS ONLY (owner, 26 Sept 2026) — use nothing else, including in rgba():
     #FF5000 orange · #CCFFCC mint · #5CE65C green · #042B1D dark green
     #FFFFFF white · #C9C5B1 stone · #787569 taupe · #DBDBDB light grey · #C2B067 gold
   Transparency is only ever applied to these shades (e.g. rgba(4, 43, 29, .6)).
   One exception: overlays and shadows on photos/videos are always BLACK, never green
   (owner, 26 Sept 2026) — rgba(0, 0, 0, …).
   Second exception: text on solid orange is pure white #FFFFFF (token --on-orange).
   Photos, videos and the logo artwork are not recoloured.
   ========================================================================== */

:root {
	--forest: #042B1D;            /* dark green: header/footer bars, dark sections, primary buttons */
	--forest-deep: #042B1D;
	--savannah: #787569;          /* taupe: heading accents and secondary details on light backgrounds */
	--gold: #C2B067;              /* gold: rules, icons, labels on dark backgrounds */
	--gold-ink: #042B1D;          /* small labels on light backgrounds (gold is too light to read there) */
	--sand: #C9C5B1;              /* stone */
	--sand-soft: #DBDBDB;
	--ivory: #FFFFFF;             /* white: page background and light text on dark green (owner, 26 Sept 2026: no beige) */
	--white: #FFFFFF;
	--grey: #DBDBDB;              /* light grey: alternate section background */
	--mint: #CCFFCC;              /* success states and light accents on dark */
	--charcoal: #042B1D;          /* body text */
	--muted: #787569;             /* secondary text */
	--on-accent: #042B1D;         /* text/icons on the light-green WhatsApp buttons (white would be unreadable) */
	--line: #C9C5B1;
	--line-light: rgba(255, 255, 255, .22);

	--f-head: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
	--f-body: var(--f-head);
	--f-accent: var(--f-head);   /* one family throughout; accents are a lighter weight + colour, never italic */

	--max: 1240px;
	--narrow: 760px;
	--gutter: clamp(16px, 4vw, 40px);
	--section: clamp(64px, 9vw, 128px);
	--radius: 0;       /* square edges throughout… */
	--radius-sm: 0;
	--radius-btn: 6px; /* …except buttons / CTAs, which are slightly rounded */
	--shadow: 0 1px 2px rgba(4, 43, 29, .06), 0 18px 40px -18px rgba(4, 43, 29, .28);
	--shadow-lg: 0 2px 4px rgba(4, 43, 29, .06), 0 30px 60px -24px rgba(4, 43, 29, .38);
	--ease: cubic-bezier(.2, .7, .2, 1);
	/* Header: one fixed height (no shrinking on scroll). --logo is the logo height;
	   --header-h = logo + padding (content and sticky elements clear it). */
	--logo: 64px;
	--header-pad-top: 18px;
	--header-pad-bottom: 12px;
	--header-h: 94px;
	--plaque-h: var(--header-h);
	--orange: #FF5000;         /* orange: CTAs, badges, slide indicators, outlines */
	--on-orange: #FFFFFF;      /* text/icons on any solid orange background (owner, 26 Sept 2026) */
	--orange-dark: #042B1D;    /* hover state of orange buttons (dark green) */
	--orange-light: #CCFFCC;   /* hover on dark backgrounds (footer credit) */
	--wa: #5CE65C;             /* WhatsApp buttons (approved green) */
	--wa-dark: #042B1D;
}
@media (min-width: 900px) {
	:root { --logo: 84px; --header-pad-top: 22px; --header-pad-bottom: 14px; --header-h: 120px; }
}

/* ---------- Base ---------- */

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 60px); }
body {
	margin: 0;
	background: var(--ivory);
	color: var(--charcoal);
	font: 400 .98rem/1.75 var(--f-body);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img, svg, video, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--forest); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--savannah); }
h1, h2, h3, h4 { font-family: var(--f-head); font-weight: 600; line-height: 1.15; letter-spacing: -.015em; margin: 0 0 .5em; color: inherit; }
p { margin: 0 0 1.1em; }
/* No italics anywhere on the site (owner's preference), including editor content. */
em, i, cite, dfn, var, address, q, blockquote { font-style: normal; }
[style*="italic"] { font-style: normal !important; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 0; }
::selection { background: var(--mint); color: var(--forest-deep); }

.screen-reader-text, .kb-hp {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.kb-skip { position: absolute; left: 16px; top: -60px; z-index: 200; padding: 10px 16px; background: var(--forest); color: var(--ivory); border-radius: 0; }
.kb-skip:focus { top: 16px; }

.kb-icon { width: 1.25em; height: 1.25em; flex: none; }
.kb-flip { transform: scaleX(-1); }

.kb-container { width: 100%; max-width: calc(var(--max) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.kb-container--narrow { max-width: calc(var(--narrow) + 2 * var(--gutter)); }

/* ---------- Type helpers ---------- */

.kb-eyebrow {
	display: inline-flex; align-items: center; gap: 12px;
	margin: 0 0 16px;
	font: 600 .75rem/1.3 var(--f-head); letter-spacing: .22em; text-transform: uppercase;
	color: var(--gold-ink);
}
.kb-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }

.kb-section-title, .kb-hero__title, .kb-cta__title, .kb-statement__title, .kb-article__title, .kb-plan-page__title {
	font-family: var(--f-head); font-weight: 600; letter-spacing: -.02em;
}
.kb-section-title { font-size: clamp(1.75rem, 1.2rem + 2.4vw, 3rem); margin: 0; max-width: 18ch; }
/* Editorial accent: lighter weight and colour (no italics) for the emphasised words of a title. */
.kb-section-title em, .kb-hero__title em, .kb-cta__title em, .kb-statement__title em, .kb-footer__name em, .kb-plan-page__title em, .kb-article__title em {
	font-family: var(--f-accent); font-weight: 400; font-style: normal; letter-spacing: -.02em;
	color: var(--savannah);
}
.kb-section-lead { font-size: 1.075rem; color: var(--muted); max-width: 58ch; margin: 16px 0 0; }
.kb-lead { font-size: clamp(1.05rem, 1rem + .35vw, 1.25rem); line-height: 1.7; }

.kb-section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px 40px; margin-bottom: clamp(32px, 4vw, 56px); }
.kb-section-head__main { max-width: 720px; }

.kb-link {
	display: inline-flex; align-items: center; gap: 8px;
	font: 600 .82rem/1 var(--f-head); letter-spacing: .12em; text-transform: uppercase;
	color: var(--forest); text-decoration: none;
	padding-bottom: 6px;
	background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
	transition: background-size .35s var(--ease), color .2s;
}
.kb-link:hover { background-size: 100% 1px; color: var(--forest); }
.kb-link .kb-icon { transition: transform .3s var(--ease); }
.kb-link:hover .kb-icon { transform: translateX(4px); }
.kb-link--button { border: 0; background-color: transparent; cursor: pointer; }

/* ---------- Buttons ---------- */

.kb-btn {
	--bg: var(--forest); --fg: var(--ivory); --bd: var(--forest);
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 48px; padding: 12px 24px;
	border: 1px solid var(--bd); border-radius: 0;
	background: var(--bg); color: var(--fg);
	font: 600 .8rem/1 var(--f-head); letter-spacing: .12em; text-transform: uppercase; text-decoration: none; white-space: nowrap;
	transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
/* Small phones: long button labels wrap inside the button instead of running off the screen. */
@media (max-width: 479px) { .kb-btn { max-width: 100%; white-space: normal; text-align: center; line-height: 1.3; } }
.kb-btn:hover { --bg: var(--forest-deep); color: var(--fg); transform: translateY(-2px); box-shadow: 0 10px 24px -12px rgba(4, 43, 29, .6); }
.kb-btn:active { transform: translateY(0); }
.kb-btn .kb-icon { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.kb-btn:hover .kb-icon:not(.kb-flip) { transform: translateX(3px); }
.kb-btn--ghost { --bg: transparent; --fg: var(--forest); --bd: rgba(4, 43, 29, .35); }
.kb-btn--ghost:hover { --bg: var(--forest); --fg: var(--ivory); --bd: var(--forest); }
.kb-btn--light { --bg: var(--ivory); --fg: var(--forest-deep); --bd: var(--ivory); }
.kb-btn--light:hover { --bg: var(--white); --fg: var(--forest-deep); }
.kb-btn--ghost-light { --bg: rgba(4, 43, 29, .15); --fg: var(--ivory); --bd: rgba(255, 255, 255, .6); backdrop-filter: blur(6px); }
.kb-btn--ghost-light:hover { --bg: var(--ivory); --fg: var(--forest-deep); --bd: var(--ivory); }
/* Standard WhatsApp green with the white logo. */
.kb-btn--whatsapp { --bg: var(--wa); --fg: var(--on-accent); --bd: var(--wa); }
.kb-btn--whatsapp .kb-icon { width: 20px; height: 20px; }
.kb-btn--whatsapp:hover { --bg: var(--wa-dark); --fg: var(--white); --bd: var(--wa-dark); box-shadow: 0 10px 24px -12px rgba(4, 43, 29, .6); }
.kb-btn--whatsapp:hover .kb-icon { transform: none; }
.kb-btn--orange { --bg: var(--orange); --fg: var(--on-orange); --bd: var(--orange); }
.kb-btn--orange:hover { --bg: var(--orange-dark); --fg: var(--white); --bd: var(--orange-dark); box-shadow: 0 10px 24px -12px rgba(255, 80, 0, .55); }
.kb-btn--outline-orange { --bg: transparent; --fg: var(--white); --bd: var(--orange); }
.kb-btn--outline-orange:hover { --bg: var(--orange); --fg: var(--on-orange); --bd: var(--orange); }
.kb-btn--block { width: 100%; }

.kb-icon-btn {
	display: inline-grid; place-items: center; width: 44px; height: 44px; flex: none;
	border: 1px solid var(--line); border-radius: 0; background: var(--white); color: var(--forest);
	transition: background-color .2s, color .2s, border-color .2s, transform .2s;
}
.kb-icon-btn:hover { background: var(--forest); color: var(--ivory); border-color: var(--forest); }
.kb-icon-btn .kb-icon { width: 20px; height: 20px; }

/* ---------- Header ---------- */

/* The transparent logo sits straight on the page — no plaque. The header keeps one height,
   so the logo and menu never move: transparent over hero photos, then a dark translucent
   dark-green brand bar once scrolled and on pages without a hero. */
.kb-header {
	position: fixed; inset: 0 0 auto; z-index: 100; color: var(--ivory);
	background: rgba(4, 43, 29, .72); backdrop-filter: saturate(1.2) blur(12px);
	box-shadow: 0 1px 0 var(--line-light);
	transition: background-color .35s var(--ease), box-shadow .35s, backdrop-filter .35s;
}
.kb-has-hero .kb-header:not(.is-solid) { background: transparent; box-shadow: none; backdrop-filter: none; }
/* Logged in: sit below the WordPress toolbar so it never covers the logo
   (32px fixed; 46px under 783px; below 601px the toolbar scrolls away with the page). */
.admin-bar .kb-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .kb-header { top: 46px; } }
@media (max-width: 600px) { .admin-bar .kb-header { top: 0; } }
.kb-has-hero .kb-header:not(.is-solid)::before {
	content: ""; position: absolute; inset: 0 0 auto; height: 200px; z-index: -1; pointer-events: none;
	background: linear-gradient(180deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
}
.kb-header__inner {
	max-width: calc(1440px + 2 * var(--gutter)); margin: 0 auto; height: var(--header-h);
	padding: var(--header-pad-top) var(--gutter) var(--header-pad-bottom);
	display: flex; align-items: center; gap: 24px;
}
@media (min-width: 1280px) and (max-width: 1399px) {
	.kb-header__inner { gap: 16px; }
	.kb-header .kb-nav__list > li > a { padding-inline: 8px; letter-spacing: .07em; }
}
.kb-main { padding-top: var(--header-h); }
.kb-has-hero .kb-main { padding-top: 0; }

.kb-brand { display: inline-flex; align-items: center; text-decoration: none; flex: none; }
.kb-brand__mark { display: block; width: auto; height: var(--logo); filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .4)); }

.kb-header__bar { display: flex; align-items: center; gap: 6px; margin-left: auto; }

.kb-nav { display: none; padding-left: 8px; }
.kb-nav__list { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.kb-nav__list > li { position: relative; }
.kb-nav__list a {
	display: flex; align-items: center; gap: 6px; padding: 10px 11px; white-space: nowrap;
	font: 600 .76rem/1 var(--f-head); letter-spacing: .1em; text-transform: uppercase;
	color: inherit; text-decoration: none; border-radius: 0;
	transition: color .2s, background-color .2s;
}
.kb-nav__list > li > a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.kb-nav__list > li:hover > a::after, .kb-nav__list > .current-menu-item > a::after, .kb-nav__list > .current-menu-ancestor > a::after { transform: scaleX(1); }
.kb-nav .menu-item-has-children > a::before {
	content: ""; order: 2; width: 6px; height: 6px; margin-left: 2px; border: solid currentColor; border-width: 0 1.5px 1.5px 0; transform: rotate(45deg) translateY(-2px); opacity: .7;
}
.kb-nav .sub-menu {
	position: absolute; top: calc(100% + 6px); left: 50%; min-width: 250px;
	list-style: none; margin: 0; padding: 10px;
	background: #EDE8D0; color: var(--charcoal); /* beige (owner, 26 Sept 2026) */
	border-radius: 0; box-shadow: var(--shadow-lg);
	opacity: 0; visibility: hidden; transform: translate(-50%, 8px);
	transition: opacity .2s var(--ease), transform .25s var(--ease), visibility .2s;
}
.kb-nav .sub-menu::before { content: ""; position: absolute; inset: -10px 0 auto; height: 10px; }
.kb-nav li:hover > .sub-menu, .kb-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.kb-nav .sub-menu a { padding: 11px 14px; border-radius: 0; letter-spacing: .06em; text-transform: none; font-size: .9rem; font-weight: 500; }
.kb-nav .sub-menu a:hover { background: #DCD3B2; color: var(--forest); } /* darker beige (owner, 26 Sept 2026) */

/* Home link: icon only in the desktop bar (label kept for screen readers), icon + label in the mobile menu. */
.kb-nav .kb-nav__home .kb-icon { width: 24px; height: 24px; }
.kb-nav .kb-nav__home-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.kb-mobile__list .kb-nav__home a { display: flex; align-items: center; gap: 12px; }
.kb-mobile__list .kb-nav__home .kb-icon { width: 26px; height: 26px; }

.kb-header__actions { display: flex; align-items: center; gap: 8px; }
.kb-nav + .kb-header__actions { margin-left: 8px; }
.kb-header__actions .kb-btn { display: none; min-height: 42px; padding: 10px 18px; }
.kb-header__wa, .kb-burger {
	display: inline-grid; place-items: center; width: 44px; height: 44px;
	border: 1px solid var(--line-light); border-radius: 0; background: transparent; color: inherit;
	transition: background-color .2s, color .2s, border-color .2s;
}
.kb-burger:hover { background: var(--ivory); color: var(--forest-deep); border-color: var(--ivory); }
.kb-header__wa { background: var(--wa); border-color: var(--wa); color: var(--on-accent); }
.kb-header__wa:hover { background: var(--wa-dark); border-color: var(--wa-dark); color: var(--white); }

@media (min-width: 720px) {
	.kb-header__actions .kb-btn { display: inline-flex; }
}
/* The full menu needs ~1265px beside the logo and buttons; below that the menu button is used. */
@media (min-width: 1280px) {
	.kb-nav { display: block; }
	.kb-burger { display: none; }
}

/* ---------- Mobile menu (native <dialog>) ---------- */

.kb-mobile {
	width: 100%; max-width: 100%; height: 100%; max-height: 100%; margin: 0; padding: 0; border: 0;
	background: var(--forest-deep); color: var(--ivory);
	display: flex; flex-direction: column; overflow-y: auto; overscroll-behavior: contain;
}
.kb-mobile:not([open]) { display: none; }
.kb-mobile[open] { animation: kb-menu-in .35s var(--ease); }
.kb-mobile::backdrop { background: rgba(4, 43, 29, .5); }
@keyframes kb-menu-in { from { opacity: 0; transform: translateY(-12px); } }
.kb-mobile__top { display: flex; align-items: center; justify-content: space-between; padding: 14px var(--gutter); border-bottom: 1px solid var(--line-light); }
.kb-brand--menu .kb-brand__mark { width: 64px; }
.kb-mobile__close { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--line-light); border-radius: 0; background: none; }
.kb-mobile__nav { flex: 1; padding: 12px var(--gutter) 24px; }
.kb-mobile__list, .kb-mobile__list .sub-menu { list-style: none; margin: 0; padding: 0; }
.kb-mobile__list > li { border-bottom: 1px solid var(--line-light); position: relative; }
.kb-mobile__list > li > a {
	display: block; padding: 18px 56px 18px 0;
	font: 600 clamp(1.4rem, 5.5vw, 1.9rem)/1.1 var(--f-head); letter-spacing: -.01em;
	color: var(--ivory); text-decoration: none;
}
.kb-mobile__list > li > a:hover { color: var(--gold); }
.kb-mobile__list .sub-menu { display: none; padding: 0 0 16px; }
.kb-mobile__list .is-open > .sub-menu { display: block; animation: kb-menu-in .25s var(--ease); }
.kb-mobile__list .sub-menu a { display: block; padding: 10px 0; color: var(--white); text-decoration: none; font-size: 1.05rem; }
.kb-submenu-toggle {
	position: absolute; right: 0; top: 12px; width: 44px; height: 44px; display: grid; place-items: center;
	background: none; border: 1px solid var(--line-light); border-radius: 0; color: var(--ivory);
	transition: transform .25s var(--ease);
}
.is-open > .kb-submenu-toggle { transform: rotate(180deg); }
.kb-mobile__foot { padding: 24px var(--gutter) max(32px, env(safe-area-inset-bottom)); display: grid; gap: 12px; background: rgba(4, 43, 29, .15); }
.kb-mobile__foot .kb-btn { width: 100%; }
.kb-mobile__foot .kb-btn--primary { --bg: var(--gold); --bd: var(--gold); --fg: var(--forest-deep); }
.kb-mobile__contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin: 8px 0 0; font-size: .92rem; }
.kb-mobile__contact a { color: var(--white); text-decoration: none; }
html.kb-lock { overflow: hidden; }

/* ---------- Hero ---------- */

.kb-hero { position: relative; isolation: isolate; display: flex; align-items: flex-end; color: var(--ivory); background: var(--forest-deep); overflow: hidden; }
.kb-hero--full { min-height: 100vh; min-height: 100svh; align-items: center; }
.kb-hero--tall { min-height: 78vh; min-height: 78svh; }
.kb-hero--short.kb-hero--image { min-height: 56vh; }
.kb-hero--plain { background: var(--ivory); color: var(--charcoal); padding-top: clamp(40px, 7vw, 96px); }
.kb-hero__media { position: absolute; inset: 0; z-index: -1; }
.kb-hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* Overlay: an even base tint plus darker edges where the text sits (left and bottom). */
.kb-hero__media::after {
	content: ""; position: absolute; inset: 0; z-index: 1;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .15) 30%, rgba(0, 0, 0, .25) 55%, rgba(0, 0, 0, .8) 100%),
		linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .1) 65%),
		rgba(0, 0, 0, .12);
}

/* Photo credit (Creative Commons attribution): small, bottom-right of the hero photo. */
.kb-hero__credit { position: absolute; right: var(--gutter); bottom: 10px; z-index: 2; max-width: min(90%, 520px); margin: 0; font-size: .7rem; line-height: 1.4; text-align: right; color: rgba(255, 255, 255, .75); }
.kb-hero__credit a { color: inherit; text-decoration: underline; text-decoration-color: rgba(255, 255, 255, .4); }
.kb-hero__credit a:hover { color: var(--ivory); }

/* Photo credits page table (scrolls sideways on phones rather than squeezing). */
.kb-credits-table { overflow-x: auto; margin: 1.5em 0; }
.kb-credits-table table { width: 100%; min-width: 620px; border-collapse: collapse; font-size: .9rem; }
.kb-credits-table th, .kb-credits-table td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.kb-credits-table th { font: 600 .72rem/1.3 var(--f-head); letter-spacing: .12em; text-transform: uppercase; color: var(--gold-ink); }
.kb-credits-table img { width: 72px; height: 54px; object-fit: cover; }

/* Per-slide captions: stacked in one grid cell so the height never jumps; the active one fades in. */
.kb-hero__captions { display: grid; }
/* Leaving captions stay visible while they fade out, then hide; the incoming one shows at once and fades in. */
.kb-hero__caption { grid-area: 1 / 1; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .8s var(--ease), transform .8s var(--ease), visibility 0s linear .8s; }
.kb-hero__caption.is-active { opacity: 1; visibility: visible; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease), visibility 0s linear 0s; }
.kb-hero__caption .kb-hero__title { margin-bottom: 20px; }

/* Home slideshow: crossfading slides with a slow zoom on the active one. */
/* Slideshow: slides move left (or right when going back) — no zoom; whole photo shown, never cropped
   (owner, 26 Sept 2026). Waiting slides sit off to the right; main.js adds is-back / is-leaving(-back). */
.kb-hero__slide { position: absolute; inset: 0; transform: translateX(100%); }
.kb-hero__slide.is-back { transform: translateX(-100%); }
.kb-hero__slide.is-active { transform: none; transition: transform 1s var(--ease); }
.kb-hero__slide.is-leaving { transform: translateX(-100%); transition: transform 1s var(--ease); }
.kb-hero__slide.is-leaving-back { transform: translateX(100%); transition: transform 1s var(--ease); }
/* Full width always (owner, 26 Sept 2026): the photo spans edge to edge, centred vertically — the sides
   are never cut; on wide screens the hero trims top/bottom, on tall phone screens bars show above/below. */
.kb-hero__slide img { position: absolute; left: 0; top: 50%; width: 100%; height: auto; max-width: none; object-fit: fill; transform: translateY(-50%); }
/* Bottom-left, clear of the WhatsApp button (bottom-right) and the scroll arrow (centre). */
.kb-hero__dots { position: absolute; left: max(var(--gutter), calc((100% - var(--max)) / 2)); bottom: 24px; z-index: 2; display: flex; gap: 6px; }
.kb-hero__dot { width: 28px; height: 20px; padding: 0; border: 0; background: none; cursor: pointer; position: relative; }
.kb-hero__dot::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: rgba(255, 255, 255, .45); transition: background-color .3s, height .3s; }
.kb-hero__dot.is-active::before, .kb-hero__dot:hover::before { background: var(--orange); height: 3px; }
@media (max-width: 719px) { .kb-hero__dots { bottom: 14px; } .kb-hero__dot { width: 20px; } }
/* Prev/next arrows: two stacked circles at the far right, vertically centred (owner's reference —
   a deliberate exception to the square-edges rule). On phones they sit small at the bottom right. */
.kb-hero__arrows { position: absolute; right: var(--gutter); top: 50%; z-index: 3; display: grid; gap: 16px; transform: translateY(-50%); }
.kb-hero__arrow {
	display: grid; place-items: center; width: 64px; height: 64px; padding: 0; border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, .6); background: rgba(0, 0, 0, .12); color: var(--white); cursor: pointer;
	backdrop-filter: blur(2px); transition: background-color .25s, border-color .25s, transform .25s var(--ease);
}
.kb-hero__arrow .kb-icon { width: 24px; height: 24px; }
.kb-hero__arrow:hover { background: var(--orange); border-color: var(--orange); color: var(--on-orange); }
.kb-hero__arrow:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
@media (max-width: 719px) {
	.kb-hero__arrows { top: auto; bottom: 10px; transform: none; grid-auto-flow: column; gap: 10px; }
	.kb-hero__arrow { width: 44px; height: 44px; }
	.kb-hero__arrow .kb-icon { width: 18px; height: 18px; }
}
.kb-hero__inner { position: relative; padding-top: calc(var(--plaque-h) + 36px); padding-bottom: clamp(48px, 8vw, 96px); }
/* Phones: the slider photo on its own at the top (below the menu bar, no dark overlay), with the dots and
   arrows on its bottom edge; headline, buttons and trip finder follow underneath (owner, 26 Sept 2026). */
@media (max-width: 719px) {
	.kb-hero.kb-hero--slider { flex-direction: column; align-items: stretch; min-height: 0; padding-top: var(--header-h); }
	.kb-hero--slider .kb-hero__media { position: relative; inset: auto; z-index: 0; flex: none; width: 100%; aspect-ratio: 3 / 2; overflow: hidden; }
	.kb-hero--slider .kb-hero__media::after { display: none; }
	.kb-hero--slider .kb-hero__inner { padding-top: 28px; }
	.kb-hero--slider .kb-hero__dots { top: calc(var(--header-h) + 100vw * 2 / 3 - 34px); bottom: auto; }
	.kb-hero--slider .kb-hero__arrows { top: calc(var(--header-h) + 100vw * 2 / 3 - 54px); bottom: auto; }
}
.kb-hero--plain .kb-hero__inner { padding-top: 0; padding-bottom: clamp(32px, 5vw, 64px); }
.kb-hero__title { font-size: clamp(2.3rem, 1.4rem + 4.4vw, 5rem); line-height: 1.04; margin: 0 0 20px; max-width: 16ch; }
.kb-hero--full .kb-hero__title { font-size: clamp(2.6rem, 1.4rem + 6vw, 6.4rem); max-width: 14ch; }
.kb-hero--image .kb-hero__title em { color: var(--sand); }
.kb-hero__text { font-size: clamp(1.05rem, 1rem + .4vw, 1.3rem); max-width: 54ch; margin: 0 0 32px; opacity: .92; }
.kb-hero--plain .kb-hero__text { color: var(--muted); opacity: 1; }
.kb-hero--image .kb-eyebrow { color: var(--sand); }
.kb-hero--image .kb-eyebrow::before { background: var(--gold); }
.kb-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.kb-hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; margin: -4px 0 28px; font-family: var(--f-head); }
.kb-hero__days { display: inline-flex; align-items: baseline; gap: 6px; padding: 8px 16px; border: 1px solid var(--orange); border-radius: 0; background: var(--orange); color: var(--on-orange); text-transform: uppercase; letter-spacing: .14em; font-size: .75rem; font-weight: 600; }
.kb-hero__days strong { font-size: 1.1rem; letter-spacing: 0; }
.kb-hero__route { font-size: .95rem; letter-spacing: .04em; opacity: .9; }
.kb-hero__scroll {
	position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
	display: grid; place-items: center; width: 44px; height: 64px; border: 1px solid var(--line-light); border-radius: 0; color: var(--ivory);
}
.kb-hero__scroll .kb-icon { width: 18px; animation: kb-bob 2.4s var(--ease) infinite; }
@keyframes kb-bob { 50% { transform: translateY(6px); } }

/* Slow cinematic zoom on the home hero, and a text entrance. */
.kb-hero--home .kb-hero__media:not(.kb-hero__slides) img { animation: kb-kenburns 22s ease-out both; transform-origin: 60% 40%; }
@keyframes kb-kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }
.kb-hero--image .kb-hero__inner > * { animation: kb-rise .9s var(--ease) both; }
.kb-hero--image .kb-hero__inner > :nth-child(2) { animation-delay: .08s; }
.kb-hero--image .kb-hero__inner > :nth-child(3) { animation-delay: .16s; }
.kb-hero--image .kb-hero__inner > :nth-child(4) { animation-delay: .24s; }
.kb-hero--image .kb-hero__inner > :nth-child(5) { animation-delay: .32s; }
@keyframes kb-rise { from { opacity: 0; transform: translateY(18px); } }

.kb-hero--sand .kb-hero__media::after { background: linear-gradient(180deg, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .65) 100%); }

/* Trip finder (home hero) */
.kb-btn--gold { --bg: var(--gold); --fg: var(--forest-deep); --bd: var(--gold); }
.kb-btn--gold:hover { --bg: var(--white); --fg: var(--forest-deep); }
.kb-finder {
	display: grid; gap: 8px; margin-top: 40px; max-width: 980px; padding: 10px;
	/* Slightly see-through, with a blur so the fields stay easy to read over the photo. */
	border-radius: 0; background: rgba(255, 255, 255, .8); color: var(--charcoal);
	-webkit-backdrop-filter: blur(10px) saturate(1.2); backdrop-filter: blur(10px) saturate(1.2);
	box-shadow: 0 30px 60px -30px rgba(4, 43, 29, .6);
	animation: kb-rise .9s .4s var(--ease) both;
}
.kb-finder__field { display: grid; gap: 2px; padding: 10px 16px; border-radius: 0; cursor: pointer; transition: background-color .2s; }
.kb-finder__field:hover, .kb-finder__field:focus-within { background: rgba(255, 255, 255, .7); }
.kb-finder__label { display: flex; align-items: center; gap: 6px; font: 600 .66rem/1 var(--f-head); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-ink); }
.kb-finder__label .kb-icon { width: 14px; height: 14px; }
.kb-finder select, .kb-finder input { width: 100%; border: 0; padding: 4px 0; background: transparent; font: 600 1rem/1.4 var(--f-head); color: var(--forest-deep); -webkit-appearance: none; appearance: none; }
.kb-finder select:focus, .kb-finder input:focus { outline: 0; }
.kb-finder .kb-btn { min-height: 56px; border-radius: 0; }
@media (min-width: 820px) {
	.kb-finder { grid-template-columns: 1.2fr 1fr 1fr auto; align-items: center; border-radius: 0; padding: 8px 8px 8px 12px; }
	.kb-finder__field { border-radius: 0; }
	.kb-finder__field + .kb-finder__field { position: relative; }
	.kb-finder__field + .kb-finder__field::before { content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--line); }
	.kb-finder .kb-btn { border-radius: 0; padding-inline: 28px; }
}
/* "When" calendar pop-up (main.js). Opens above the finder — the hero clips anything below it. */
.kb-finder { position: relative; }
.kb-finder input[data-kb-dates] { cursor: pointer; }
.kb-cal {
	position: absolute; bottom: calc(100% + 10px); left: 0; right: 0; z-index: 20;
	padding: 16px; background: var(--white); color: var(--forest-deep); box-shadow: var(--shadow-lg);
	font-family: var(--f-head); text-align: left; animation: kb-rise .25s var(--ease) both;
}
.kb-cal[hidden] { display: none; }
@media (min-width: 820px) { .kb-cal { right: auto; width: 330px; } }
.kb-cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.kb-cal__month { margin: 0; font-weight: 700; font-size: 1rem; }
.kb-cal__nav { width: 36px; height: 36px; padding: 0; border: 1px solid var(--line); background: none; color: inherit; font-size: 1.3rem; line-height: 1; cursor: pointer; }
.kb-cal__nav:hover:not(:disabled) { background: var(--forest); border-color: var(--forest); color: var(--white); }
.kb-cal__nav:disabled { opacity: .3; cursor: default; }
.kb-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.kb-cal__dow { padding: 6px 0; text-align: center; font-size: .66rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.kb-cal__day { aspect-ratio: 1; min-height: 36px; padding: 0; border: 0; background: none; color: inherit; font: 500 .9rem/1 var(--f-head); cursor: pointer; }
.kb-cal__day:hover:not(:disabled) { background: rgba(4, 43, 29, .1); }
.kb-cal__day:disabled { color: var(--sand); cursor: default; }
.kb-cal__day.is-today { box-shadow: inset 0 0 0 1px var(--gold); }
.kb-cal__day.is-range { background: rgba(4, 43, 29, .1); }
.kb-cal__day.is-start, .kb-cal__day.is-end { background: var(--forest); color: var(--white); font-weight: 700; }
.kb-cal__day:focus-visible, .kb-cal__nav:focus-visible, .kb-cal__btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 1px; }
.kb-cal__foot { display: flex; align-items: center; gap: 8px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.kb-cal__hint { flex: 1; margin: 0; font-size: .78rem; color: var(--muted); }
.kb-cal__btn { padding: 9px 14px; border: 1px solid var(--line); border-radius: var(--radius-btn); background: none; color: inherit; font: 600 .72rem/1 var(--f-head); letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.kb-cal__btn--done { background: var(--forest); border-color: var(--forest); color: var(--white); }
.kb-hero--home .kb-hero__scroll { display: none; }
@media (min-width: 1000px) and (min-height: 860px) { .kb-hero--home .kb-hero__scroll { display: grid; bottom: 16px; } }
@media (max-height: 760px) and (min-width: 820px) { .kb-hero--home .kb-hero__title { font-size: clamp(2.4rem, 1.2rem + 4.4vw, 4.6rem); } }

/* How it works */
.kb-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; counter-reset: none; }
.kb-steps li { position: relative; padding: 32px 28px; border-radius: 0; background: var(--white); border: 1px solid var(--line); }
.kb-steps__num { display: block; margin-bottom: 18px; font: 400 2.4rem/1 var(--f-accent); letter-spacing: -.03em; color: var(--gold); }
.kb-steps h3 { font-size: 1.2rem; margin-bottom: 10px; }
.kb-steps p { margin: 0; color: var(--muted); }
.kb-steps__cta { margin: 32px 0 0; }
@media (min-width: 900px) {
	.kb-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
	.kb-steps li:not(:last-child)::after { content: ""; position: absolute; top: 58px; right: -24px; width: 24px; border-top: 1px dashed var(--gold); }
}

/* ---------- Breadcrumbs ---------- */

.kb-breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px 10px; margin: 0 0 24px; padding: 0; font: 500 .78rem/1.4 var(--f-head); letter-spacing: .06em; }
.kb-breadcrumbs li + li::before { content: "/"; margin-right: 10px; opacity: .45; }
.kb-breadcrumbs a { color: inherit; opacity: .78; text-decoration: none; }
.kb-breadcrumbs a:hover { opacity: 1; text-decoration: underline; }
.kb-breadcrumbs [aria-current] { opacity: .6; }

/* ---------- Sections ---------- */

.kb-section { padding-block: var(--section); }
.kb-section--tight { padding-block: clamp(48px, 6vw, 88px); }
.kb-section--white { background: var(--grey); }   /* light grey, so cream cards stand out */
.kb-section--forest { background: var(--forest); color: var(--ivory); }
.kb-section--forest .kb-eyebrow { color: var(--white); }
.kb-section--forest .kb-section-title em { color: var(--white); }
.kb-section--forest .kb-section-lead { color: rgba(255, 255, 255, .78); }

/* Intro */
.kb-intro__grid { display: grid; gap: 32px; }
.kb-intro .kb-section-title { font-size: clamp(2rem, 1.3rem + 3vw, 3.6rem); }
.kb-pillars { list-style: none; margin: 40px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 20px; }
.kb-pillars li { display: grid; gap: 4px; align-content: start; padding-top: 18px; border-top: 1px solid var(--line); }
.kb-intro__media { margin: 32px 0 0; overflow: hidden; }
.kb-intro__media img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.kb-pillars .kb-icon { width: 30px; height: 30px; color: var(--gold); margin-bottom: 8px; }
.kb-pillars strong { font: 600 1rem/1.3 var(--f-head); }
.kb-pillars span { font-size: .92rem; color: var(--muted); }
.kb-pillars--stack { grid-template-columns: 1fr; margin: 0; }
@media (min-width: 900px) {
	.kb-intro__grid { grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
	.kb-pillars { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.kb-pillars--stack { grid-template-columns: 1fr; }
}

/* Experiences — editorial image cards */
/* Phones: cards stacked one per row, never a sideways carousel (owner, 26 Sept 2026). */
.kb-experiences { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
.kb-experience {
	position: relative; display: block; aspect-ratio: 3 / 4.2; border-radius: 0; overflow: hidden;
	color: var(--ivory); text-decoration: none; scroll-snap-align: start; background: var(--forest);
}
.kb-experience img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.kb-experience::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, .8) 100%); transition: opacity .4s; }
.kb-experience:hover { color: var(--ivory); }
.kb-experience:hover img { transform: scale(1.06); }
.kb-experience__body { position: absolute; inset: auto 0 0; z-index: 1; display: grid; gap: 6px; padding: 28px; }
.kb-experience__num { font: 500 .8rem/1 var(--f-head); letter-spacing: .2em; color: var(--white); }
.kb-experience__title { font: 600 clamp(1.6rem, 1.2rem + 1.2vw, 2.1rem)/1.1 var(--f-head); letter-spacing: .02em; text-transform: uppercase; }
.kb-experience__text { font-size: .95rem; opacity: .88; max-width: 28ch; }
.kb-experience__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; font: 600 .75rem/1 var(--f-head); letter-spacing: .16em; text-transform: uppercase; color: var(--white); }
.kb-experience__more .kb-icon { width: 16px; transition: transform .3s var(--ease); }
.kb-experience:hover .kb-experience__more .kb-icon { transform: translateX(4px); }
@media (max-width: 719px) { .kb-experience { aspect-ratio: 4 / 3; } } /* Stacked on phones: landscape, so the list stays short. */
@media (min-width: 720px) {
	.kb-experiences { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (min-width: 1100px) {
	.kb-experiences { grid-template-columns: repeat(4, 1fr); }
	.kb-experience:nth-child(even) { transform: translateY(48px); }
	.kb-experiences { padding-bottom: 48px; }
}

/* ---------- Safari card ---------- */

.kb-trip-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); }
/* position: relative keeps the card's hidden screen-reader labels inside it; without it they escaped the
   phone carousels and widened the whole page (phones zoomed out / scrolled sideways). */
.kb-trip-card {
	position: relative; display: flex; flex-direction: column; background: var(--white); border-radius: 0; overflow: hidden;
	box-shadow: 0 1px 2px rgba(4, 43, 29, .05); border: 1px solid rgba(4, 43, 29, .06);
	transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.kb-trip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.kb-trip-card__media { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand-soft); }
.kb-trip-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.kb-trip-card:hover .kb-trip-card__media img { transform: scale(1.06); }
.kb-trip-card__days {
	position: absolute; left: 16px; bottom: 16px; display: grid; justify-items: center; min-width: 58px; padding: 8px 10px;
	border-radius: 0; background: var(--orange); color: var(--on-orange);
	font: 600 .62rem/1 var(--f-head); letter-spacing: .18em; text-transform: uppercase;
}
.kb-trip-card__days strong { font-size: 1.45rem; letter-spacing: -.02em; margin-bottom: 2px; }
.kb-trip-card__body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 18px; }
.kb-trip-card__kicker { margin: 0 0 8px; font: 600 .7rem/1.3 var(--f-head); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-ink); }
.kb-trip-card__title { font-size: 1.2rem; line-height: 1.3; margin: 0 0 12px; }
.kb-trip-card__title a { color: var(--charcoal); text-decoration: none; background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat; transition: background-size .4s var(--ease); }
.kb-trip-card__title a:hover { background-size: 100% 1px; color: var(--forest); }
.kb-trip-card__route, .kb-trip-card__excerpt { display: flex; gap: 8px; margin: 0 0 18px; font-size: .9rem; color: var(--muted); line-height: 1.5; }
.kb-trip-card__route .kb-icon { color: var(--savannah); width: 18px; margin-top: 2px; }
.kb-trip-card__foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.kb-trip-card__price { font: 600 .85rem/1.2 var(--f-head); color: var(--forest); }
.kb-trip-card__actions { display: flex; align-items: center; gap: 12px; }
.kb-trip-card__actions .kb-icon-btn { width: 38px; height: 38px; }
.kb-icon-btn--whatsapp { background: var(--wa); border-color: var(--wa); color: var(--on-accent); }
.kb-icon-btn--whatsapp:hover { background: var(--wa-dark); border-color: var(--wa-dark); color: var(--white); }
.kb-trip-card__actions .kb-link { font-size: .72rem; }

/* .kb-rail (safari rows on the homepage): no sideways carousel on phones any more — it is the normal
   .kb-trip-grid, which is one card per row on small screens (owner, 26 Sept 2026). */

/* ---------- Destination cards ---------- */

.kb-place-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); }
.kb-entry > .kb-place-grid { margin-block: 32px; }
.kb-place-card a { position: relative; display: block; height: 100%; min-height: 340px; border-radius: 0; overflow: hidden; color: var(--ivory); text-decoration: none; background: var(--forest); isolation: isolate; }
.kb-place-card__media { position: absolute; inset: 0; z-index: -1; }
.kb-place-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.kb-place-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .78) 100%); }
.kb-place-card a:hover img { transform: scale(1.06); }
.kb-place-card__body { position: absolute; inset: auto 0 0; padding: 24px; }
.kb-place-card__kicker { margin: 0 0 6px; font: 600 .68rem/1 var(--f-head); letter-spacing: .2em; text-transform: uppercase; color: var(--white); }
.kb-place-card__title { margin: 0; font-size: 1.35rem; }
.kb-place-card__tagline { margin: 8px 0 0; font-family: var(--f-accent); font-style: normal; font-size: .98rem; line-height: 1.4; opacity: .92; }
.kb-place-card__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font: 600 .7rem/1 var(--f-head); letter-spacing: .16em; text-transform: uppercase; color: var(--white); max-height: 0; opacity: 0; overflow: hidden; transition: max-height .35s var(--ease), opacity .3s; }
.kb-place-card a:hover .kb-place-card__more, .kb-place-card a:focus-visible .kb-place-card__more { max-height: 30px; opacity: 1; }
.kb-place-card__more .kb-icon { width: 16px; }
@media (hover: none) { .kb-place-card__more { max-height: 30px; opacity: 1; } }
@media (min-width: 1000px) {
	.kb-place-grid:not(.kb-place-grid--even) > .kb-place-card--featured { grid-column: span 2; }
	.kb-place-card--featured .kb-place-card__title { font-size: 2rem; }
}

/* Featured destination (editorial, ~65% image) */
.kb-feature-dest { display: grid; gap: 28px; align-items: center; margin-bottom: 24px; }
.kb-feature-dest__media { display: block; border-radius: 0; overflow: hidden; aspect-ratio: 16 / 11; }
.kb-feature-dest__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.kb-feature-dest:hover .kb-feature-dest__media img { transform: scale(1.04); }
.kb-feature-dest__title { font-size: clamp(2.2rem, 1.4rem + 3.5vw, 4.4rem); text-transform: uppercase; letter-spacing: .02em; line-height: 1; margin: 0 0 12px; }
.kb-feature-dest__tag { font-family: var(--f-accent); font-style: normal; font-size: clamp(1.15rem, 1rem + .5vw, 1.45rem); color: var(--savannah); line-height: 1.3; margin-bottom: 18px; }
.kb-feature-dest__body > p:not([class]) { color: var(--muted); }
.kb-dest-mosaic { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.kb-dest-mosaic .kb-place-card a { min-height: 240px; }
/* Small phones: the two-column mosaic cards are narrow, so tighter padding and smaller type. */
@media (max-width: 479px) {
	.kb-dest-mosaic .kb-place-card__body { padding: 14px; }
	.kb-dest-mosaic .kb-place-card__title { font-size: 1.02rem; overflow-wrap: anywhere; hyphens: auto; }
	.kb-dest-mosaic .kb-place-card__tagline { font-size: .78rem; }
}
@media (min-width: 900px) {
	.kb-feature-dest { grid-template-columns: 1.85fr 1fr; gap: 56px; }
	.kb-dest-mosaic { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	/* All four cards share one height and top line. */
	.kb-dest-mosaic .kb-place-card a { min-height: 400px; height: 100%; }
}

/* ---------- Statement: This is Tanzania ---------- */

.kb-statement { position: relative; isolation: isolate; min-height: 88vh; display: grid; align-items: center; color: var(--ivory); text-align: center; overflow: hidden; background: var(--forest-deep); }
.kb-statement__media { position: absolute; inset: 0; z-index: -1; }
.kb-statement__media img { width: 100%; height: 100%; object-fit: cover; }
.kb-statement__media::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(0, 0, 0, .3), rgba(0, 0, 0, .7)); }
/* Video version: random Tanzania clips under an even neutral-grey overlay (owner's request) so the text reads. */
.kb-statement__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .9s ease; }
.kb-statement__video.is-active { opacity: 1; }
.kb-statement--video .kb-statement__media::after { background: rgba(45, 45, 45, .55); }
.kb-statement--video .kb-statement__title, .kb-statement--video .kb-statement__text, .kb-statement--video .kb-eyebrow { text-shadow: 0 2px 18px rgba(0, 0, 0, .45); }
.kb-statement__inner { padding-block: var(--section); display: grid; justify-items: center; }
.kb-statement .kb-eyebrow { color: var(--white); }
.kb-statement__title { font-size: clamp(2.8rem, 1.4rem + 7vw, 7.5rem); line-height: .95; text-transform: uppercase; letter-spacing: .04em; margin: 0 0 24px; }
.kb-statement__text { max-width: 52ch; font-size: clamp(1.02rem, .95rem + .35vw, 1.22rem); font-family: var(--f-accent); font-style: normal; margin-bottom: 32px; }

/* ---------- Kilimanjaro ---------- */

.kb-kili__grid { display: grid; gap: 40px; align-items: center; }
.kb-kili__media { border-radius: 0; overflow: hidden; aspect-ratio: 4 / 5; background: var(--forest); }
.kb-kili__media img { width: 100%; height: 100%; object-fit: cover; }
.kb-kili__sub { font-family: var(--f-accent); font-style: normal; font-size: 1.25rem; color: var(--savannah); margin: 8px 0 20px; }
.kb-kili__body > p:not([class]) { color: var(--muted); }
.kb-kili__body .kb-btn { margin-top: 28px; }
@media (min-width: 900px) { .kb-kili__grid { grid-template-columns: 5fr 6fr; gap: 80px; } }

.kb-routes { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.kb-route a {
	display: grid; gap: 10px; height: 100%; padding: 24px; border-radius: 0; text-decoration: none;
	background: rgba(255, 255, 255, .06); border: 1px solid var(--line-light); color: var(--ivory);
	transition: background-color .3s, transform .3s var(--ease), border-color .3s;
}
.kb-route a:hover { background: rgba(255, 255, 255, .12); border-color: var(--gold); transform: translateY(-4px); color: var(--ivory); }
.kb-route__name { display: flex; align-items: center; gap: 10px; font: 600 1.2rem/1.2 var(--f-head); }
.kb-route__name .kb-icon { color: var(--gold); }
.kb-route__desc { font-size: .95rem; opacity: .82; }
.kb-route__meta { display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; font: 600 .7rem/1 var(--f-head); letter-spacing: .16em; text-transform: uppercase; color: var(--white); }
.kb-route__meta .kb-icon { width: 16px; }
.kb-routes--compact { grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr)); gap: 10px; }
.kb-routes--compact .kb-route a { padding: 14px 16px; background: var(--white); border-color: var(--line); color: var(--charcoal); gap: 6px; }
.kb-routes--compact .kb-route a:hover { border-color: var(--gold); background: var(--white); color: var(--charcoal); }
.kb-routes--compact .kb-route__name { font-size: 1rem; }
.kb-routes--compact .kb-route__meta { color: var(--gold-ink); font-size: .62rem; }

/* ---------- Why us ---------- */

.kb-why__grid { display: grid; gap: 48px; }
/* The photo is shown whole (no fixed crop); on desktop the cards stretch to end at its base. */
.kb-why__intro { display: flex; flex-direction: column; }
.kb-why__media { margin-top: 32px; overflow: hidden; }
.kb-why__media img { width: 100%; height: auto; }
.kb-why__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); border-radius: 0; overflow: hidden; }
.kb-why__list li { padding: 32px 28px; background: var(--forest); }
.kb-why__list .kb-icon { width: 32px; height: 32px; color: var(--gold); margin-bottom: 18px; }
.kb-why__list h3 { font-size: 1.15rem; margin-bottom: 10px; }
.kb-why__list p { margin: 0; color: rgba(255, 255, 255, .78); font-size: .95rem; }
@media (min-width: 720px) { .kb-why__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
	/* 5:7 makes the photo's natural (3:4) height and the cards' height come out nearly equal. */
	.kb-why__grid { grid-template-columns: 5fr 7fr; gap: 64px; align-items: stretch; }
	.kb-why__list { grid-auto-rows: 1fr; }
	/* If the cards end up taller than the photo, the photo grows to their base (cover, centred). */
	.kb-why__media { flex: 1 1 auto; display: flex; }
	.kb-why__media img { flex: 1; height: 100%; object-fit: cover; }
}

/* ---------- Reviews ---------- */

.kb-reviews { background: var(--white); overflow: hidden; }
.kb-slider-nav { display: flex; gap: 10px; }
.kb-reviews__track { display: grid; grid-auto-flow: column; grid-auto-columns: min(620px, 88%); gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 12px; scrollbar-width: none; }
.kb-reviews__track::-webkit-scrollbar { display: none; }
.kb-review { margin: 0; padding: clamp(28px, 4vw, 48px); border-radius: 0; background: var(--ivory); scroll-snap-align: start; display: flex; flex-direction: column; }
.kb-review__mark { width: 40px; height: 40px; color: var(--gold); margin-bottom: 16px; }
.kb-review__quote { margin: 0 0 28px; font-family: var(--f-accent); font-style: normal; font-weight: 400; font-size: clamp(1.1rem, .98rem + .55vw, 1.45rem); line-height: 1.5; color: var(--forest-deep); }
.kb-review__quote p { margin: 0; }
.kb-review__by { margin-top: auto; display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--line); }
.kb-review__name { font: 600 .95rem/1.2 var(--f-head); }
.kb-review__source { font-size: .8rem; color: var(--muted); }
.kb-review__source::before { content: "· "; }
.kb-reviews__rating { display: flex; align-items: center; gap: 8px; margin: 16px 0 0; font-weight: 600; color: var(--forest); }
.kb-reviews__rating .kb-icon { color: var(--gold); }
.kb-reviews__more { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; margin: 32px 0 0; color: var(--muted); }
.kb-reviews__site { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--charcoal); text-decoration: none; transition: transform .2s var(--ease); }
.kb-reviews__site:hover { transform: translateY(-2px); text-decoration: underline; }
.kb-reviews__site .kb-brand-icon { width: 26px; height: 26px; flex: none; }

/* ---------- Zanzibar (sand mood) ---------- */

.kb-zanzibar, .kb-sand { background: linear-gradient(180deg, var(--ivory) 0%, var(--sand-soft) 40%, var(--ivory) 100%); }
.kb-zanzibar__hero { display: grid; gap: 32px; align-items: center; margin-bottom: 48px; }
.kb-zanzibar__media { border-radius: 0; overflow: hidden; aspect-ratio: 4 / 3; }
.kb-zanzibar__media img { width: 100%; height: 100%; object-fit: cover; }
.kb-zanzibar .kb-section-title em, .kb-sand .kb-section-title em { color: var(--gold-ink); }
@media (min-width: 900px) {
	.kb-zanzibar__hero { grid-template-columns: 7fr 5fr; gap: 72px; }
	.kb-zanzibar__media { aspect-ratio: 5 / 4; border-radius: 0; }
}
/* Once the safari cards below sit three across, use their grid: the photo spans two
   columns so its right edge lines up with the second card. */
@media (min-width: 1100px) {
	.kb-zanzibar__hero { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 24px; }
	.kb-zanzibar__media { grid-column: span 2; aspect-ratio: 16 / 11; }
	.kb-zanzibar__body { padding-left: 40px; }
}

/* ---------- East Africa ---------- */

.kb-east { display: grid; gap: 16px; }
.kb-east__card { position: relative; isolation: isolate; display: block; min-height: 380px; border-radius: 0; overflow: hidden; color: var(--ivory); text-decoration: none; background: var(--forest); }
.kb-east__card img { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.kb-east__card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .8)); }
.kb-east__card:hover { color: var(--ivory); }
.kb-east__card:hover img { transform: scale(1.05); }
.kb-east__body { position: absolute; inset: auto 0 0; display: grid; gap: 8px; padding: 28px; }
.kb-east__name { font: 600 2rem/1 var(--f-head); text-transform: uppercase; letter-spacing: .04em; }
.kb-east__text { opacity: .85; font-size: .95rem; }
.kb-east__count { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; font: 600 .72rem/1 var(--f-head); letter-spacing: .16em; text-transform: uppercase; color: var(--white); }
.kb-east__count .kb-icon { width: 16px; }
@media (min-width: 800px) { .kb-east { grid-template-columns: repeat(3, 1fr); } .kb-east__card { min-height: 480px; } }

/* ---------- Travel guide cards ---------- */

.kb-post-grid { display: grid; gap: 32px 24px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.kb-post-card { display: flex; flex-direction: column; }
.kb-post-card__media { display: block; aspect-ratio: 3 / 2; border-radius: 0; overflow: hidden; margin-bottom: 18px; background: var(--sand-soft); }
.kb-post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.kb-post-card:hover .kb-post-card__media img { transform: scale(1.05); }
.kb-post-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; margin: 0 0 10px; font: 500 .75rem/1.4 var(--f-head); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.kb-post-card__cat { color: var(--gold-ink); font-weight: 600; text-decoration: none; }
.kb-post-card__title { font-size: 1.3rem; line-height: 1.3; margin: 0 0 10px; }
.kb-post-card__title a { color: var(--charcoal); text-decoration: none; }
.kb-post-card__title a:hover { color: var(--forest); text-decoration: underline; }
.kb-post-card__excerpt { color: var(--muted); }
.kb-post-card__date { font-size: .82rem; color: var(--muted); }
@media (min-width: 900px) {
	.kb-post-grid > .kb-post-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
	.kb-post-card--featured .kb-post-card__media { margin: 0; aspect-ratio: 16 / 10; }
	.kb-post-card--featured .kb-post-card__title { font-size: clamp(1.8rem, 1.2rem + 1.6vw, 2.6rem); }
}
/* When the cards below sit three across, the featured photo spans two of their columns
   so its right edge lines up with the second card. */
@media (min-width: 1100px) {
	.kb-post-grid > .kb-post-card--featured { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 24px; }
	.kb-post-card--featured .kb-post-card__media { grid-column: span 2; }
	.kb-post-card--featured .kb-post-card__body { padding-left: 40px; }
}

.kb-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }

/* ---------- CTA ---------- */

.kb-cta { position: relative; isolation: isolate; overflow: hidden; background: var(--forest-deep); color: var(--ivory); text-align: center; }
.kb-cta__media { position: absolute; inset: 0; z-index: -1; }
.kb-cta__media img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.kb-cta__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, .85)); }
/* Video version: the clip at full strength under a slight neutral grey overlay. */
.kb-cta__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.kb-cta--video .kb-cta__media::after { background: rgba(120, 117, 105, .5); }
.kb-cta--video .kb-cta__title, .kb-cta--video .kb-cta__text { text-shadow: 0 2px 18px rgba(0, 0, 0, .4); }
.kb-cta__inner { padding-block: clamp(80px, 11vw, 150px); display: grid; justify-items: center; }
.kb-cta .kb-eyebrow { color: var(--white); }
.kb-cta__title { font-size: clamp(2.4rem, 1.4rem + 5vw, 5.4rem); line-height: 1; text-transform: uppercase; letter-spacing: .02em; margin: 0 0 20px; }
.kb-cta__title em { color: var(--gold); text-transform: none; }
.kb-cta__text { max-width: 52ch; font-size: 1.15rem; opacity: .88; margin-bottom: 36px; }
.kb-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ---------- Footer ---------- */

.kb-footer { position: relative; isolation: isolate; overflow: hidden; background: var(--forest-deep); color: rgba(255, 255, 255, .82); padding: clamp(64px, 8vw, 110px) 0 0; }
/* Subtle African (mudcloth-style) pattern — only on the brand band (footer top down to the line under
   the name), full width; the rest of the footer is solid green. */
.kb-footer__brand::before {
	content: ""; position: absolute; z-index: -1; pointer-events: none; opacity: .07;
	top: calc(-1 * clamp(64px, 8vw, 110px)); bottom: 0; left: calc(50% - 50vw); right: calc(50% - 50vw);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120' fill='none' stroke='%23fff' stroke-width='1.6' stroke-linejoin='round'%3E%3Cpath d='M0 14l10-9 10 9 10-9 10 9 10-9 10 9 10-9 10 9 10-9 10 9 10-9 10 9'/%3E%3Cpath d='M30 36l12 14-12 14-12-14z M90 36l12 14-12 14-12-14z'/%3E%3Ccircle cx='30' cy='50' r='2.4' fill='%23fff'/%3E%3Ccircle cx='90' cy='50' r='2.4' fill='%23fff'/%3E%3Cpath d='M60 40v20 M50 50h20 M0 40v20 M-10 50h20 M120 40v20 M110 50h20'/%3E%3Cpath d='M0 94l10-14 10 14z M20 80l10 14 10-14z M40 94l10-14 10 14z M60 80l10 14 10-14z M80 94l10-14 10 14z M100 80l10 14 10-14z'/%3E%3Cpath d='M0 108h120' stroke-dasharray='4 6'/%3E%3C/svg%3E");
	background-size: 120px 120px;
}
.kb-footer__brand { position: relative; display: flex; flex-wrap: wrap; align-items: center; gap: 24px 40px; padding-bottom: 48px; margin-bottom: 48px; border-bottom: 1px solid var(--line-light); }
.kb-footer__logo { display: block; flex: none; }
.kb-footer__logo img { width: clamp(110px, 12vw, 160px); height: auto; }
.kb-footer__name { margin: 0; font: 700 clamp(2.2rem, 1.2rem + 4.5vw, 5.2rem)/1 var(--f-head); letter-spacing: .02em; text-transform: uppercase; color: var(--ivory); }
.kb-footer__name em { color: var(--gold); text-transform: none; }
.kb-footer__tag { margin: 16px 0 0; font: 600 .78rem/1.5 var(--f-head); letter-spacing: .2em; text-transform: uppercase; color: var(--white); }
.kb-footer__grid { display: grid; gap: 40px 24px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.kb-footer__title { font: 600 .75rem/1 var(--f-head); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 0 0 20px; }
.kb-footer__links, .kb-footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.kb-footer a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.kb-footer a:hover { color: var(--ivory); text-decoration: underline; }
.kb-footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.kb-footer__contact .kb-icon { width: 18px; margin-top: 4px; color: var(--white); }
.kb-footer__col--contact, .kb-footer__col--map { grid-column: 1 / -1; }
.kb-footer__map iframe { display: block; width: 100%; height: 220px; border: 0; filter: grayscale(.35) contrast(1.05); }
.kb-footer__contact .kb-icon--wa, .kb-icon--wa { color: var(--wa); }
/* Social: full-colour brand icons (their own colours, set in inc/icons.php), no background behind them. */
.kb-social { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 24px; }
.kb-social .kb-social__link { display: grid; place-items: center; width: 34px; height: 34px; transition: transform .2s var(--ease), filter .2s; }
.kb-social .kb-social__link:hover { transform: translateY(-2px); filter: brightness(1.1); text-decoration: none; }
.kb-social .kb-brand-icon { width: 30px; height: 30px; overflow: visible; }
/* Bottom bar: copyright · visit counter · legal links · website credit. */
.kb-footer__bottom {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 32px;
	margin-top: 64px; padding-block: 24px; border-top: 1px solid var(--line-light); font-size: .88rem;
	/* Micro-footer: full-width bar in a darker green than the footer (owner, 26 Sept 2026). */
	background: #021A11; box-shadow: 0 0 0 100vmax #021A11; clip-path: inset(0 -100vmax);
}
.kb-footer__bottom p { margin: 0; }
.kb-footer__visits { display: inline-flex; align-items: center; gap: 8px; }
.kb-footer__visits .kb-icon { width: 20px; height: 20px; color: var(--gold); }
.kb-footer__visits strong { color: var(--ivory); font-weight: 700; font-variant-numeric: tabular-nums; }
.kb-footer__legal { display: flex; flex-wrap: wrap; gap: 8px 24px; }
/* Developer CTA on one line, right-aligned and small: "Request a website quote or Chat with the Developer"
   (left-aligned when the bar stacks on phones). */
.kb-footer__credit { font-size: .78rem; text-align: right; }
.kb-footer__credit-or { margin: 0 4px; color: rgba(255, 255, 255, .6); }
@media (max-width: 719px) { .kb-footer__credit { text-align: left; } }
.kb-footer .kb-footer__credit a { color: #5CE65C; font-weight: 700; } /* Light green (owner, 26 Sept 2026). */
.kb-footer .kb-footer__credit .kb-footer__credit-quote { letter-spacing: .1em; text-transform: uppercase; font-size: .7rem; }
.kb-footer .kb-footer__credit a:hover { color: var(--orange-light); }
@media (max-width: 719px) { .kb-footer__bottom { flex-direction: column; align-items: flex-start; } }

/* Back to top (bottom-right; the WhatsApp button sits bottom-left). */
.kb-to-top {
	position: fixed; right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); z-index: 90;
	display: grid; place-items: center; width: 52px; height: 52px;
	background: var(--orange); color: var(--on-orange); box-shadow: 0 6px 20px rgba(4, 43, 29, .25);
	transform: translateY(120%); opacity: 0; pointer-events: none;
	transition: transform .45s var(--ease), opacity .3s, background-color .2s;
}
.kb-to-top.is-visible { transform: none; opacity: 1; pointer-events: auto; }
.kb-to-top:hover { background: var(--orange-dark); color: var(--white); }
.kb-to-top .kb-icon { width: 22px; height: 22px; }
@media (min-width: 720px) { .kb-to-top { right: 24px; bottom: 24px; } }
@media (min-width: 900px) {
	.kb-footer__grid { grid-template-columns: repeat(3, 1fr) 1.3fr; }
	.kb-footer__col--contact { grid-column: auto; }
}
/* Wide screens: five columns, the office map last (owner, 26 Sept 2026). Below this the map spans a full row. */
@media (min-width: 1100px) {
	.kb-footer__grid { grid-template-columns: repeat(3, 1fr) 1.3fr 1.3fr; }
	.kb-footer__col--map { grid-column: auto; }
	.kb-footer__map iframe { height: 200px; }
}
.kb-contact-cards + .kb-contact .kb-social, .kb-contact__map .kb-social { margin-top: 16px; }

/* WhatsApp float: the familiar round green WhatsApp button (the one deliberate circle). */
.kb-wa-float {
	position: fixed; left: 16px; bottom: max(16px, env(safe-area-inset-bottom)); z-index: 90;
	display: grid; place-items: center; width: 60px; height: 60px;
	border-radius: 50%; background: var(--wa); color: var(--on-accent); text-decoration: none;
	box-shadow: 0 6px 20px rgba(4, 43, 29, .28);
	transform: translateY(120%); opacity: 0; transition: transform .45s var(--ease), opacity .3s, background-color .2s;
}
.kb-wa-float.is-visible { transform: none; opacity: 1; }
.kb-wa-float .kb-icon { width: 32px; height: 32px; }
.kb-wa-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.kb-wa-float:hover { background: var(--wa-dark); color: var(--white); }
@media (min-width: 720px) { .kb-wa-float { left: 24px; bottom: 24px; } }

/* ---------- Safari page ---------- */

.kb-subnav { position: sticky; top: var(--header-h); z-index: 50; background: var(--white); border-bottom: 1px solid var(--line); transition: top .35s var(--ease); }
.kb-subnav__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.kb-subnav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.kb-subnav ul::-webkit-scrollbar { display: none; }
.kb-subnav a { display: block; padding: 18px 12px; white-space: nowrap; font: 600 .74rem/1 var(--f-head); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); text-decoration: none; border-bottom: 2px solid transparent; }
.kb-subnav a:hover, .kb-subnav a.is-active { color: var(--forest); border-color: var(--gold); }
.kb-subnav .kb-btn { display: none; min-height: 40px; padding: 8px 18px; }
@media (min-width: 900px) { .kb-subnav .kb-btn { display: inline-flex; } }

.kb-trip { display: grid; gap: 48px; padding-block: clamp(40px, 6vw, 80px); }
.kb-trip__main { min-width: 0; }
.kb-trip__section { padding-block: 40px; border-top: 1px solid var(--line); }
.kb-trip__section:first-of-type { border-top: 0; }
.kb-trip__heading { font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem); margin: 0 0 24px; }
.kb-trip__heading-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.kb-trip__aside { display: none; }
@media (min-width: 1000px) {
	.kb-trip { grid-template-columns: minmax(0, 1fr) 340px; gap: 72px; }
	.kb-trip__aside { display: block; }
	.kb-trip__aside > * { position: sticky; top: calc(var(--header-h) + 80px); }
}

.kb-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; margin: 0 0 16px; background: var(--line); border: 1px solid var(--line); border-radius: 0; overflow: hidden; }
.kb-facts > div { padding: 18px 20px; background: var(--white); }
.kb-facts dt { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font: 600 .68rem/1 var(--f-head); letter-spacing: .16em; text-transform: uppercase; color: var(--gold-ink); }
.kb-facts dt .kb-icon { width: 16px; }
.kb-facts dd { margin: 0; font: 600 .98rem/1.35 var(--f-head); color: var(--forest-deep); }
.kb-facts--stack { grid-template-columns: 1fr; margin-bottom: 20px; }

.kb-route-strip { margin-top: 36px; padding: 28px; border-radius: 0; background: var(--forest); color: var(--ivory); }
.kb-route-strip .kb-eyebrow { color: var(--white); }
.kb-route-strip ol { list-style: none; margin: 0; padding: 0; display: flex; gap: 0; overflow-x: auto; scrollbar-width: thin; padding-bottom: 6px; }
.kb-route-strip li { position: relative; flex: 1 0 120px; display: grid; justify-items: start; gap: 12px; padding-right: 16px; }
.kb-route-strip li::before { content: ""; position: absolute; top: 15px; left: 32px; right: 0; border-top: 1px dashed rgba(255, 255, 255, .4); }
.kb-route-strip li:last-child::before { display: none; }
.kb-route-strip__dot { position: relative; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--gold); color: var(--forest-deep); font: 700 .8rem/1 var(--f-head); }
.kb-route-strip__name { font: 600 .9rem/1.3 var(--f-head); }

/* Itinerary timeline */
.kb-timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.kb-timeline::before { content: ""; position: absolute; left: 27px; top: 28px; bottom: 28px; width: 1px; background: linear-gradient(var(--gold), var(--sand)); }
.kb-day { position: relative; margin-bottom: 12px; }
.kb-day details { border-radius: 0; background: var(--white); border: 1px solid var(--line); transition: box-shadow .3s var(--ease), border-color .3s; }
.kb-day details[open] { box-shadow: var(--shadow); border-color: transparent; }
.kb-day summary { list-style: none; display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 16px; padding: 14px 20px 14px 0; cursor: pointer; }
.kb-day summary::-webkit-details-marker { display: none; }
.kb-day__num { position: relative; z-index: 1; display: grid; place-items: center; width: 56px; height: 56px; margin-left: -1px; border-radius: 50%; background: var(--forest); color: var(--ivory); font: 700 1.05rem/1 var(--f-head); }
.kb-day__num small { font-size: .52rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; opacity: .75; margin-bottom: -8px; }
details[open] .kb-day__num { background: var(--gold); color: var(--forest-deep); }
.kb-day__title { font: 600 1.05rem/1.35 var(--f-head); }
.kb-day__toggle { width: 22px; color: var(--savannah); transition: transform .3s var(--ease); }
details[open] .kb-day__toggle { transform: rotate(45deg); }
.kb-day__body { display: grid; gap: 20px; padding: 0 24px 24px 72px; animation: kb-rise .35s var(--ease); }
.kb-day__media { margin: 0; border-radius: 0; overflow: hidden; aspect-ratio: 16 / 10; }
.kb-day__media img { width: 100%; height: 100%; object-fit: cover; }
.kb-day__info { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.kb-day__info li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 0; background: var(--ivory); font-size: .88rem; }
.kb-day__info .kb-icon { width: 18px; color: var(--savannah); }
@media (max-width: 599px) {
	.kb-day__body { padding-left: 20px; }
}
@media (min-width: 900px) {
	.kb-day__body { grid-template-columns: 240px 1fr; align-items: start; }
	.kb-day__body > :not(.kb-day__media) { grid-column: 2; }
	.kb-day__media { grid-row: span 2; }
}

.kb-incl { display: grid; gap: 24px; }
.kb-incl__col { padding: 28px; border-radius: 0; background: var(--white); }
.kb-incl__col h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 16px; }
.kb-incl__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.kb-incl__col li { display: flex; gap: 10px; font-size: .95rem; }
.kb-incl__col .kb-icon { width: 18px; margin-top: 4px; }
.kb-incl__col--yes .kb-icon { color: var(--savannah); }
.kb-incl__col--no .kb-icon { color: var(--orange); }
@media (min-width: 720px) { .kb-incl { grid-template-columns: 1fr 1fr; } }

.kb-gallery { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); }
.kb-gallery__item { display: block; border-radius: 0; overflow: hidden; aspect-ratio: 4 / 3; }
.kb-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.kb-gallery__item:hover img { transform: scale(1.06); }
.kb-gallery__item--lead { grid-column: span 2; aspect-ratio: 16 / 9; }
@media (min-width: 800px) { .kb-gallery { grid-template-columns: repeat(4, 1fr); } .kb-gallery__item--lead { grid-row: span 2; aspect-ratio: auto; } }
.kb-lightbox { width: 100%; height: 100%; max-width: 100%; max-height: 100%; margin: 0; border: 0; padding: 0; background: rgba(0, 0, 0, .94); }
.kb-lightbox[open] { display: grid; place-items: center; }
.kb-lightbox img { max-width: min(92vw, 1400px); max-height: 86vh; object-fit: contain; border-radius: 0; }
.kb-lightbox__btn { position: fixed; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 0; border: 1px solid var(--line-light); background: rgba(0, 0, 0, .35); color: var(--ivory); }
.kb-lightbox__close { top: 16px; right: 16px; }
.kb-lightbox__prev { left: 16px; top: 50%; }
.kb-lightbox__next { right: 16px; top: 50%; }

.kb-faq { display: grid; gap: 10px; }
.kb-faq__item { border-radius: 0; background: var(--white); border: 1px solid var(--line); }
.kb-faq__item summary { list-style: none; display: flex; justify-content: space-between; gap: 16px; padding: 18px 22px; cursor: pointer; font: 600 1rem/1.4 var(--f-head); }
.kb-faq__item summary::-webkit-details-marker { display: none; }
.kb-faq__item summary .kb-icon { color: var(--savannah); transition: transform .3s var(--ease); }
.kb-faq__item[open] summary .kb-icon { transform: rotate(45deg); }
.kb-faq__answer { padding: 0 22px 20px; color: var(--muted); animation: kb-rise .3s var(--ease); }

.kb-book-card { display: grid; gap: 12px; padding: 28px; border-radius: 0; background: var(--white); box-shadow: var(--shadow); }
.kb-book-card__label { margin: 0; font: 600 .7rem/1 var(--f-head); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-ink); }
.kb-book-card__price { margin: 0; font: 600 1.5rem/1.2 var(--f-head); color: var(--forest-deep); }
.kb-book-card__note { margin: 0; font-size: .9rem; color: var(--muted); }
.kb-book-card__line { display: flex; align-items: center; gap: 8px; margin: 0 0 6px; padding-bottom: 14px; border-bottom: 1px solid var(--line); font-size: .92rem; }
.kb-book-card__line .kb-icon { color: var(--savannah); width: 18px; }
.kb-book-card .kb-btn { width: 100%; }
.kb-book-card__plan { font-size: .85rem; text-align: center; }

.kb-trip__enquiry { background: var(--white); border-radius: 0; padding: clamp(24px, 4vw, 48px) !important; margin-top: 24px; border-top: 0 !important; }

/* Destination guide page */
.kb-place { display: grid; gap: 48px; padding-block: clamp(48px, 6vw, 88px); }
.kb-place__list { margin-top: 48px; }
.kb-tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.kb-tags li { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 0; background: var(--white); border: 1px solid var(--line); font-size: .92rem; }
.kb-tags .kb-icon { width: 16px; color: var(--gold); }
@media (min-width: 1000px) {
	.kb-place { grid-template-columns: minmax(0, 1fr) 340px; gap: 80px; }
	.kb-place__aside > .kb-book-card { position: sticky; top: calc(var(--header-h) + 24px); }
}
.kb-region + .kb-region { margin-top: 56px; }
.kb-region__title { font-size: 1.1rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 20px; }
.kb-region__title a { color: var(--forest); text-decoration: none; }
.kb-hub-intro { display: grid; gap: 40px; }
@media (min-width: 900px) { .kb-hub-intro { grid-template-columns: 1.6fr 1fr; gap: 80px; align-items: start; } }

/* ---------- Forms ---------- */

.kb-form { display: grid; gap: 4px; }
.kb-field { display: grid; gap: 8px; margin: 0 0 16px; }
.kb-field label { font: 600 .78rem/1.2 var(--f-head); letter-spacing: .06em; color: var(--forest-deep); }
.kb-field input, .kb-field select, .kb-field textarea, .kb-search input {
	width: 100%; min-height: 50px; padding: 12px 16px;
	border: 1px solid rgba(4, 43, 29, .2); border-radius: 0; background: var(--white); color: var(--charcoal);
	font: 400 1rem/1.4 var(--f-body);
	transition: border-color .2s, box-shadow .2s;
}
.kb-field textarea { min-height: 120px; resize: vertical; }
.kb-field input:focus, .kb-field select:focus, .kb-field textarea:focus, .kb-search input:focus { outline: 0; border-color: var(--savannah); box-shadow: 0 0 0 4px rgba(194, 176, 103, .25); }
.kb-field-row { display: grid; gap: 0 16px; }
@media (min-width: 600px) { .kb-field-row { grid-template-columns: 1fr 1fr; } }
.kb-form__note { margin: 12px 0 0; font-size: .82rem; color: var(--muted); }

.kb-choices { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.kb-choices--stack { display: grid; }
.kb-choices--cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 700px) { .kb-choices--cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.kb-chip, .kb-choice { position: relative; cursor: pointer; }
.kb-chip input, .kb-choice input { position: absolute; opacity: 0; pointer-events: none; }
.kb-chip span, a.kb-chip span {
	display: inline-flex; align-items: center; min-height: 44px; padding: 10px 18px; border-radius: 0;
	border: 1px solid rgba(4, 43, 29, .2); background: var(--white); font: 500 .92rem/1.2 var(--f-head); color: var(--charcoal);
	transition: background-color .2s, color .2s, border-color .2s;
}
a.kb-chip { text-decoration: none; }
.kb-chip--wide span { width: 100%; border-radius: 0; }
.kb-chip:hover span { border-color: var(--savannah); }
.kb-chip input:checked + span, a.kb-chip.is-active span { background: var(--forest); color: var(--ivory); border-color: var(--forest); }
.kb-chip input:focus-visible + span, .kb-choice input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.kb-choice span {
	display: grid; justify-items: start; gap: 10px; height: 100%; padding: 18px; border-radius: 0;
	border: 1px solid rgba(4, 43, 29, .18); background: var(--white); font: 600 .95rem/1.3 var(--f-head);
	transition: border-color .2s, background-color .2s, color .2s;
}
.kb-choice .kb-icon { width: 28px; height: 28px; color: var(--gold); }
.kb-choice:hover span { border-color: var(--savannah); }
.kb-choice input:checked + span { background: var(--forest); border-color: var(--forest); color: var(--ivory); }
.kb-choice input:checked + span .kb-icon { color: var(--white); }

.kb-notice { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: 0; margin-bottom: 20px; }
.kb-notice--ok { background: var(--mint); color: var(--forest-deep); }
.kb-notice--ok .kb-icon { color: var(--savannah); margin-top: 3px; }
.kb-notice--error { background: var(--ivory); color: var(--charcoal); border-left: 4px solid var(--orange); }

/* Multi-step planner */
.kb-plan__progress { list-style: none; margin: 0 0 8px; padding: 0; display: none; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.kb-plan.is-stepped .kb-plan__progress { display: grid; }
.kb-plan__progress li { display: grid; gap: 8px; }
.kb-plan__progress li::before { content: ""; height: 3px; border-radius: 0; background: var(--line); transition: background-color .3s; }
.kb-plan__progress li.is-done::before, .kb-plan__progress li.is-current::before { background: var(--gold); }
.kb-plan__progress span { display: none; }
.kb-plan__progress em { font: 600 .62rem/1 var(--f-head); font-style: normal; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.kb-plan__progress .is-current em { color: var(--forest); }
@media (max-width: 520px) { .kb-plan__progress em { display: none; } }
.kb-plan__count { margin: 0 0 24px; font-size: .82rem; color: var(--muted); }
.kb-plan__trip { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: 0; background: var(--ivory); }
.kb-plan__trip .kb-icon { color: var(--gold); }
.kb-step { border: 0; margin: 0 0 32px; padding: 0; min-width: 0; }
.kb-step__title { padding: 0; margin: 0 0 8px; font: 600 clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem)/1.15 var(--f-head); letter-spacing: -.015em; color: var(--forest-deep); }
.kb-step__hint { color: var(--muted); margin: 0 0 20px; }
.kb-step__title + * { margin-top: 20px; }
.kb-plan.is-stepped .kb-step { display: none; }
.kb-plan.is-stepped .kb-step.is-current { display: block; animation: kb-rise .4s var(--ease); }
.kb-plan__nav { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line); }
.kb-plan__nav [data-kb-submit], .kb-plan__nav [data-kb-next] { margin-left: auto; }

.kb-plan-page { display: grid; min-height: calc(100vh - var(--header-h)); }
.kb-plan-page__aside { position: relative; isolation: isolate; color: var(--ivory); background: var(--forest-deep); overflow: hidden; }
.kb-plan-page__aside > img { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.kb-plan-page__aside-body { padding: clamp(40px, 6vw, 80px) var(--gutter); }
.kb-plan-page__aside .kb-eyebrow { color: var(--white); }
.kb-plan-page__title { font-size: clamp(2.2rem, 1.4rem + 3vw, 3.8rem); line-height: 1.05; margin: 0 0 20px; }
.kb-plan-page__title em { color: var(--white); }
.kb-plan-page__intro { opacity: .9; font-size: 1.05rem; }
.kb-plan-page__points { list-style: none; margin: 28px 0; padding: 0; display: grid; gap: 12px; }
.kb-plan-page__points li { display: flex; gap: 10px; align-items: center; }
.kb-plan-page__points .kb-icon { color: var(--gold); }
.kb-plan-page__wa { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.kb-plan-page__wa .kb-btn { text-decoration: none; }
.kb-plan-page__form { padding: clamp(32px, 5vw, 72px) var(--gutter); background: var(--ivory); }
.kb-plan-page__form .kb-breadcrumbs { color: var(--muted); }
@media (min-width: 1000px) {
	.kb-plan-page { grid-template-columns: 5fr 7fr; }
	.kb-plan-page__aside-body { position: sticky; top: var(--header-h); padding: 80px 64px; }
	.kb-plan-page__form { padding: 72px clamp(40px, 6vw, 96px); }
	.kb-plan-page__form > * { max-width: 760px; }
}

/* Contact */
.kb-contact-cards { list-style: none; margin: 0 0 56px; padding: 0; display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.kb-contact-cards a { display: grid; gap: 6px; height: 100%; padding: 28px; border-radius: 0; background: var(--white); color: var(--charcoal); text-decoration: none; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s; }
.kb-contact-cards a:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: var(--charcoal); }
.kb-contact-cards .kb-icon { width: 28px; height: 28px; color: var(--gold); margin-bottom: 10px; }
.kb-contact-cards__label { font: 600 .7rem/1 var(--f-head); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-ink); }
.kb-contact-cards strong { font: 600 1.05rem/1.35 var(--f-head); color: var(--forest-deep); word-break: break-word; }
.kb-contact-cards small { color: var(--muted); }
.kb-contact { display: grid; gap: 40px; }
.kb-contact__form { padding: clamp(24px, 4vw, 48px); border-radius: 0; background: var(--white); }
.kb-contact__map iframe { width: 100%; min-height: 380px; height: 100%; border: 0; border-radius: 0; filter: grayscale(.35) contrast(1.05); }
@media (min-width: 1000px) { .kb-contact { grid-template-columns: 7fr 5fr; } }

/* Archive filters */
.kb-filters { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 16px 24px; margin-bottom: 32px; }
.kb-filters__group { display: flex; flex-wrap: wrap; gap: 8px; }
.kb-filters__select { margin: 0; min-width: 220px; }
.kb-results { font: 600 .75rem/1 var(--f-head); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.kb-archive-intro { max-width: var(--narrow); margin-bottom: 40px; }
.kb-empty { padding: 48px; text-align: center; border-radius: 0; background: var(--white); }

.nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 48px; }
.nav-links .page-numbers { display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 14px; border-radius: 0; border: 1px solid var(--line); text-decoration: none; font: 600 .85rem/1 var(--f-head); color: var(--forest); background: var(--white); }
.nav-links .current { background: var(--forest); color: var(--ivory); border-color: var(--forest); }

.kb-search { display: flex; gap: 10px; margin-bottom: 32px; }
.kb-search-results { display: grid; gap: 24px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }

/* ---------- Content (blocks from the editor / migrated pages) ---------- */

.kb-entry { padding-block: clamp(48px, 7vw, 96px); }
.kb-entry--builder { padding: 0; }
.kb-entry > * { max-width: var(--narrow); margin-inline: auto; padding-inline: var(--gutter); box-sizing: content-box; }
.kb-entry > .wp-block-media-text, .kb-entry > .kb-features, .kb-entry > .kb-trip-grid, .kb-entry > .kb-place-grid, .kb-entry > .alignwide, .kb-entry > .wp-block-image.size-large { max-width: var(--max); }
.kb-entry > .alignfull { max-width: none; padding-inline: 0; }
.kb-entry--builder > * { max-width: none; padding-inline: 0; }

.kb-prose, .kb-entry { font-size: 1.05rem; }
.kb-prose--lead > p:first-child, .kb-entry > p:first-child:not(.kb-eyebrow) { font-size: clamp(1.1rem, 1rem + .45vw, 1.35rem); line-height: 1.65; color: var(--forest-deep); }
.kb-entry h2, .kb-prose h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.5rem); margin-top: 1.6em; }
.kb-entry h3, .kb-prose h3 { font-size: 1.3rem; margin-top: 1.4em; }
.kb-entry > h2:first-child, .kb-entry > .kb-eyebrow + h2 { margin-top: 0; }
.kb-entry ul:not([class*="kb-"]), .kb-prose ul { padding-left: 1.2em; }
.kb-entry li, .kb-prose li { margin-bottom: .4em; }
.kb-entry li::marker, .kb-prose li::marker { color: var(--gold); }
.kb-entry blockquote, .kb-prose blockquote { margin: 2em auto; padding: 0 0 0 24px; border-left: 2px solid var(--gold); font-family: var(--f-accent); font-style: normal; font-size: 1.25rem; line-height: 1.5; color: var(--forest-deep); }
.kb-entry img, .kb-prose img { border-radius: 0; }
.kb-entry .wp-block-image { margin-block: 2em; }
.kb-entry p.kb-eyebrow { display: flex; margin-top: 3em; margin-bottom: 12px; }
.kb-entry .kb-eyebrow + h2 { margin-top: 0; }

.kb-entry .wp-block-media-text { gap: 0; margin-block: clamp(48px, 7vw, 96px); align-items: center; }
.kb-entry .wp-block-media-text__media img { border-radius: 0; aspect-ratio: 4 / 3; object-fit: cover; }
.kb-entry .wp-block-media-text__content { padding: 28px 0 0; }
.kb-entry .wp-block-media-text__content > :first-child { margin-top: 0; }
.kb-entry .wp-block-media-text__content h2 { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem); }
@media (min-width: 782px) {
	.kb-entry .wp-block-media-text { grid-template-columns: 55% auto; }
	.kb-entry .wp-block-media-text.has-media-on-the-right { grid-template-columns: auto 55%; }
	.kb-entry .wp-block-media-text__content { padding: 0 0 0 clamp(32px, 5vw, 72px); }
	.kb-entry .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content { padding: 0 clamp(32px, 5vw, 72px) 0 0; }
}

/* Classic themes wrap group blocks in __inner-container; the grid goes on whichever holds the items. */
.kb-entry .kb-features, .kb-entry .kb-features > .wp-block-group__inner-container { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.kb-entry .kb-features { margin-block: 32px 64px; }
.kb-entry .kb-features:has(> .wp-block-group__inner-container) { display: block; }
.kb-entry .kb-feature { padding: 28px; border-radius: 0; background: var(--white); border: 1px solid var(--line); position: relative; }
.kb-entry .kb-feature::before { content: ""; display: block; width: 32px; height: 2px; background: var(--gold); margin-bottom: 18px; }
.kb-entry .kb-feature h3 { margin: 0 0 8px; font-size: 1.1rem; }
.kb-entry .kb-feature p { margin: 0; color: var(--muted); font-size: .95rem; }

.wp-block-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-block: 24px; }
.wp-block-button__link, .wp-element-button {
	display: inline-flex; align-items: center; min-height: 48px; padding: 12px 24px; border-radius: 0;
	background: var(--forest); color: var(--ivory); text-decoration: none;
	font: 600 .8rem/1 var(--f-head); letter-spacing: .12em; text-transform: uppercase;
	transition: background-color .25s, transform .25s var(--ease);
}
.wp-block-button__link:hover { background: var(--forest-deep); color: var(--ivory); transform: translateY(-2px); }
.wp-block-button.is-style-outline .wp-block-button__link { background: transparent; color: var(--forest); border: 1px solid currentColor; }

/* Article */
.kb-article__head { padding: calc(var(--header-h) * 0 + clamp(40px, 6vw, 80px)) 0 32px; }
.kb-article__title { font-size: clamp(2.1rem, 1.3rem + 3.4vw, 4rem); line-height: 1.08; margin: 12px 0 20px; }
.kb-article__standfirst { font-size: 1.25rem; color: var(--muted); }
.kb-article__media { margin: 0 auto; }
.kb-article__media img { width: 100%; border-radius: 0; aspect-ratio: 16 / 9; object-fit: cover; }
.kb-article__foot { padding-bottom: 64px; }

/* ---------- Scroll reveal (only when JS is running) ---------- */

.kb-js [data-kb-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.kb-js [data-kb-reveal].is-visible { opacity: 1; transform: none; }
@media (min-width: 1100px) {
	.kb-js .kb-experience[data-kb-reveal]:nth-child(even).is-visible { transform: translateY(48px); }
	.kb-js .kb-experience[data-kb-reveal]:nth-child(even) { transform: translateY(76px); }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
	.kb-js [data-kb-reveal] { opacity: 1; transform: none; }
	.kb-hero--home .kb-hero__media img { animation: none; }
}

@media print {
	.kb-header, .kb-wa-float, .kb-to-top, .kb-subnav, .kb-cta, .kb-footer, .kb-trip__aside { display: none !important; }
	.kb-hero { min-height: 0; color: var(--charcoal); background: none; }
	.kb-hero__media { display: none; }
	details { display: block; }
}

/* ---------- Buttons: slightly rounded ----------
   Everything else stays square; every clickable button/CTA gets --radius-btn. */
.kb-btn, .kb-finder .kb-btn, .kb-icon-btn, .kb-header__wa, .kb-burger, .kb-mobile__close, .kb-submenu-toggle,
.kb-to-top, .kb-lightbox__btn, .nav-links .page-numbers, .wp-block-button__link, .wp-element-button { border-radius: var(--radius-btn); }
/* Block-editor content with the Orange background swatch gets white text too. */
.has-orange-background-color { color: var(--on-orange); }
