/**
 * Katenju inner pages: light, spacious layout (adventure, leisure, transport, photography, game drives).
 * Pairs with body.adventure-page, body.corporate-tour, body.katenju-game-page, or body.contact-tour.
 */
@import url("katenju-info-strip.css");

:root {
	--kj-page-bg: #eef3f0;
	--kj-page-bg-top: #f7faf8;
	--kj-card: #ffffff;
	--kj-border: rgba(27, 67, 50, 0.12);
	--kj-shadow: 0 14px 44px rgba(15, 35, 26, 0.08);
	--kj-heading: #1b4332;
	--kj-text: #3d5249;
	--kj-muted: #5a6d66;
	--kj-accent: #2d6a4f;
	--kj-accent-soft: rgba(45, 106, 79, 0.12);
}

/* --- Page canvas (not dark) --- */
body.adventure-page,
body.corporate-tour,
body.katenju-game-page,
body.contact-tour {
	background: var(--kj-page-bg);
}

body.adventure-page .page-wrapper,
body.corporate-tour .page-wrapper,
body.katenju-game-page .page-wrapper,
body.contact-tour .page-wrapper {
	background:
		radial-gradient(1100px 500px at 10% 0%, rgba(45, 106, 79, 0.07), transparent 58%),
		radial-gradient(900px 420px at 92% 6%, rgba(184, 149, 108, 0.1), transparent 55%),
		linear-gradient(180deg, var(--kj-page-bg-top) 0%, var(--kj-page-bg) 38%, #e8f0ec 100%);
}

body.adventure-page .sidebar-page-container,
body.corporate-tour .sidebar-page-container,
body.katenju-game-page .sidebar-page-container {
	padding: clamp(2.75rem, 5.5vw, 4.5rem) 0 clamp(3rem, 5vw, 4.25rem);
}

/* --- Adventure + Leisure (adventure-shell) ---
   Match home: content uses full .auto-container width (theme max-width ~1320px), not a nested narrow column. */
body.adventure-page .adventure-shell {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0;
}

body.adventure-page .adventure-hero {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: var(--kj-card);
	border: 1px solid var(--kj-border);
	box-shadow: var(--kj-shadow);
}

body.adventure-page .adventure-hero .bg {
	min-height: clamp(220px, 34vw, 380px);
	height: auto;
	background-size: cover;
	background-position: center 42%;
}

body.adventure-page .adventure-hero .content {
	padding: clamp(1.25rem, 3vw, 1.85rem) clamp(1.25rem, 4vw, 2.25rem) clamp(1.4rem, 3vw, 2rem);
}

body.adventure-page .adventure-hero .kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--kj-accent-soft);
	border: 1px solid rgba(45, 106, 79, 0.22);
	color: var(--kj-accent);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

body.adventure-page .adventure-hero h2 {
	margin: 14px 0 12px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--kj-heading);
	font-size: clamp(1.65rem, 4.2vw, 2.45rem);
	line-height: 1.12;
}

body.adventure-page .adventure-hero p {
	color: var(--kj-muted);
	font-size: clamp(0.95rem, 1.8vw, 1.05rem);
	line-height: 1.75;
	margin-bottom: 0;
	max-width: min(52rem, 100%);
}

body.adventure-page .adventure-grid {
	margin-top: clamp(1.5rem, 3.5vw, 2.25rem);
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(16px, 2.2vw, 24px);
}

body.adventure-page .adventure-card {
	grid-column: span 6;
	background: var(--kj-card);
	border: 1px solid var(--kj-border);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--kj-shadow);
}

body.adventure-page .adventure-card .thumb {
	height: clamp(168px, 22vw, 204px);
	background-size: cover;
	background-position: center;
}

body.adventure-page .adventure-card .body {
	padding: clamp(1rem, 2.5vw, 1.35rem) clamp(1.1rem, 3vw, 1.5rem) clamp(1.2rem, 2.5vw, 1.55rem);
}

body.adventure-page .adventure-card h3 {
	color: var(--kj-heading);
	font-weight: 800;
	font-size: clamp(1.05rem, 2.2vw, 1.2rem);
	margin: 0 0 10px;
	letter-spacing: -0.02em;
	line-height: 1.3;
}

body.adventure-page .adventure-card h3 a {
	color: inherit;
	text-decoration: none;
}

body.adventure-page .adventure-card h3 a:hover {
	color: var(--kj-accent);
}

body.adventure-page .adventure-card p {
	color: var(--kj-muted);
	margin-bottom: 0;
	line-height: 1.72;
	font-size: 0.95rem;
}

@media (max-width: 991px) {
	body.adventure-page .adventure-card {
		grid-column: span 12;
	}

	body.adventure-page .adventure-hero h2 {
		font-size: clamp(1.5rem, 5vw, 2rem);
	}
}

@media (max-width: 575px) {
	body.adventure-page .adventure-hero .content {
		padding: 1.1rem 1rem 1.25rem;
	}

	body.adventure-page .adventure-hero .bg {
		min-height: 200px;
	}
}

/* --- Transport + Photography (tour-shell / tour-hero) --- */
body.corporate-tour .tour-shell {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0;
}

body.corporate-tour .tour-hero {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--kj-border);
	background: var(--kj-card);
	box-shadow: var(--kj-shadow);
}

body.corporate-tour .tour-hero .bg {
	height: clamp(240px, 38vw, 340px);
	background-size: cover;
	background-position: center;
}

body.corporate-tour .tour-hero .content {
	padding: clamp(1.2rem, 3vw, 1.75rem) clamp(1.2rem, 4vw, 2.25rem) clamp(1.35rem, 3vw, 2rem);
}

body.corporate-tour.katenju-transport-page .tour-hero .content {
	position: relative;
	z-index: 2;
}

body.corporate-tour .tour-hero .kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--kj-accent-soft);
	border: 1px solid rgba(45, 106, 79, 0.22);
	color: var(--kj-accent);
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

body.corporate-tour .tour-hero h2 {
	margin: 14px 0 12px;
	color: var(--kj-heading);
	font-weight: 800;
	letter-spacing: -0.02em;
	font-size: clamp(1.55rem, 4vw, 2.25rem);
	line-height: 1.15;
}

body.corporate-tour .tour-hero p {
	margin-bottom: 0;
	color: var(--kj-muted);
	line-height: 1.75;
	font-size: clamp(0.95rem, 1.8vw, 1.05rem);
	max-width: min(52rem, 100%);
}

body.corporate-tour .tour-grid {
	margin-top: clamp(1.35rem, 3vw, 2rem);
	display: grid;
	gap: clamp(16px, 2.2vw, 22px);
}

/* Transport: 12-col row; Photography: fluid card grid */
body.corporate-tour:not(.katenju-photo-page) .tour-grid {
	grid-template-columns: repeat(12, 1fr);
}

body.corporate-tour.katenju-photo-page .tour-grid {
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
	gap: clamp(18px, 2.4vw, 26px);
}

/* Photography: four offering cards, full content width */
body.corporate-tour.katenju-photo-page .tour-grid.tour-grid--photo-condensed {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
	gap: clamp(18px, 2.4vw, 24px);
}

@media (min-width: 992px) {
	body.corporate-tour.katenju-photo-page .tour-grid.tour-grid--photo-condensed {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1200px) {
	body.corporate-tour.katenju-photo-page .tour-grid.tour-grid--photo-condensed {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

body.corporate-tour.katenju-photo-page .tour-grid.tour-grid--photo-condensed .tour-card .thumb {
	height: clamp(150px, 20vw, 200px);
	min-height: 130px;
}

body.corporate-tour.katenju-photo-page .kj-photo-offerings-intro {
	text-align: center;
	margin: clamp(0.25rem, 1vw, 0.5rem) 0 clamp(1rem, 2.5vw, 1.35rem);
	max-width: none;
	width: 100%;
	padding: 0;
}

body.corporate-tour.katenju-photo-page .kj-photo-offerings-intro__title {
	margin: 0 0 8px;
	font-size: clamp(1.05rem, 2.4vw, 1.22rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--kj-heading);
}

body.corporate-tour.katenju-photo-page .kj-photo-offerings-intro__lede {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--kj-muted);
}

/* Photography offering cards: even padding and aligned detail lists */
body.corporate-tour.katenju-photo-page .tour-grid--photo-condensed .tour-card {
	height: 100%;
}

body.corporate-tour.katenju-photo-page .tour-grid--photo-condensed .tour-card .body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 12.5rem;
	padding: 1.15rem 1.2rem 1.2rem;
}

body.corporate-tour.katenju-photo-page .tour-grid--photo-condensed .tour-card .tag {
	margin: 0 0 10px;
	padding: 4px 10px;
	font-size: 10px;
	align-self: flex-start;
}

body.corporate-tour.katenju-photo-page .tour-grid--photo-condensed .tour-card h3 {
	margin: 0 0 8px;
	font-size: clamp(0.98rem, 1.65vw, 1.1rem);
	line-height: 1.28;
}

body.corporate-tour.katenju-photo-page .tour-grid--photo-condensed .tour-card p {
	margin: 0 0 12px;
	line-height: 1.55;
	font-size: 0.875rem;
	color: var(--kj-muted);
}

body.corporate-tour.katenju-photo-page .kj-photo-card-list {
	margin: auto 0 0;
	padding: 12px 0 0;
	border-top: 1px solid var(--kj-border);
	list-style: none;
	color: var(--kj-text);
	font-size: 0.84rem;
	line-height: 1.5;
}

body.corporate-tour.katenju-photo-page .kj-photo-card-list li {
	position: relative;
	margin: 0;
	padding-left: 1rem;
}

body.corporate-tour.katenju-photo-page .kj-photo-card-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--kj-accent);
}

body.corporate-tour.katenju-photo-page .kj-photo-card-list li + li {
	margin-top: 6px;
}

body.corporate-tour .tour-card {
	background: var(--kj-card);
	border: 1px solid var(--kj-border);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--kj-shadow);
	display: flex;
	flex-direction: column;
}

body.corporate-tour:not(.katenju-photo-page) .tour-card {
	grid-column: span 6;
}

body.corporate-tour.katenju-photo-page .tour-card {
	grid-column: auto;
}

body.corporate-tour .tour-card .thumb {
	height: clamp(158px, 22vw, 188px);
	background-size: cover;
	background-position: center;
	flex-shrink: 0;
}

/* Transport: balanced layout, crisp imagery */
body.corporate-tour.katenju-transport-page .katenju-skip {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	z-index: 10000;
}

body.corporate-tour.katenju-transport-page .katenju-skip:focus {
	left: 12px;
	top: 12px;
	width: auto;
	height: auto;
	padding: 10px 16px;
	background: #1b4332;
	color: #fff;
	border-radius: 8px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
}

body.corporate-tour.katenju-transport-page .main-header .header-upper .logo-box .logo img,
body.corporate-tour.katenju-transport-page .main-header .sticky-header .logo img {
	max-width: min(180px, 34vw);
	max-height: 60px;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: left center;
	display: block;
}

body.corporate-tour.katenju-transport-page .main-header .sticky-header .logo img {
	max-height: 48px;
	max-width: min(160px, 40vw);
}

body.corporate-tour.katenju-transport-page .main-footer.style-two .footer-widget.logo-widget .logo img {
	max-width: min(88px, 28vw);
	max-height: 72px;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: left center;
	display: block;
}

body.corporate-tour.katenju-transport-page .tour-hero .bg {
	height: clamp(220px, 36vw, 300px);
	position: relative;
}

body.corporate-tour.katenju-transport-page .tour-hero .bg.tour-hero__bg--plain {
	background-image: linear-gradient(135deg, #0f2e22 0%, #1b4332 42%, #2d6a4f 100%) !important;
	background-size: cover;
	background-position: center;
}

body.corporate-tour.katenju-transport-page .tour-hero .bg::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 32%;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(to top, rgba(15, 35, 26, 0.3) 0%, transparent 100%);
}

body.corporate-tour.katenju-transport-page .tour-hero h1 {
	margin: 14px 0 12px;
	color: var(--kj-heading);
	font-weight: 800;
	letter-spacing: -0.02em;
	font-size: clamp(1.55rem, 4vw, 2.25rem);
	line-height: 1.15;
}

body.corporate-tour.katenju-transport-page .kj-transport-offerings-intro {
	text-align: center;
	margin: clamp(0.25rem, 1vw, 0.5rem) 0 clamp(1rem, 2.5vw, 1.35rem);
}

body.corporate-tour.katenju-transport-page .kj-transport-offerings-intro__title {
	margin: 0 0 8px;
	font-size: clamp(1.05rem, 2.4vw, 1.22rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--kj-heading);
}

body.corporate-tour.katenju-transport-page .kj-transport-offerings-intro__lede {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--kj-muted);
}

body.corporate-tour.katenju-transport-page:not(.katenju-photo-page) .tour-card .thumb::after {
	display: none;
}

body.corporate-tour.katenju-transport-page .tour-grid {
	gap: clamp(16px, 2.2vw, 22px);
}

body.corporate-tour.katenju-transport-page .fleet-section {
	margin-top: clamp(1.5rem, 3vw, 2rem);
}

body.corporate-tour.katenju-transport-page #our-fleet .fleet-item .fleet-thumb,
body.corporate-tour.katenju-transport-page #our-fleet .fleet-item .fleet-thumb img {
	height: clamp(200px, 24vw, 260px);
	min-height: 200px;
}

body.corporate-tour.katenju-transport-page .fleet-item .fleet-thumb::after {
	display: none;
}

body.corporate-tour.katenju-transport-page .fleet-item .fleet-thumb img {
	display: block;
	width: 100%;
	object-fit: cover;
	background: transparent;
}

/* Fleet cards: unified dark executive green (Alphard style) */
body.corporate-tour.katenju-transport-page #our-fleet .fleet-item[class*="fleet-item--tone-"] {
	background: linear-gradient(168deg, #1b4332 0%, #0f2e22 100%);
	border: 1px solid rgba(15, 46, 34, 0.55);
	box-shadow: 0 12px 32px rgba(15, 35, 26, 0.14);
}

body.corporate-tour.katenju-transport-page #our-fleet .fleet-item[class*="fleet-item--tone-"] .fleet-thumb {
	background: linear-gradient(155deg, #2d6a4f 0%, #132a22 100%);
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

body.corporate-tour.katenju-transport-page #our-fleet .fleet-item[class*="fleet-item--tone-"] .fleet-body {
	background: transparent;
	padding: clamp(14px, 2vw, 18px) clamp(16px, 2.2vw, 20px) clamp(16px, 2.2vw, 20px);
}

body.corporate-tour.katenju-transport-page #our-fleet .fleet-item[class*="fleet-item--tone-"] h4 {
	color: #ecfdf5;
}

body.corporate-tour.katenju-transport-page #our-fleet .fleet-item[class*="fleet-item--tone-"] .fleet-meta {
	color: rgba(236, 253, 245, 0.88);
}

body.corporate-tour.katenju-transport-page .kj-transport-checklist {
	list-style: none;
	margin: 0 auto clamp(1.1rem, 2.5vw, 1.35rem);
	padding: 0;
	max-width: 26rem;
	display: grid;
	gap: 8px;
	text-align: left;
}

body.corporate-tour.katenju-transport-page .kj-transport-checklist li {
	position: relative;
	padding-left: 1.35rem;
	color: var(--kj-text);
	font-size: 0.92rem;
	line-height: 1.45;
}

body.corporate-tour.katenju-transport-page .kj-transport-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--kj-accent);
}

body.corporate-tour.katenju-transport-page .kj-transport-checklist li + li {
	margin-top: 0;
}

/* Transport page sections */
body.corporate-tour.katenju-transport-page .kj-transport-section {
	display: block;
	clear: both;
}

body.corporate-tour.katenju-transport-page .kj-transport-section--brief {
	margin: 0;
}

body.corporate-tour.katenju-transport-page .kj-transport-section--brief .kj-page-ribbon {
	margin: clamp(1.1rem, 2.8vw, 1.65rem) 0 0;
}

body.corporate-tour.katenju-transport-page .kj-transport-section--panel {
	margin: clamp(1.75rem, 3.5vw, 2.35rem) 0 0;
	padding: clamp(1.35rem, 3vw, 1.75rem) 0 0;
	border-top: 1px solid rgba(15, 46, 34, 0.08);
}

body.corporate-tour.katenju-transport-page .kj-transport-section--book {
	margin: clamp(1.5rem, 3vw, 2rem) 0 0;
	padding-top: clamp(0.5rem, 1.5vw, 0.75rem);
}

body.corporate-tour.katenju-transport-page .kj-transport-section__sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

body.corporate-tour.katenju-transport-page .kj-transport-section__head {
	text-align: center;
	margin: 0 0 clamp(1rem, 2.5vw, 1.35rem);
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
}

body.corporate-tour.katenju-transport-page .kj-transport-section__eyebrow {
	margin: 0 0 6px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--kj-accent);
}

body.corporate-tour.katenju-transport-page .kj-transport-section__title {
	margin: 0 0 8px;
	font-size: clamp(1.15rem, 2.6vw, 1.35rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--kj-heading);
}

body.corporate-tour.katenju-transport-page .kj-transport-section__lede {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--kj-muted);
}

body.corporate-tour.katenju-transport-page .kj-transport-section--panel.fleet-section {
	margin-top: clamp(1.75rem, 3.5vw, 2.35rem);
}

/* What we cover: icon tiles (no photo strips) */
body.corporate-tour.katenju-transport-page #what-we-cover .kj-transport-section__head {
	max-width: 34rem;
	margin-bottom: clamp(0.85rem, 2vw, 1.15rem);
}

body.corporate-tour.katenju-transport-page #what-we-cover .kj-transport-services {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(12px, 2vw, 16px);
	width: 100%;
}

body.corporate-tour.katenju-transport-page .kj-transport-service {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.65rem;
	margin: 0;
	padding: clamp(1rem, 2.2vw, 1.2rem) clamp(1rem, 2.4vw, 1.25rem);
	background: #ffffff;
	border: 1px solid rgba(15, 46, 34, 0.1);
	border-radius: 12px;
	box-shadow: 0 4px 18px rgba(15, 46, 34, 0.06);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.corporate-tour.katenju-transport-page .kj-transport-service:hover {
	border-color: rgba(45, 106, 79, 0.28);
	box-shadow: 0 8px 24px rgba(15, 46, 34, 0.1);
	transform: translateY(-2px);
}

body.corporate-tour.katenju-transport-page .kj-transport-service__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 10px;
	background: linear-gradient(145deg, rgba(45, 106, 79, 0.14), rgba(27, 67, 50, 0.08));
	color: var(--kj-accent);
	font-size: 1.05rem;
	flex-shrink: 0;
}

body.corporate-tour.katenju-transport-page .kj-transport-service__content {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	min-width: 0;
	width: 100%;
}

body.corporate-tour.katenju-transport-page .kj-transport-service__label {
	display: inline-block;
	margin: 0;
	padding: 2px 8px;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--kj-accent);
	background: var(--kj-accent-soft);
	border-radius: 4px;
	align-self: flex-start;
}

body.corporate-tour.katenju-transport-page .kj-transport-service__content h3 {
	margin: 0.15rem 0 0;
	font-size: clamp(0.92rem, 1.8vw, 1.02rem);
	font-weight: 800;
	line-height: 1.3;
	color: var(--kj-heading);
	letter-spacing: -0.01em;
}

body.corporate-tour.katenju-transport-page .kj-transport-service__content p {
	margin: 0;
	font-size: clamp(0.78rem, 1.5vw, 0.84rem);
	line-height: 1.5;
	color: var(--kj-muted);
}

body.corporate-tour.katenju-transport-page .kj-transport-section--book .kj-cta-slab {
	margin: 0;
}

@media (min-width: 768px) {
	body.corporate-tour.katenju-transport-page #what-we-cover .kj-transport-services {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	body.corporate-tour.katenju-transport-page #what-we-cover .kj-transport-services {
		grid-template-columns: 1fr;
		max-width: 22rem;
		margin-left: auto;
		margin-right: auto;
	}
}

body.corporate-tour .tour-card .body {
	padding: clamp(1rem, 2.5vw, 1.3rem) clamp(1.1rem, 3vw, 1.45rem) clamp(1.15rem, 2.5vw, 1.45rem);
	flex: 1;
}

body.corporate-tour .tour-card .tag {
	display: inline-block;
	color: var(--kj-accent);
	background: var(--kj-accent-soft);
	border: 1px solid rgba(45, 106, 79, 0.15);
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

body.corporate-tour .tour-card h3 {
	margin: 0 0 8px;
	color: var(--kj-heading);
	font-weight: 800;
	font-size: clamp(1rem, 2vw, 1.12rem);
	letter-spacing: -0.02em;
	line-height: 1.28;
}

body.corporate-tour .tour-card p {
	margin-bottom: 0;
	color: var(--kj-muted);
	line-height: 1.72;
	font-size: 0.92rem;
}

body.corporate-tour .tour-note {
	margin-top: clamp(1.25rem, 3vw, 1.85rem);
	padding: clamp(1rem, 2.5vw, 1.25rem) clamp(1.15rem, 3vw, 1.5rem);
	border-radius: 16px;
	background: linear-gradient(180deg, #fafdfb 0%, #f0f7f3 100%);
	border: 1px solid rgba(45, 106, 79, 0.15);
	color: var(--kj-text);
	line-height: 1.75;
	font-size: 0.95rem;
}

body.corporate-tour .tour-note a {
	color: var(--kj-accent);
	font-weight: 700;
}

body.corporate-tour .tour-note a:hover {
	color: #14532d;
}

/* Transport extras */
body.corporate-tour .fleet-section {
	display: block;
	clear: both;
	margin-top: clamp(1.25rem, 3vw, 1.5rem);
	position: relative;
	z-index: 1;
}

body.corporate-tour .fleet-section > h3 {
	color: var(--kj-heading);
	margin: 0 0 6px;
	font-weight: 800;
	font-size: 1.25rem;
	letter-spacing: -0.02em;
}

body.corporate-tour .fleet-section > .fleet-intro {
	color: var(--kj-muted);
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.65;
}

body.corporate-tour .fleet-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

body.corporate-tour .fleet-item {
	background: var(--kj-card);
	border: 1px solid var(--kj-border);
	box-shadow: var(--kj-shadow);
	border-radius: 16px;
	overflow: hidden;
}

body.corporate-tour .fleet-item .fleet-thumb {
	height: 132px;
	border-bottom: 1px solid var(--kj-border);
	background: linear-gradient(145deg, #e8f3ec, #dceee4);
}

body.corporate-tour .fleet-item .fleet-thumb img {
	display: block;
	width: 100%;
	height: 132px;
	object-fit: cover;
}

body.corporate-tour .fleet-item .fleet-body {
	padding: 14px 16px 16px;
}

body.corporate-tour .fleet-item h4 {
	color: var(--kj-heading);
	margin: 0 0 4px;
	font-weight: 800;
	font-size: 17px;
}

body.corporate-tour .fleet-item .fleet-meta {
	color: var(--kj-muted);
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
}

body.corporate-tour .tour-list {
	margin: 10px 0 0;
	padding-left: 18px;
	color: var(--kj-text);
	line-height: 1.65;
}

body.corporate-tour .tour-list li + li {
	margin-top: 4px;
}

body.corporate-tour .transport-book {
	margin-top: clamp(1.15rem, 2.5vw, 1.35rem);
	padding: clamp(1.25rem, 3vw, 1.5rem) clamp(1.1rem, 2.5vw, 1.25rem) clamp(1.35rem, 3vw, 1.5rem);
	border-radius: 18px;
	text-align: center;
	background: linear-gradient(180deg, #f0faf4 0%, #ffffff 100%);
	border: 1px solid rgba(45, 106, 79, 0.2);
}

body.corporate-tour .transport-book h3 {
	color: var(--kj-heading);
}

body.corporate-tour .transport-book p {
	color: var(--kj-muted);
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 18px;
}

body.corporate-tour .transport-book .book-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	align-items: center;
}

body.corporate-tour .transport-book .book-actions .theme-btn {
	margin: 0;
}

@media (max-width: 767px) {
	body.corporate-tour .fleet-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	body.corporate-tour .fleet-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 991px) {
	body.corporate-tour.katenju-photo-page .tour-card {
		grid-column: auto;
	}

	body.corporate-tour:not(.katenju-photo-page) .tour-card {
		grid-column: span 12;
	}

	body.corporate-tour .tour-hero h2 {
		font-size: clamp(1.45rem, 4.5vw, 1.95rem);
	}

	body.corporate-tour.katenju-photo-page .tour-grid.tour-grid--photo-condensed {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	body.corporate-tour.katenju-photo-page .tour-grid.tour-grid--photo-condensed {
		grid-template-columns: 1fr;
	}

	body.corporate-tour.katenju-photo-page .tour-grid--photo-condensed .tour-card .body {
		min-height: 0;
	}
}

/* --- Game drives (classic sidebar + content) --- */
body.katenju-game-page .sidebar-page-container .sidebar .sidebar-widget {
	margin-bottom: 28px;
}

body.katenju-game-page .content-side .services-detail .inner-box {
	padding: clamp(0.5rem, 2vw, 1rem) 0;
}

body.katenju-game-page .content-side .services-detail .inner-box h2 {
	color: var(--kj-heading);
	font-weight: 800;
	margin-bottom: 1rem;
}

body.katenju-game-page .content-side .services-detail .inner-box h3 {
	color: var(--kj-heading);
	margin-top: 1.75rem;
}

body.katenju-game-page .content-side .services-detail .inner-box p {
	color: var(--kj-text);
	line-height: 1.75;
}

/* Contact + About: header-style-one + logo.png (match home/services bar proportions) */
body.contact-tour .main-header.header-style-one .header-upper .logo-box .logo img,
body.contact-tour .main-header.header-style-one .sticky-header .logo img,
body.about-corporate .main-header.header-style-one .header-upper .logo-box .logo img,
body.about-corporate .main-header.header-style-one .sticky-header .logo img {
	max-width: min(180px, 34vw);
	max-height: 60px;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: left center;
	display: block;
}

body.contact-tour .main-header.header-style-one .sticky-header .logo img,
body.about-corporate .main-header.header-style-one .sticky-header .logo img {
	max-height: 48px;
	max-width: min(160px, 40vw);
}

body.contact-tour .mobile-menu .menu-box .nav-logo img,
body.about-corporate .mobile-menu .menu-box .nav-logo img {
	max-width: min(200px, 70vw);
	max-height: 60px;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: left center;
	display: block;
}

/* Universal inner-page header sizing (fixes logo scale across all pages using header-style-one) */
.main-header.header-style-one .header-upper .logo-box .logo img,
.main-header.header-style-one .header-upper .logo-box img,
.sticky-header .logo img {
	max-width: min(180px, 34vw);
	max-height: 60px;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: left center;
	display: block;
}

.sticky-header .logo img {
	max-height: 48px;
	max-width: min(160px, 40vw);
}

.mobile-menu .menu-box .nav-logo img {
	max-width: min(200px, 70vw);
	max-height: 60px;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: left center;
	display: block;
}

/* Hidden sidebar (off-canvas) logo */
.xs-sidebar-group .sidebar-info-contents .content-inner .logo img {
	max-width: 180px;
	max-height: 60px;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: left center;
	display: block;
}

/* Pre-footer info strip logo (when not styled by katenju-info-strip.css) */
.info-section .logo-column .logo img {
	max-width: min(72px, 22vw);
	max-height: 72px;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: left center;
	display: block;
}

/* --- Contact (light hero + info cards) --- */
body.contact-tour .contact-info-section {
	padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 2.75rem);
	background: transparent;
}

body.contact-tour .contact-info-section .title-box .title {
	color: var(--kj-accent);
	font-weight: 700;
}

body.contact-tour .contact-info-section .title-box h2 {
	color: var(--kj-heading);
}

body.contact-tour .contact-info-section .title-box .text,
body.contact-tour .contact-info-section .title-box .text a {
	color: var(--kj-muted);
}

body.contact-tour .contact-info-section .info-column .inner-column {
	border-radius: 16px;
	border: 1px solid var(--kj-border);
	background: var(--kj-card);
	box-shadow: var(--kj-shadow);
}

body.contact-tour .contact-info-section .info-column .content ul li {
	color: var(--kj-text);
}

body.contact-tour .contact-info-section .lower-text {
	color: var(--kj-muted);
}

body.contact-tour .contact-info-section .lower-text a {
	color: var(--kj-accent);
	font-weight: 700;
}

body.contact-tour .contact-info-section .lower-text a:hover {
	color: #14532d;
}

body.contact-tour .contact-map-wrap {
	background: var(--kj-page-bg);
	padding: 0 0 clamp(2.5rem, 5vw, 3.25rem);
}

body.contact-tour .contact-map-wrap .map-boxed {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--kj-border);
	box-shadow: var(--kj-shadow);
}

body.contact-tour .contact-form-wrap {
	padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(3.5rem, 6vw, 5rem);
	background: linear-gradient(180deg, #f4f9f6 0%, var(--kj-page-bg) 100%);
}

body.contact-tour .contact-form-wrap .sec-title .title {
	color: var(--kj-accent);
}

body.contact-tour .contact-form-wrap .sec-title h2 {
	color: var(--kj-heading);
}

body.contact-tour .contact-form-wrap .sec-title .text {
	color: var(--kj-muted);
}

body.contact-tour .contact-form .form-group label {
	color: var(--kj-heading);
	font-weight: 600;
}

body.contact-tour .contact-aside {
	padding: 22px 22px 20px;
	border-radius: 16px;
	background: var(--kj-card);
	border: 1px solid var(--kj-border);
	box-shadow: var(--kj-shadow);
	margin-bottom: 28px;
}

body.contact-tour .contact-aside h4 {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 800;
	color: var(--kj-heading);
}

body.contact-tour .contact-aside p {
	margin: 0 0 12px;
	color: var(--kj-text);
	line-height: 1.7;
	font-size: 14px;
}

body.contact-tour .contact-aside ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

body.contact-tour .contact-aside ul li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 8px;
	color: var(--kj-text);
	font-size: 14px;
	line-height: 1.5;
}

body.contact-tour .contact-aside ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--kj-accent);
}

/* --- Service pages (adventure, leisure, transport): hero actions, ribbon, CTA slab --- */
body.adventure-page .main-header .cart-box {
	display: none !important;
}

body.adventure-page .adventure-hero .kj-hero-actions,
body.corporate-tour.katenju-transport-page .tour-hero .kj-hero-actions,
body.corporate-tour.katenju-photo-page .tour-hero .kj-hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: clamp(1rem, 2.8vw, 1.35rem);
}

body.adventure-page .adventure-hero .kj-hero-actions .theme-btn,
body.corporate-tour.katenju-transport-page .tour-hero .kj-hero-actions .theme-btn,
body.corporate-tour.katenju-photo-page .tour-hero .kj-hero-actions .theme-btn {
	margin: 0;
}

body.adventure-page .kj-page-ribbon,
body.corporate-tour.katenju-transport-page .kj-page-ribbon,
body.corporate-tour.katenju-photo-page .kj-page-ribbon {
	margin: clamp(1.35rem, 3.2vw, 2rem) 0;
	padding: clamp(14px, 2.5vw, 18px) clamp(16px, 3vw, 24px);
	border-radius: 16px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 20px;
	background: linear-gradient(105deg, #0f2a20 0%, #1b4332 50%, #2a5a45 100%);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 14px 36px rgba(8, 22, 16, 0.22);
}

body.adventure-page .kj-page-ribbon__text,
body.corporate-tour.katenju-transport-page .kj-page-ribbon__text,
body.corporate-tour.katenju-photo-page .kj-page-ribbon__text {
	margin: 0;
	flex: 1;
	min-width: min(100%, 240px);
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: clamp(0.92rem, 1.75vw, 1.04rem);
	line-height: 1.45;
	color: rgba(248, 250, 252, 0.95);
}

body.adventure-page .kj-page-ribbon .theme-btn.btn-style-two,
body.corporate-tour.katenju-transport-page .kj-page-ribbon .theme-btn.btn-style-two,
body.corporate-tour.katenju-photo-page .kj-page-ribbon .theme-btn.btn-style-two {
	border: 1px solid rgba(255, 255, 255, 0.45) !important;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

body.adventure-page .kj-page-ribbon .theme-btn,
body.corporate-tour.katenju-transport-page .kj-page-ribbon .theme-btn,
body.corporate-tour.katenju-photo-page .kj-page-ribbon .theme-btn {
	margin: 0;
	flex-shrink: 0;
}

body.corporate-tour.katenju-photo-page .kj-photo-studio {
	margin: 0 0 clamp(1.35rem, 3vw, 2rem);
	padding: clamp(1.25rem, 3vw, 1.75rem);
	border-radius: 16px;
	background: #fff;
	border: 1px solid var(--kj-border);
	box-shadow: var(--kj-shadow);
}

body.corporate-tour.katenju-photo-page .kj-photo-studio__title {
	margin: 0 0 16px;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(1.15rem, 2.2vw, 1.35rem);
	font-weight: 700;
	color: var(--kj-heading);
}

body.corporate-tour.katenju-photo-page .kj-photo-studio__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
}

body.corporate-tour.katenju-photo-page .kj-photo-studio__card {
	padding: 14px 16px;
	border-radius: 12px;
	background: var(--kj-page-bg-top);
	border: 1px solid rgba(27, 67, 50, 0.08);
}

body.corporate-tour.katenju-photo-page .kj-photo-studio__label {
	display: block;
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--kj-muted);
}

body.corporate-tour.katenju-photo-page .kj-photo-studio__value {
	margin: 0;
	font-size: 16px;
	line-height: 1.55;
	color: var(--kj-text);
}

body.corporate-tour.katenju-photo-page .kj-photo-studio__value a {
	color: var(--kj-accent);
	font-weight: 600;
}

body.corporate-tour.katenju-photo-page .kj-photo-studio__value a:hover {
	color: var(--kj-heading);
}

body.adventure-page .kj-cta-slab,
body.corporate-tour.katenju-transport-page .kj-cta-slab,
body.corporate-tour.katenju-photo-page .kj-cta-slab {
	margin: clamp(1.35rem, 3vw, 2rem) 0;
	padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.25rem, 3vw, 2rem);
	border-radius: 18px;
	background: linear-gradient(180deg, #ffffff 0%, #f4faf7 100%);
	border: 1px solid var(--kj-border);
	box-shadow: var(--kj-shadow);
	text-align: center;
}

body.adventure-page .kj-cta-slab h3,
body.corporate-tour.katenju-transport-page .kj-cta-slab h3,
body.corporate-tour.katenju-photo-page .kj-cta-slab h3 {
	margin: 0 0 8px;
	color: var(--kj-heading);
	font-weight: 800;
	font-size: clamp(1.12rem, 2.6vw, 1.32rem);
	letter-spacing: -0.02em;
}

body.corporate-tour.katenju-transport-page .kj-cta-slab .kj-transport-book-lede {
	margin: 0 auto 10px;
	max-width: 31rem;
	color: var(--kj-muted);
	line-height: 1.55;
	font-size: 0.92rem;
}

body.adventure-page .kj-cta-slab > p,
body.corporate-tour.katenju-transport-page .kj-cta-slab > p,
body.corporate-tour.katenju-photo-page .kj-cta-slab > p {
	margin: 0 auto 18px;
	max-width: 36rem;
	color: var(--kj-muted);
	line-height: 1.65;
	font-size: 0.95rem;
}

body.adventure-page .kj-cta-slab .kj-cta-slab__note,
body.corporate-tour.katenju-photo-page .kj-cta-slab .kj-cta-slab__note {
	display: block;
	margin-top: 0.65rem;
	font-size: 0.92em;
	line-height: 1.55;
	color: rgba(55, 65, 60, 0.92);
}

body.adventure-page .kj-cta-slab__actions,
body.corporate-tour.katenju-transport-page .kj-cta-slab__actions,
body.corporate-tour.katenju-photo-page .kj-cta-slab__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	align-items: center;
}

body.adventure-page .kj-cta-slab__actions .theme-btn,
body.corporate-tour.katenju-transport-page .kj-cta-slab__actions .theme-btn,
body.corporate-tour.katenju-photo-page .kj-cta-slab__actions .theme-btn {
	margin: 0;
}

body.adventure-page .kj-cross-links,
body.corporate-tour.katenju-transport-page .kj-cross-links,
body.corporate-tour.katenju-photo-page .kj-cross-links {
	margin: clamp(1rem, 2.5vw, 1.5rem) 0 0;
	padding: clamp(1rem, 2.2vw, 1.25rem) clamp(1rem, 2.5vw, 1.35rem);
	border-radius: 14px;
	background: rgba(45, 106, 79, 0.08);
	border: 1px solid rgba(45, 106, 79, 0.16);
	text-align: center;
}

body.adventure-page .kj-cross-links p,
body.corporate-tour.katenju-transport-page .kj-cross-links p,
body.corporate-tour.katenju-photo-page .kj-cross-links p {
	margin: 0 0 10px;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--kj-heading);
}

body.adventure-page .kj-cross-links__row,
body.corporate-tour.katenju-transport-page .kj-cross-links__row,
body.corporate-tour.katenju-photo-page .kj-cross-links__row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

body.adventure-page .kj-cross-links__row a,
body.corporate-tour.katenju-transport-page .kj-cross-links__row a,
body.corporate-tour.katenju-photo-page .kj-cross-links__row a {
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--kj-accent);
	text-decoration: none;
}

body.adventure-page .kj-cross-links__row a:hover,
body.corporate-tour.katenju-transport-page .kj-cross-links__row a:hover,
body.corporate-tour.katenju-photo-page .kj-cross-links__row a:hover {
	color: #14532d;
	text-decoration: underline;
}

/* Primary buttons: green hover sweep instead of navy overlay */
body.adventure-page .theme-btn.btn-style-one:before,
body.corporate-tour .theme-btn.btn-style-one:before,
body.katenju-game-page .theme-btn.btn-style-one:before,
body.contact-tour .theme-btn.btn-style-one:before {
	background-color: #0a1f14 !important;
}

body.adventure-page .theme-btn.btn-style-one:hover,
body.corporate-tour .theme-btn.btn-style-one:hover,
body.katenju-game-page .theme-btn.btn-style-one:hover,
body.contact-tour .theme-btn.btn-style-one:hover {
	border-color: #14532d !important;
	color: #ffffff !important;
}

/* Secondary buttons: forest base, same hover mechanic with dark green text on pale sweep */
body.adventure-page .theme-btn.btn-style-two,
body.corporate-tour .theme-btn.btn-style-two,
body.katenju-game-page .theme-btn.btn-style-two,
body.contact-tour .theme-btn.btn-style-two {
	background-color: #1b4332 !important;
	color: #ffffff !important;
}

body.adventure-page .theme-btn.btn-style-two:before,
body.corporate-tour .theme-btn.btn-style-two:before,
body.katenju-game-page .theme-btn.btn-style-two:before,
body.contact-tour .theme-btn.btn-style-two:before {
	background-color: #ecfdf5 !important;
}

body.adventure-page .theme-btn.btn-style-two:hover,
body.corporate-tour .theme-btn.btn-style-two:hover,
body.katenju-game-page .theme-btn.btn-style-two:hover,
body.contact-tour .theme-btn.btn-style-two:hover {
	color: #0f2918 !important;
	border-color: rgba(236, 253, 245, 0.35) !important;
}

body.adventure-page .theme-btn.btn-style-two:hover .txt,
body.corporate-tour .theme-btn.btn-style-two:hover .txt,
body.katenju-game-page .theme-btn.btn-style-two:hover .txt,
body.contact-tour .theme-btn.btn-style-two:hover .txt {
	color: #0f2918 !important;
}
