/*
Theme Name: Kenny Bryant — GeneratePress Child
Theme URI: https://kennybryant.com/
Description: Executive portfolio child theme for Kenny Bryant, built on GeneratePress.
Author: DC3 Web Designs LLC
Template: generatepress
Version: 1.0.2
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: kenny-bryant
*/

:root {
	--kb-navy-950: #061522;
	--kb-navy-900: #0a1d2d;
	--kb-navy-800: #102b40;
	--kb-navy-700: #193d56;
	--kb-gold-500: #c99a3d;
	--kb-gold-400: #d8b263;
	--kb-gold-200: #ead7a9;
	--kb-ivory-100: #f6f2e9;
	--kb-ivory-50: #fbf9f4;
	--kb-white: #ffffff;
	--kb-ink: #12202b;
	--kb-slate: #50616e;
	--kb-rule: #d9d6ce;
	--kb-shadow: 0 24px 70px rgba(6, 21, 34, 0.13);
	--kb-serif: Georgia, "Times New Roman", Times, serif;
	--kb-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	--kb-container: 1200px;
	--kb-header-height: 92px;
}

html {
	scroll-behavior: smooth;
	max-width: 100%;
	overflow-x: clip;
}

body.kb-site {
	margin: 0;
	background: var(--kb-ivory-50);
	color: var(--kb-ink);
	font-family: var(--kb-sans);
	font-size: 17px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	max-width: 100%;
	overflow-x: clip;
}

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

.kb-site img {
	display: block;
	max-width: 100%;
	height: auto;
}

.kb-site a {
	color: inherit;
}

.kb-site h1,
.kb-site h2,
.kb-site h3,
.kb-site p {
	margin-top: 0;
}

.kb-site h1,
.kb-site h2,
.kb-site h3 {
	color: inherit;
	font-family: var(--kb-serif);
	font-weight: 500;
	letter-spacing: -0.035em;
}

.kb-site h1 {
	font-size: clamp(3rem, 6.2vw, 6.15rem);
	line-height: 0.97;
}

.kb-site h2 {
	font-size: clamp(2.2rem, 4.2vw, 4.25rem);
	line-height: 1.04;
}

.kb-site h3 {
	font-size: clamp(1.35rem, 2.2vw, 2rem);
	line-height: 1.15;
}

.kb-container {
	width: min(calc(100% - 48px), var(--kb-container));
	margin-inline: auto;
}

.kb-main {
	display: block;
	overflow: hidden;
}

.kb-site-shell,
.kb-container,
.kb-home-hero-grid > *,
.kb-editorial-intro > *,
.kb-section-heading-split > *,
.kb-venture-grid > *,
.kb-principles-layout > *,
.kb-story-grid > *,
.kb-current-grid > *,
.kb-focus-grid > *,
.kb-page-hero-grid > *,
.kb-ventures-hero-grid > *,
.kb-venture-detail-grid > *,
.kb-contact-layout > *,
.kb-footer-grid > * {
	min-width: 0;
}

.kb-section {
	padding: clamp(88px, 10vw, 150px) 0;
}

.kb-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	padding: 12px 18px;
	background: var(--kb-white);
	color: var(--kb-navy-950);
	font-weight: 700;
	transform: translateY(-150%);
	transition: transform 160ms ease;
}

.kb-skip-link:focus {
	transform: translateY(0);
}

.kb-site a:focus-visible,
.kb-site button:focus-visible,
.kb-site input:focus-visible,
.kb-site select:focus-visible,
.kb-site textarea:focus-visible {
	outline: 3px solid var(--kb-gold-400);
	outline-offset: 4px;
}

/* Header */
.kb-site-header {
	position: relative;
	z-index: 100;
	min-height: var(--kb-header-height);
	background: var(--kb-ivory-50);
	border-bottom: 1px solid rgba(6, 21, 34, 0.12);
}

.kb-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--kb-header-height);
	gap: 32px;
}

.kb-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: var(--kb-navy-950);
	text-decoration: none;
}

.kb-brand-mark {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	border: 1px solid var(--kb-gold-500);
	font-family: var(--kb-serif);
	font-size: 18px;
	letter-spacing: -0.05em;
}

.kb-brand-copy {
	display: grid;
	line-height: 1.15;
}

.kb-brand-name {
	font-family: var(--kb-serif);
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.02em;
}

.kb-brand-role {
	margin-top: 4px;
	color: var(--kb-slate);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.kb-primary-nav {
	display: flex;
	align-items: center;
	gap: 34px;
}

.kb-menu,
.kb-footer-menu {
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kb-menu a {
	position: relative;
	padding: 12px 0;
	color: var(--kb-navy-900);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-decoration: none;
}

.kb-menu a::after {
	position: absolute;
	left: 0;
	bottom: 5px;
	width: 0;
	height: 1px;
	background: var(--kb-gold-500);
	content: "";
	transition: width 180ms ease;
}

.kb-menu a:hover::after,
.kb-menu .current-menu-item > a::after,
.kb-menu .current_page_item > a::after {
	width: 100%;
}

.kb-site .kb-header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 10px 21px;
	background: var(--kb-navy-950);
	color: var(--kb-white);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 180ms ease, color 180ms ease;
}

.kb-site .kb-header-cta:hover {
	background: var(--kb-gold-500);
	color: var(--kb-navy-950);
}

.kb-nav-toggle {
	display: none;
	align-items: center;
	gap: 12px;
	min-width: 44px;
	min-height: 44px;
	padding: 8px 0 8px 12px;
	border: 0;
	background: transparent;
	color: var(--kb-navy-950);
	cursor: pointer;
	flex: 0 0 auto;
}

.kb-nav-toggle-label {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.kb-nav-toggle-icon {
	position: relative;
	display: block;
	width: 26px;
	height: 18px;
}

.kb-nav-toggle-icon span {
	position: absolute;
	left: 0;
	width: 26px;
	height: 2px;
	background: currentColor;
	transition: top 180ms ease, transform 180ms ease;
}

.kb-nav-toggle-icon span:first-child { top: 4px; }
.kb-nav-toggle-icon span:last-child { top: 12px; }
.kb-nav-toggle[aria-expanded="true"] .kb-nav-toggle-icon span:first-child { top: 8px; transform: rotate(45deg); }
.kb-nav-toggle[aria-expanded="true"] .kb-nav-toggle-icon span:last-child { top: 8px; transform: rotate(-45deg); }

/* Shared controls */
.kb-eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
	color: var(--kb-navy-700);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.17em;
	line-height: 1.4;
	text-transform: uppercase;
}

.kb-eyebrow::before {
	width: 34px;
	height: 1px;
	background: var(--kb-gold-500);
	content: "";
}

.kb-eyebrow-light { color: var(--kb-gold-200); }
.kb-eyebrow-light::before { background: var(--kb-gold-400); }
.kb-eyebrow span { color: rgba(255,255,255,.44); }

.kb-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.kb-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 54px;
	padding: 13px 24px;
	border: 1px solid transparent;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.kb-button:hover {
	transform: translateY(-2px);
}

.kb-site .kb-button-gold {
	background: var(--kb-gold-500);
	color: var(--kb-navy-950);
}

.kb-site .kb-button-gold:hover { background: var(--kb-gold-400); color: var(--kb-navy-950); }
.kb-site .kb-button-ghost { border-color: rgba(255,255,255,.38); color: var(--kb-white); }
.kb-site .kb-button-ghost:hover { border-color: var(--kb-white); background: var(--kb-white); color: var(--kb-navy-950); }
.kb-site .kb-button-navy { background: var(--kb-navy-950); color: var(--kb-white); }
.kb-site .kb-button-navy:hover { background: var(--kb-navy-700); color: var(--kb-white); }
.kb-site .kb-button-outline { border-color: var(--kb-navy-950); color: var(--kb-navy-950); }
.kb-site .kb-button-outline:hover { background: var(--kb-navy-950); color: var(--kb-white); }

.kb-text-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--kb-navy-800);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.kb-text-link svg { transition: transform 180ms ease; }
.kb-text-link:hover svg { transform: translateX(4px); }

.kb-section-heading { max-width: 780px; margin-bottom: 55px; }
.kb-section-heading h2 { margin-bottom: 0; }
.kb-section-heading-split {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, .65fr);
	align-items: end;
	gap: 60px;
	max-width: none;
}
.kb-section-heading-split > p { margin-bottom: 8px; color: var(--kb-slate); }

/* Homepage hero */
.kb-home-hero {
	position: relative;
	min-height: 610px;
	overflow: hidden;
	background:
		radial-gradient(circle at 86% 13%, rgba(201,154,61,.20), transparent 26%),
		linear-gradient(124deg, var(--kb-navy-950) 0%, var(--kb-navy-900) 68%, #112f43 100%);
	color: var(--kb-white);
}

.kb-home-hero::before {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: linear-gradient(90deg, transparent, #000);
	content: "";
	opacity: .28;
}

.kb-home-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr);
	align-items: center;
	gap: 50px;
	min-height: 610px;
	padding-top: 22px;
}

.kb-hero-copy { padding: 24px 0 32px; }
.kb-hero-copy h1 { max-width: 780px; margin-bottom: 22px; font-size: clamp(3rem, 4vw, 4.4rem); line-height: 1; }
.kb-hero-lead { max-width: 670px; margin-bottom: 26px; color: #d5dee5; font-size: clamp(1.05rem, 1.7vw, 1.28rem); line-height: 1.65; }

.kb-hero-signature {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 34px;
}
.kb-hero-signature > span { width: 1px; height: 42px; background: var(--kb-gold-500); }
.kb-hero-signature p { margin: 0; color: #aebbc5; font-size: 12px; line-height: 1.5; }
.kb-hero-signature strong { color: var(--kb-white); font-size: 13px; }

.kb-hero-portrait-wrap {
	position: relative;
	align-self: end;
	min-height: 550px;
}

.kb-hero-portrait-frame {
	position: absolute;
	right: -35px;
	bottom: 0;
	width: min(570px, 48vw);
	z-index: 2;
}

.kb-hero-portrait-frame::before {
	position: absolute;
	right: 6%;
	bottom: 3%;
	z-index: -1;
	width: 87%;
	height: 84%;
	border: 1px solid rgba(216,178,99,.55);
	border-radius: 48% 48% 0 0;
	background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.01));
	content: "";
}

.kb-hero-monogram {
	position: absolute;
	top: 30px;
	right: -40px;
	color: rgba(255,255,255,.04);
	font-family: var(--kb-serif);
	font-size: 250px;
	line-height: 1;
}

.kb-hero-role-card {
	position: absolute;
	right: -12px;
	bottom: 35px;
	z-index: 3;
	display: grid;
	width: 290px;
	padding: 20px 22px;
	background: rgba(246,242,233,.96);
	box-shadow: var(--kb-shadow);
	color: var(--kb-navy-950);
}
.kb-hero-role-card span { margin-bottom: 8px; color: var(--kb-gold-500); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.kb-hero-role-card strong { padding: 5px 0; font-family: var(--kb-serif); font-size: 14px; line-height: 1.25; }
.kb-hero-role-card strong + strong { border-top: 1px solid var(--kb-rule); }

.kb-proof-bar { background: var(--kb-gold-500); }
.kb-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.kb-proof-item { display: grid; gap: 2px; padding: 30px 26px; border-right: 1px solid rgba(6,21,34,.2); }
.kb-proof-item:first-child { border-left: 1px solid rgba(6,21,34,.2); }
.kb-proof-item strong { color: var(--kb-navy-950); font-family: var(--kb-serif); font-size: 25px; font-weight: 500; }
.kb-proof-item span { color: var(--kb-navy-800); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }

.kb-intro-section { background: var(--kb-ivory-100); }
.kb-editorial-intro { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .7fr); gap: clamp(60px, 10vw, 140px); }
.kb-editorial-intro h2 { margin-bottom: 0; }
.kb-editorial-copy { padding-top: 52px; }
.kb-editorial-copy p { color: var(--kb-slate); }
.kb-editorial-copy .kb-dropcap { color: var(--kb-ink); font-size: 19px; }
.kb-dropcap::first-letter { float: left; margin: 9px 9px 0 0; color: var(--kb-gold-500); font-family: var(--kb-serif); font-size: 62px; line-height: .72; }

/* Venture cards */
.kb-ventures-section { background: var(--kb-white); }
.kb-venture-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.kb-venture-card { position: relative; display: flex; flex-direction: column; min-height: 600px; padding: clamp(30px, 4vw, 54px); border: 1px solid #dfe3e4; background: var(--kb-ivory-50); overflow: hidden; transition: transform 220ms ease, box-shadow 220ms ease; }
.kb-venture-card:hover { transform: translateY(-5px); box-shadow: var(--kb-shadow); }
.kb-venture-card::after { position: absolute; right: -80px; bottom: -120px; width: 280px; height: 280px; border: 1px solid rgba(201,154,61,.27); border-radius: 50%; content: ""; }
.kb-venture-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 45px; }
.kb-logo-frame { display: grid; place-items: center; width: 110px; height: 110px; padding: 10px; background: var(--kb-white); box-shadow: 0 10px 30px rgba(6,21,34,.08); }
.kb-logo-frame img { max-height: 90px; width: auto; }
.kb-card-index { color: #727f86; font-family: var(--kb-serif); font-size: 54px; line-height: 1; }
.kb-card-label { margin-bottom: 13px; color: #806022; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.kb-venture-card h3 { margin-bottom: 22px; font-size: clamp(2rem, 3.5vw, 3.15rem); }
.kb-venture-card > p:not(.kb-card-label) { max-width: 570px; color: var(--kb-slate); }
.kb-card-meta { display: grid; gap: 3px; margin: auto 0 28px; padding: 20px 0; border-top: 1px solid var(--kb-rule); border-bottom: 1px solid var(--kb-rule); }
.kb-card-meta span { color: var(--kb-slate); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.kb-card-meta strong { font-family: var(--kb-serif); font-size: 18px; font-weight: 500; }
.kb-venture-card-wvmre { background: #eef0ed; }

/* Principles */
.kb-principles-section { position: relative; background: var(--kb-navy-950); color: var(--kb-white); }
.kb-principles-section::before { position: absolute; inset: 0 50% 0 0; background: linear-gradient(135deg, rgba(255,255,255,.04), transparent); content: ""; }
.kb-principles-layout { position: relative; display: grid; grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr); gap: clamp(60px, 10vw, 140px); }
.kb-principles-heading h2 { margin-bottom: 30px; }
.kb-principles-heading > p:last-child { max-width: 520px; color: #b7c2ca; }
.kb-principles-list article { display: grid; grid-template-columns: 55px 1fr; gap: 24px; padding: 31px 0; border-top: 1px solid rgba(255,255,255,.15); }
.kb-principles-list article:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.kb-principles-list article > span { color: var(--kb-gold-400); font-family: var(--kb-serif); font-size: 17px; }
.kb-principles-list h3 { margin-bottom: 8px; font-size: 27px; }
.kb-principles-list p { margin: 0; color: #aebbc5; font-size: 15px; }

/* Shared internal hero */
.kb-page-hero { position: relative; overflow: hidden; background: var(--kb-navy-950); color: var(--kb-white); }
.kb-page-hero::before { position: absolute; inset: 0; background: radial-gradient(circle at 75% 20%, rgba(201,154,61,.14), transparent 29%); content: ""; }
.kb-page-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(390px, .72fr); align-items: center; gap: 80px; min-height: 650px; }
.kb-page-hero-copy { padding: 90px 0 110px; }
.kb-page-hero-copy h1 { margin-bottom: 32px; font-size: clamp(3.3rem, 6vw, 6.25rem); }
.kb-page-hero-copy > p:last-child { max-width: 760px; color: #c4cfd6; font-size: 19px; }

/* About */
.kb-about-portrait { position: relative; align-self: end; min-height: 600px; }
.kb-about-portrait::before { position: absolute; left: 9%; bottom: 0; width: 88%; height: 80%; border: 1px solid rgba(201,154,61,.6); border-radius: 50% 50% 0 0; content: ""; }
.kb-about-portrait picture { position: absolute; right: -25px; bottom: 0; z-index: 1; width: 510px; }
.kb-about-portrait img { width: 100%; }
.kb-about-year { position: absolute; top: 115px; left: -30px; z-index: 2; display: grid; color: var(--kb-gold-400); font-family: var(--kb-serif); font-size: 76px; line-height: .75; }
.kb-about-year sup { position: absolute; top: -6px; right: -29px; font-size: 25px; }
.kb-about-year small { margin-top: 12px; color: var(--kb-white); font-family: var(--kb-sans); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }

@media (min-width: 851px) {
	.kb-about-hero .kb-page-hero-grid {
		grid-template-columns: minmax(0, 1.15fr) minmax(370px, .85fr);
		min-height: 570px;
		gap: 55px;
	}

	.kb-about-hero .kb-page-hero-copy {
		padding: 48px 0 54px;
	}

	.kb-about-hero .kb-page-hero-copy h1 {
		margin-bottom: 24px;
		font-size: clamp(3rem, 4vw, 4.4rem);
		line-height: 1;
	}

	.kb-about-hero .kb-page-hero-copy > p:last-child {
		font-size: 17px;
	}

	.kb-about-hero .kb-about-portrait {
		min-height: 520px;
	}

	.kb-about-hero .kb-about-portrait picture {
		width: 460px;
	}

	.kb-about-hero .kb-about-year {
		top: 90px;
		font-size: 66px;
	}
}

.kb-story-section { background: var(--kb-ivory-100); }
.kb-story-grid { display: grid; grid-template-columns: minmax(280px, .62fr) minmax(0, 1fr); gap: clamp(70px, 11vw, 155px); }
.kb-sticky-heading { align-self: start; position: sticky; top: 40px; }
.kb-sticky-heading h2 { font-size: clamp(2.4rem, 4vw, 4rem); }
.kb-story-copy { max-width: 750px; }
.kb-story-copy p { color: var(--kb-slate); font-size: 18px; }
.kb-story-copy .kb-story-lead { color: var(--kb-ink); font-family: var(--kb-serif); font-size: clamp(1.7rem, 3vw, 2.55rem); line-height: 1.35; }

.kb-milestones-section { background: var(--kb-white); }
.kb-milestone-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--kb-rule); border-bottom: 1px solid var(--kb-rule); }
.kb-milestone-grid article { padding: 50px 42px 45px; border-right: 1px solid var(--kb-rule); }
.kb-milestone-grid article:first-child { border-left: 1px solid var(--kb-rule); }
.kb-milestone-grid strong { display: block; margin-bottom: 28px; color: var(--kb-gold-500); font-family: var(--kb-serif); font-size: clamp(3.5rem, 6vw, 6rem); font-weight: 400; line-height: 1; }
.kb-milestone-grid h3 { margin-bottom: 18px; font-size: 25px; }
.kb-milestone-grid p { margin: 0; color: var(--kb-slate); font-size: 14px; }

.kb-current-chapter { background: var(--kb-navy-950); color: var(--kb-white); }
.kb-current-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(450px, 1fr); gap: clamp(60px, 10vw, 140px); }
.kb-current-copy h2 { margin-bottom: 27px; }
.kb-current-copy > p:not(.kb-eyebrow) { margin-bottom: 34px; color: #b7c3cb; }
.kb-role-stack { display: grid; gap: 14px; }
.kb-role-stack article { display: grid; grid-template-columns: 42px 1fr; gap: 23px; padding: 28px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.035); }
.kb-role-stack article > span { color: var(--kb-gold-400); font-family: var(--kb-serif); }
.kb-role-stack p { margin-bottom: 4px; color: #aab8c1; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.kb-role-stack h3 { margin-bottom: 5px; font-size: 25px; }
.kb-role-stack small { color: #aab8c1; }

.kb-focus-section { background: var(--kb-ivory-100); }
.kb-focus-grid { display: grid; grid-template-columns: minmax(280px, .65fr) minmax(0, 1fr); gap: clamp(60px, 10vw, 140px); }
.kb-focus-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 38px; margin: 0; padding: 0; list-style: none; }
.kb-focus-list li { position: relative; padding: 23px 0 23px 30px; border-top: 1px solid var(--kb-rule); font-family: var(--kb-serif); font-size: 21px; }
.kb-focus-list li::before { position: absolute; left: 0; top: 33px; width: 12px; height: 1px; background: var(--kb-gold-500); content: ""; }

/* Ventures page */
.kb-ventures-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(390px, .66fr); align-items: center; gap: 80px; min-height: 650px; }
.kb-venture-logo-composition { position: relative; min-height: 450px; }
.kb-composition-card { position: absolute; display: grid; place-items: center; width: 255px; height: 255px; padding: 32px; background: var(--kb-white); box-shadow: 0 30px 70px rgba(0,0,0,.22); }
.kb-composition-card img { max-height: 190px; width: auto; }
.kb-composition-card-one { top: 30px; right: 80px; z-index: 2; }
.kb-composition-card-two { right: -15px; bottom: 8px; z-index: 3; }
.kb-composition-line { position: absolute; left: 40px; top: 60px; width: 330px; height: 330px; border: 1px solid rgba(201,154,61,.45); border-radius: 50%; }

.kb-venture-detail-grid { display: grid; grid-template-columns: minmax(340px, .72fr) minmax(0, 1fr); align-items: center; gap: clamp(70px, 11vw, 150px); }
.kb-venture-detail-grid-reverse .kb-venture-detail-visual { order: 2; }
.kb-venture-detail-visual { position: relative; min-height: 520px; padding: 78px; background: var(--kb-navy-950); color: var(--kb-white); }
.kb-venture-detail-visual::after { position: absolute; right: 28px; bottom: 28px; width: 130px; height: 130px; border-right: 1px solid var(--kb-gold-500); border-bottom: 1px solid var(--kb-gold-500); content: ""; }
.kb-detail-number { position: absolute; top: 23px; right: 28px; color: rgba(255,255,255,.17); font-family: var(--kb-serif); font-size: 58px; }
.kb-detail-logo { display: grid; place-items: center; width: 235px; height: 235px; padding: 27px; background: var(--kb-white); box-shadow: 0 25px 60px rgba(0,0,0,.23); }
.kb-detail-logo img { max-height: 190px; width: auto; }
.kb-venture-detail-visual p { position: absolute; left: 78px; bottom: 65px; margin: 0; color: var(--kb-gold-200); font-family: var(--kb-serif); font-size: 24px; line-height: 1.25; }
.kb-venture-detail-copy h2 { margin-bottom: 25px; }
.kb-detail-lead { color: var(--kb-ink); font-family: var(--kb-serif); font-size: 25px; line-height: 1.45; }
.kb-venture-detail-copy > p:not(.kb-eyebrow):not(.kb-detail-lead) { color: var(--kb-slate); }
.kb-role-label { display: grid; gap: 2px; margin: 30px 0; padding: 18px 0; border-top: 1px solid var(--kb-rule); border-bottom: 1px solid var(--kb-rule); }
.kb-role-label span { color: var(--kb-gold-500); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.kb-role-label strong { font-family: var(--kb-serif); font-size: 21px; font-weight: 500; }
.kb-check-list { display: grid; gap: 10px; margin: 0 0 34px; padding: 0; list-style: none; }
.kb-check-list li { position: relative; padding-left: 26px; font-size: 15px; }
.kb-check-list li::before { position: absolute; left: 0; top: 12px; width: 12px; height: 1px; background: var(--kb-gold-500); content: ""; }

.kb-venture-detail-dark { background: var(--kb-navy-900); color: var(--kb-white); }
.kb-venture-detail-dark .kb-venture-detail-visual { background: var(--kb-ivory-100); color: var(--kb-navy-950); }
.kb-venture-detail-dark .kb-venture-detail-visual p { color: var(--kb-navy-800); }
.kb-venture-detail-dark .kb-venture-detail-copy > p:not(.kb-eyebrow):not(.kb-detail-lead) { color: #b8c3ca; }
.kb-venture-detail-dark .kb-detail-lead { color: var(--kb-white); }
.kb-venture-detail-dark .kb-role-label { border-color: rgba(255,255,255,.17); }
.kb-venture-detail-dark .kb-check-list li { color: #d2dbe0; }
.kb-venture-detail-dark .kb-venture-detail-visual::after { border-color: var(--kb-gold-500); }

.kb-through-line { background: var(--kb-gold-500); }
.kb-through-line-grid { display: grid; grid-template-columns: .35fr 1.35fr .7fr; align-items: start; gap: 60px; }
.kb-through-line-grid .kb-eyebrow { margin-top: 11px; }
.kb-through-line-grid h2 { margin: 0; font-size: clamp(2.3rem, 4.4vw, 4.6rem); }
.kb-through-line-grid > p:last-child { margin: 13px 0 0; color: var(--kb-navy-800); }

/* Contact */
.kb-contact-hero { padding: clamp(90px, 11vw, 150px) 0; background: var(--kb-navy-950); color: var(--kb-white); }
.kb-contact-hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(340px, .65fr); align-items: end; gap: 100px; }
.kb-contact-heading h1 { max-width: 780px; margin: 0; }
.kb-contact-intro { padding-bottom: 8px; border-left: 1px solid rgba(201,154,61,.55); padding-left: 34px; }
.kb-contact-intro p { color: #c1ccd3; }
.kb-contact-intro p:last-child { margin-bottom: 0; }

.kb-contact-section { background: var(--kb-ivory-100); }
.kb-contact-layout { display: grid; grid-template-columns: minmax(300px, .65fr) minmax(0, 1fr); align-items: start; gap: clamp(45px, 8vw, 110px); }
.kb-contact-details { position: sticky; top: 35px; padding: 45px; border: 1px solid var(--kb-rule); background: var(--kb-white); box-shadow: 0 18px 50px rgba(6,21,34,.06); }
.kb-contact-details h2 { margin-bottom: 6px; font-size: 40px; }
.kb-contact-role { color: var(--kb-slate); font-size: 14px; }
.kb-contact-methods { margin-top: 34px; border-top: 1px solid var(--kb-rule); }
.kb-contact-methods > * { display: grid; gap: 2px; padding: 19px 0; border-bottom: 1px solid var(--kb-rule); text-decoration: none; }
.kb-contact-methods a:hover strong { color: var(--kb-gold-500); }
.kb-contact-methods span { color: var(--kb-gold-500); font-size: 9px; font-style: normal; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.kb-contact-methods strong,
.kb-contact-methods address { margin: 0; color: var(--kb-navy-900); font-family: var(--kb-serif); font-size: 19px; font-style: normal; font-weight: 500; line-height: 1.4; }
.kb-contact-venture-links { display: grid; gap: 8px; margin-top: 28px; }
.kb-contact-venture-links a { display: flex; justify-content: space-between; color: var(--kb-navy-800); font-size: 11px; font-weight: 800; letter-spacing: .05em; text-decoration: none; text-transform: uppercase; }
.kb-contact-venture-links a:hover { color: var(--kb-gold-500); }

.kb-form-panel { padding: clamp(35px, 5vw, 65px); background: var(--kb-white); box-shadow: var(--kb-shadow); }
.kb-form-heading { margin-bottom: 38px; }
.kb-form-heading h2 { margin-bottom: 14px; font-size: clamp(2.2rem, 3.5vw, 3.6rem); }
.kb-form-heading > p:last-child { color: var(--kb-slate); }
.kb-form-fallback { padding: 26px; border-left: 3px solid var(--kb-gold-500); background: var(--kb-ivory-100); }
.kb-form-fallback p { margin-bottom: 24px; }
.kb-admin-notice { margin: 24px 0 0; padding: 15px; border: 1px dashed #b96b19; background: #fff8e5; color: #633900; font-size: 13px; }
.kb-contact-note { padding: 55px 0; background: var(--kb-gold-500); }
.kb-contact-note p { display: flex; align-items: center; gap: 20px; margin: 0; font-family: var(--kb-serif); font-size: clamp(1.5rem, 3vw, 2.7rem); line-height: 1.2; }
.kb-contact-note span { color: rgba(6,21,34,.28); font-size: 70px; line-height: .5; }

/* WPForms */
.kb-form-panel .wpforms-container { margin: 0; }
.kb-form-panel .wpforms-field { padding: 0 0 20px !important; }
.kb-form-panel .wpforms-field-label { margin-bottom: 8px !important; color: var(--kb-navy-900) !important; font-family: var(--kb-sans); font-size: 11px !important; font-weight: 800 !important; letter-spacing: .08em; text-transform: uppercase; }
.kb-form-panel .wpforms-field-sublabel { color: var(--kb-slate) !important; font-size: 11px !important; }
.kb-form-panel input[type="text"],
.kb-form-panel input[type="email"],
.kb-form-panel input[type="tel"],
.kb-form-panel select,
.kb-form-panel textarea {
	width: 100% !important;
	max-width: none !important;
	min-height: 52px !important;
	padding: 12px 14px !important;
	border: 1px solid #bfc6c9 !important;
	border-radius: 0 !important;
	background: var(--kb-ivory-50) !important;
	box-shadow: none !important;
	color: var(--kb-ink) !important;
	font-family: var(--kb-sans) !important;
	font-size: 16px !important;
}
.kb-form-panel textarea { min-height: 155px !important; resize: vertical; }
.kb-form-panel input:focus,
.kb-form-panel select:focus,
.kb-form-panel textarea:focus { border-color: var(--kb-gold-500) !important; outline: 3px solid rgba(201,154,61,.24) !important; outline-offset: 0 !important; }
.kb-form-panel button[type="submit"],
.kb-form-panel .wpforms-submit {
	min-height: 54px !important;
	padding: 14px 30px !important;
	border: 1px solid var(--kb-navy-950) !important;
	border-radius: 0 !important;
	background: var(--kb-navy-950) !important;
	box-shadow: none !important;
	color: var(--kb-white) !important;
	font-family: var(--kb-sans) !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	letter-spacing: .1em;
	text-transform: uppercase;
}
.kb-form-panel button[type="submit"]:hover,
.kb-form-panel .wpforms-submit:hover { background: var(--kb-gold-500) !important; border-color: var(--kb-gold-500) !important; color: var(--kb-navy-950) !important; }
.kb-form-panel .wpforms-error { color: #a4261d !important; }

/* Footer */
.kb-footer-cta { padding: 72px 0; background: var(--kb-navy-800); color: var(--kb-white); }
.kb-footer-cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; }
.kb-footer-cta h2 { max-width: 870px; margin: 0; font-size: clamp(2.1rem, 4vw, 3.8rem); }
.kb-site-footer { padding: 80px 0 24px; background: #04101a; color: var(--kb-white); }
.kb-footer-grid { display: grid; grid-template-columns: 1.2fr .5fr .8fr; gap: 90px; padding-bottom: 65px; }
.kb-brand-footer { color: var(--kb-white); }
.kb-brand-footer .kb-brand-role { color: #8fa0aa; }
.kb-footer-identity > p { max-width: 440px; margin: 30px 0 0; color: #93a3ad; font-size: 14px; }
.kb-footer-column h2 { margin-bottom: 22px; color: var(--kb-gold-400); font-family: var(--kb-sans); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.kb-footer-menu { display: grid; gap: 8px; }
.kb-footer-menu a,
.kb-footer-contact a { color: #d3dbe0; font-size: 14px; text-decoration: none; }
.kb-footer-menu a:hover,
.kb-footer-contact a:hover { color: var(--kb-gold-400); }
.kb-footer-contact { display: grid; align-content: start; gap: 7px; }
.kb-footer-contact h2 { margin-bottom: 15px; }
.kb-footer-contact address { max-width: 250px; margin-top: 7px; color: #93a3ad; font-size: 13px; font-style: normal; }
.kb-footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.kb-footer-bottom p { margin: 0; color: #72838e; font-size: 11px; }
.kb-footer-bottom a { color: inherit; text-decoration: none; }
.kb-footer-bottom a:hover { color: var(--kb-gold-400); }

/* GeneratePress/default content fallback */
.kb-site:not(.kb-page-home) .site-content,
.kb-site .content-area .site-main { max-width: var(--kb-container); margin-inline: auto; }
.kb-site .site-content { padding: 70px 24px; }
.kb-site .entry-title { font-size: clamp(2.4rem, 5vw, 4.8rem); }

@media (max-width: 1100px) {
	:root { --kb-header-height: 80px; }
	.kb-nav-toggle { display: inline-flex; }
	.kb-primary-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		align-items: stretch;
		padding: 22px max(24px, calc((100vw - var(--kb-container)) / 2));
		border-top: 1px solid var(--kb-rule);
		background: var(--kb-ivory-50);
		box-shadow: 0 18px 35px rgba(6,21,34,.12);
	}
	.kb-primary-nav.is-open { display: grid; }
	.kb-menu { display: grid; gap: 0; }
	.kb-menu a { display: block; padding: 13px 0; border-bottom: 1px solid var(--kb-rule); font-family: var(--kb-serif); font-size: 22px; font-weight: 500; }
	.kb-menu a::after { display: none; }
	.kb-header-cta { margin-top: 10px; }
	.kb-home-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(350px, .7fr); gap: 25px; }
	.kb-hero-portrait-wrap { min-height: 590px; }
	.kb-hero-role-card { right: 0; }
	.kb-page-hero-grid,
	.kb-ventures-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(330px, .65fr); gap: 35px; }
	.kb-about-portrait picture { right: -70px; }
	.kb-venture-detail-grid { gap: 65px; }
	.kb-venture-detail-visual { padding: 55px; }
	.kb-venture-detail-visual p { left: 55px; }
	.kb-through-line-grid { grid-template-columns: .3fr 1fr; }
	.kb-through-line-grid > p:last-child { grid-column: 2; }
}

@media (max-width: 850px) {
	.kb-home-hero-grid { grid-template-columns: 1fr; min-height: auto; }
	.kb-hero-copy { padding: 85px 0 20px; }
	.kb-hero-portrait-wrap { min-height: 620px; }
	.kb-hero-portrait-frame { left: 50%; right: auto; width: min(560px, 88vw); transform: translateX(-50%); }
	.kb-hero-monogram { right: 0; }
	.kb-hero-role-card { right: 0; bottom: 28px; }
	.kb-proof-grid { grid-template-columns: repeat(2, 1fr); }
	.kb-proof-item:nth-child(3) { border-left: 1px solid rgba(6,21,34,.2); border-top: 1px solid rgba(6,21,34,.2); }
	.kb-proof-item:nth-child(4) { border-top: 1px solid rgba(6,21,34,.2); }
	.kb-editorial-intro,
	.kb-principles-layout,
	.kb-story-grid,
	.kb-current-grid,
	.kb-focus-grid,
	.kb-contact-layout { grid-template-columns: 1fr; gap: 55px; }
	.kb-editorial-copy { padding-top: 0; }
	.kb-section-heading-split { grid-template-columns: 1fr; gap: 14px; }
	.kb-venture-grid { grid-template-columns: 1fr; }
	.kb-venture-card { min-height: 540px; }
	.kb-sticky-heading,
	.kb-contact-details { position: static; }
	.kb-page-hero-grid,
	.kb-ventures-hero-grid { grid-template-columns: 1fr; min-height: auto; }
	.kb-page-hero-copy { padding: 90px 0 20px; }
	.kb-about-portrait { min-height: 520px; }
	.kb-about-portrait picture { left: 50%; right: auto; width: min(510px, 90vw); transform: translateX(-50%); }
	.kb-about-year { left: 10%; }
	.kb-milestone-grid { grid-template-columns: 1fr; }
	.kb-milestone-grid article,
	.kb-milestone-grid article:first-child { border-left: 1px solid var(--kb-rule); border-right: 1px solid var(--kb-rule); border-bottom: 1px solid var(--kb-rule); }
	.kb-milestone-grid article:last-child { border-bottom: 0; }
	.kb-venture-logo-composition { min-height: 500px; }
	.kb-composition-card-one { right: 28%; }
	.kb-composition-card-two { right: 8%; }
	.kb-venture-detail-grid { grid-template-columns: 1fr; }
	.kb-venture-detail-grid-reverse .kb-venture-detail-visual { order: 0; }
	.kb-venture-detail-visual { min-height: 500px; }
	.kb-contact-hero-grid { grid-template-columns: 1fr; gap: 40px; }
	.kb-contact-intro { max-width: 600px; }
	.kb-footer-grid { grid-template-columns: 1.2fr .7fr; gap: 60px; }
	.kb-footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
	:root { --kb-header-height: 72px; }
	.kb-container { width: min(calc(100% - 32px), var(--kb-container)); }
	.kb-section { padding: 78px 0; }
	.kb-brand-mark { width: 42px; height: 42px; flex-basis: 42px; }
	.kb-brand-role { display: none; }
	.kb-nav-toggle-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
	.kb-primary-nav { padding-inline: 16px; }
	.kb-site h1 { font-size: clamp(2.75rem, 13vw, 4.4rem); }
	.kb-site h2 { font-size: clamp(2.05rem, 10vw, 3.3rem); }
	.kb-eyebrow { align-items: flex-start; font-size: 9px; }
	.kb-eyebrow::before { margin-top: 6px; }
	.kb-home-hero-grid { padding-top: 0; }
	.kb-hero-copy { padding-top: 68px; }
	.kb-hero-lead { font-size: 16px; }
	.kb-button { width: 100%; }
	.kb-hero-signature { margin-top: 38px; }
	.kb-hero-portrait-wrap { min-height: 500px; }
	.kb-hero-portrait-frame { width: 470px; max-width: 112vw; }
	.kb-hero-role-card { left: 0; right: auto; bottom: 20px; width: min(290px, 92%); }
	.kb-hero-monogram { font-size: 170px; }
	.kb-proof-grid { grid-template-columns: 1fr 1fr; }
	.kb-proof-item { padding: 22px 14px; }
	.kb-proof-item strong { font-size: 20px; }
	.kb-proof-item span { font-size: 8px; }
	.kb-editorial-intro { gap: 35px; }
	.kb-editorial-intro,
	.kb-venture-grid,
	.kb-principles-layout,
	.kb-story-grid,
	.kb-current-grid,
	.kb-focus-grid,
	.kb-contact-layout,
	.kb-footer-grid { grid-template-columns: minmax(0, 1fr); }
	.kb-site h1,
	.kb-site h2,
	.kb-site h3,
	.kb-site p,
	.kb-site a,
	.kb-site address { overflow-wrap: break-word; }
	.kb-section-heading { margin-bottom: 38px; }
	.kb-venture-card { min-height: auto; padding: 28px; }
	.kb-venture-card-top { margin-bottom: 32px; }
	.kb-logo-frame { width: 90px; height: 90px; }
	.kb-card-meta { margin-top: 25px; }
	.kb-principles-layout { gap: 40px; }
	.kb-principles-list article { grid-template-columns: 36px 1fr; gap: 13px; }
	.kb-page-hero-copy { padding-top: 72px; }
	.kb-page-hero-copy h1 { font-size: clamp(2.8rem, 13vw, 4.3rem); }
	.kb-page-hero-copy > p:last-child { font-size: 16px; }
	.kb-about-portrait { min-height: 430px; }
	.kb-about-year { top: 70px; left: 0; font-size: 58px; }
	.kb-story-grid { gap: 30px; }
	.kb-story-copy .kb-story-lead { font-size: 25px; }
	.kb-story-copy p { font-size: 16px; }
	.kb-milestone-grid article { padding: 35px 28px; }
	.kb-role-stack article { padding: 22px 18px; grid-template-columns: 30px 1fr; gap: 12px; }
	.kb-focus-list { grid-template-columns: 1fr; }
	.kb-venture-logo-composition { min-height: 390px; }
	.kb-composition-card { width: 190px; height: 190px; padding: 24px; }
	.kb-composition-card-one { top: 15px; right: 25%; }
	.kb-composition-card-two { right: 0; bottom: 10px; }
	.kb-composition-line { left: -50px; top: 25px; width: 300px; height: 300px; }
	.kb-venture-detail-visual { min-height: 420px; padding: 35px; }
	.kb-detail-logo { width: 190px; height: 190px; padding: 22px; }
	.kb-venture-detail-visual p { left: 35px; bottom: 38px; font-size: 20px; }
	.kb-detail-number { font-size: 45px; }
	.kb-through-line-grid { grid-template-columns: 1fr; gap: 25px; }
	.kb-through-line-grid > p:last-child { grid-column: auto; }
	.kb-contact-hero { padding: 75px 0; }
	.kb-contact-intro { padding-left: 20px; }
	.kb-contact-details,
	.kb-form-panel { padding: 28px 22px; }
	.kb-contact-methods strong,
	.kb-contact-methods address { font-size: 17px; overflow-wrap: anywhere; }
	.kb-contact-note p { font-size: 24px; }
	.kb-footer-cta-inner { grid-template-columns: 1fr; }
	.kb-footer-grid { grid-template-columns: 1fr; gap: 45px; }
	.kb-footer-contact { grid-column: auto; }
	.kb-footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.kb-site *,
	.kb-site *::before,
	.kb-site *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media print {
	.kb-site-header,
	.kb-footer-cta,
	.kb-site-footer,
	.kb-button,
	.kb-nav-toggle { display: none !important; }
	.kb-main { overflow: visible; }
	.kb-section,
	.kb-page-hero,
	.kb-home-hero { padding: 30px 0; background: #fff !important; color: #000 !important; }
}
