:root {
	--bkdef-aubergine: #4b1f3f;
	--bkdef-gold: #c6a664;
	--bkdef-ivory: #fff8e7;
	--bkdef-dark: #2b2529;
	--bkdef-muted: #6f666b;
	--bkdef-border: rgba(75, 31, 63, 0.12);
	--bkdef-border-soft: rgba(198, 166, 100, 0.18);
	--bkdef-shadow-soft: 0 16px 36px rgba(43, 37, 41, 0.08);
	--bkdef-shadow-image: 0 18px 42px rgba(53, 31, 39, 0.14);
	--bkdef-radius: 8px;
	--bkdef-radius-lg: 8px;
	--bkdef-section-space: 60px;
	--bkdef-section-space-compact: 50px;
	--bkdef-content-width: 1120px;
	--bkdef-wide-width: 1240px;
	--bkdef-reading-width: 760px;
	--bkdef-page-gutter: 24px;
	--bkdef-header-height: 64px;
	--bkdef-header-height-scrolled: 64px;
	--bkdef-serif: "Cormorant Garamond", Georgia, serif;
	--bkdef-sans: "Source Sans 3", "Segoe UI", sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	background: #fffdf9;
	color: var(--bkdef-dark);
	font-family: var(--bkdef-sans);
	font-size: 14.5px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}

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

figure {
	margin: 0;
}

a {
	color: var(--bkdef-aubergine);
	text-decoration-color: rgba(75, 31, 63, 0.28);
	text-underline-offset: 0.14em;
}

a:hover,
a:focus-visible {
	color: #321428;
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-title-link {
	color: var(--bkdef-aubergine);
	font-family: var(--bkdef-serif);
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -0.03em;
}

button,
input,
select,
textarea {
	font: inherit;
}

:focus-visible {
	outline: 2px solid rgba(198, 166, 100, 0.86);
	outline-offset: 3px;
}

.skip-link {
	position: fixed;
	left: 14px;
	top: -48px;
	background: var(--bkdef-gold);
	color: var(--bkdef-aubergine);
	padding: 10px 14px;
	border-radius: 999px;
	z-index: 1200;
	text-decoration: none;
}

.skip-link:focus {
	top: 12px;
}

.site-main {
	position: relative;
	z-index: 10;
}

body.no-hero-header .site-main {
	padding-top: var(--bkdef-header-height);
}

body.mobile-nav-open {
	overflow: hidden;
}

.bkdef-container,
.container,
.container-fluid {
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-content-width));
	margin-inline: auto;
	padding-inline: 0;
}

.bkdef-container-wide,
.bkdef-container--wide,
.alignwide {
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-wide-width));
	margin-inline: auto;
}

.bkdef-reading-width,
.bkdef-container--narrow {
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-reading-width));
	margin-inline: auto;
}

.bkdef-section,
.section-padding {
	padding-block: var(--bkdef-section-space);
}

.bkdef-section--compact {
	padding-block: var(--bkdef-section-space-compact);
}

.alignfull {
	width: 100%;
	max-width: none;
}

.site-main > .wp-block-group.alignfull,
.site-main > .wp-block-cover.alignfull,
.page-entry .entry-content > .alignfull {
	margin-block: 0;
}

.wp-block-group,
.wp-block-cover,
.page-entry,
.page-entry .entry-content,
.post-entry,
.post-content {
	box-sizing: border-box;
}

.wp-block-group > .wp-block-group__inner-container > :first-child,
.wp-block-group > .wp-block-group__inner-container > .wp-block-columns:first-child,
.wp-block-group > .wp-block-group__inner-container > .wp-block-group:first-child,
.wp-block-group > .wp-block-group__inner-container > .wp-block-image:first-child,
.wp-block-columns > .wp-block-column > :first-child {
	margin-block-start: 0;
}

.wp-block-group > .wp-block-group__inner-container > :last-child,
.wp-block-columns > .wp-block-column > :last-child {
	margin-block-end: 0;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--bkdef-header-height);
	transition: background-color 0.24s ease, box-shadow 0.24s ease;
}

body.admin-bar .site-header {
	top: 32px;
}

.site-header::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	transition: background-color 0.24s ease, opacity 0.24s ease;
}

.site-header--overlay::before {
	background: linear-gradient(to bottom, rgba(35, 10, 30, 0.76), rgba(35, 10, 30, 0.10));
}

.site-header--solid::before,
.site-header.is-scrolled::before {
	background: rgba(75, 31, 63, 0.97);
}

.site-header.is-scrolled {
	box-shadow: 0 8px 24px rgba(31, 14, 26, 0.18);
}

.header-nav {
	padding: 0;
	min-height: var(--bkdef-header-height);
}

.site-header.is-scrolled .header-nav {
	min-height: var(--bkdef-header-height-scrolled);
}

.header-nav__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-wide-width));
	min-height: var(--bkdef-header-height);
	padding-top: 10px;
	padding-bottom: 10px;
}

.site-branding {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.site-branding .custom-logo-link,
.footer-site-title {
	display: inline-flex;
	align-items: center;
}

.site-branding .custom-logo {
	max-height: 60px;
	width: auto;
}

.site-title-link {
	color: #fff8e7;
	font-size: 1.2rem;
	text-decoration: none;
}

.header-nav__panel {
	flex-grow: 0;
}

.header-nav__menu-wrap {
	display: flex;
	align-items: center;
	gap: 24px;
}

.header-nav__menu,
.navbar-nav {
	gap: 28px;
}

.nav-link {
	color: #fff8e7;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	padding: 0.18rem 0;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
}

.nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 1px;
	background: var(--bkdef-gold);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after,
.nav-link:focus-visible::after {
	transform: scaleX(1);
}

.btn,
.wp-block-button__link {
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	padding: 13px 20px;
	text-transform: uppercase;
}

.btn-header-donate,
.is-style-bkdef-button-primary .wp-block-button__link {
	background: var(--bkdef-gold);
	border: 1px solid var(--bkdef-gold);
	color: var(--bkdef-aubergine);
	text-decoration: none;
}

.btn-header-donate {
	min-height: 36px;
	padding: 10px 20px;
}

.btn-header-donate:hover,
.btn-header-donate:focus-visible,
.is-style-bkdef-button-primary .wp-block-button__link:hover,
.is-style-bkdef-button-primary .wp-block-button__link:focus-visible {
	background: #d3b578;
	border-color: #d3b578;
	color: var(--bkdef-aubergine);
}

.is-style-bkdef-button-outline-light .wp-block-button__link {
	background: transparent;
	border: 1px solid rgba(255, 248, 231, 0.7);
	color: #fff8e7;
	text-decoration: none;
}

.is-style-bkdef-button-outline-light .wp-block-button__link:hover,
.is-style-bkdef-button-outline-light .wp-block-button__link:focus-visible {
	background: rgba(255, 248, 231, 0.1);
	border-color: #fff8e7;
}

.is-style-bkdef-button-link .wp-block-button__link {
	padding: 0;
	background: transparent;
	border: 0;
	color: var(--bkdef-aubergine);
	font-size: 12px;
	text-decoration: none;
}

.is-style-bkdef-button-link .wp-block-button__link::after,
.bkdef-text-link a::after,
.wp-block-read-more.bkdef-text-link::after,
.text-link::after {
	content: " →";
}

.navbar-toggler {
	border: 1px solid rgba(255, 248, 231, 0.18);
	border-radius: 999px;
	color: #fff8e7;
	padding: 8px 12px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: transparent;
}

.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
	border-top: 2px solid currentColor;
	display: inline-block;
	width: 18px;
}

.navbar-toggler-icon {
	position: relative;
	height: 14px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
	content: "";
	left: 0;
	position: absolute;
}

.navbar-toggler-icon::before {
	top: 5px;
}

.navbar-toggler-icon::after {
	top: 10px;
}

.toggler-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bkdef-page-hero-banner,
.bkdef-page-hero,
.bkdef-hero-block {
	position: relative;
	isolation: isolate;
	background-color: var(--bkdef-aubergine);
	margin-top: 0;
}

.bkdef-page-hero-banner__media,
.bkdef-page-hero-banner__overlay,
.bkdef-page-hero-banner__content {
	position: absolute;
	inset: 0;
}

.bkdef-page-hero-banner__media,
.bkdef-page-hero-banner__overlay {
	z-index: 1;
}

.bkdef-page-hero-banner__content {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	min-height: clamp(360px, 35vw, 430px);
	padding-top: 112px;
	padding-bottom: 46px;
}

.bkdef-page-hero-banner__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.bkdef-page-hero-banner__overlay,
.bkdef-page-hero::before,
.bkdef-hero-block::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(35, 10, 30, 0.94) 0%, rgba(55, 20, 45, 0.78) 28%, rgba(55, 20, 45, 0.28) 56%, rgba(55, 20, 45, 0.04) 78%);
	z-index: 1;
}

.bkdef-page-hero-banner__copy,
.bkdef-page-hero .wp-block-cover__inner-container,
.bkdef-hero-block .wp-block-cover__inner-container {
	position: relative;
	z-index: 3;
	width: 100%;
}

.bkdef-page-hero-banner__copy,
.bkdef-hero-block__content {
	max-width: 470px;
}

.bkdef-page-hero-banner__title,
.bkdef-page-hero h1 {
	color: #fff8e7;
	font-size: clamp(38px, 4vw, 50px);
	margin-bottom: 14px;
}

.bkdef-page-hero-banner__intro,
.bkdef-page-hero p {
	color: #fff8e7;
	font-size: 15px;
	max-width: 33ch;
	margin-bottom: 0;
}

.bkdef-page-hero {
	min-height: clamp(360px, 35vw, 430px);
}

.bkdef-page-hero .wp-block-cover__inner-container {
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-wide-width));
	margin-inline: auto;
	padding-top: 112px;
	padding-bottom: 46px;
}

.bkdef-page-hero .wp-block-cover__image-background,
.bkdef-hero-block .wp-block-cover__image-background {
	object-position: center center;
}

.bkdef-hero-block {
	min-height: 515px !important;
}

.bkdef-hero-block .wp-block-cover__inner-container {
	width: 100%;
}

.bkdef-hero-block .wp-block-cover__image-background {
	object-position: 74% center;
}
.benji-sec{
	background-image: url('/wp-content/uploads/2026/07/binigback.png');
    background-position: top;
    background-repeat: no-repeat;
    padding-bottom: 0!important;
    background-color: #fffbf1;
}
.bengi-img{
	top: -487px !important;
    position: absolute;
	height: 887px!important
}

.bkdef-hero-block__inner {
	display: flex;
	align-items: center;
	width: min(calc(100% - 48px), 1240px);
	margin-inline: auto;
	min-height: 515px;
	padding-top: 116px;
	padding-bottom: 42px;
}

.bkdef-hero-block__content {
	max-width: 550px;
	padding-top: 55px;
}

.bkdef-section-eyebrow,
.section-kicker {
	color: var(--bkdef-gold)!important;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.14em;
	margin-bottom: 12px;
	text-transform: uppercase;
	opacity: 0.95;
}

.bkdef-hero-title {
	color: #fff8e7!important;
	font-size: clamp(42px, 4.3vw, 56px);
	line-height: 0.99;
	margin-bottom: 14px;
	max-width: 460px;
	word-break: keep-all;
	overflow-wrap: normal;
}

.bkdef-hero-title .is-gold-line {
	color: var(--bkdef-gold);
}

.bkdef-hero-copy {
	color: #fff8e7!important;
	font-size: 28px;
	line-height: 1.55;
	margin-bottom: 20px;
	max-width: 410px;
	opacity: 1;
}

.bkdef-hero-actions {
	gap: 10px;
}

.bkdef-hero-actions .wp-block-button__link {
	min-height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-inline: 22px;
	font-size: 12.5px;
}

.bkdef-about-block,
.bkdef-impact-block,
.bkdef-news-panel,
.page-entry,
.error-page {
	background: #fffdf9;
}

.has-text-align-center{
	text-align: center;
}

.bkdef-impact-block > .wp-block-group__inner-container,
.bkdef-about-block > .wp-block-group__inner-container,
.bkdef-founder-news-block > .wp-block-group__inner-container,
.bkdef-newsletter-block > .wp-block-group__inner-container,
.page-entry .entry-content > *:not(.alignwide):not(.alignfull),
.post-entry .entry-content > *:not(.alignwide):not(.alignfull) {
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-content-width));
	margin-inline: auto;
}

.page-entry .entry-content > :where(p, ul, ol, blockquote, pre, table, h2, h3, h4, h5, h6):not(.alignwide):not(.alignfull),
.post-entry .entry-content > :where(p, ul, ol, blockquote, pre, table, h2, h3, h4, h5, h6):not(.alignwide):not(.alignfull),
.page-entry .entry-content > .wp-block-buttons:not(.alignwide):not(.alignfull),
.post-entry .entry-content > .wp-block-buttons:not(.alignwide):not(.alignfull) {
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-reading-width));
}

.bkdef-about-block {
	padding-block: 68px;
}

.bkdef-about-columns,
.bkdef-founder-news-columns,
.bkdef-newsletter-columns {
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-content-width));
	margin-inline: auto;
}

.bkdef-impact-head,
.bkdef-impact-grid {
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-content-width));
	margin-inline: auto;
}

.bkdef-about-columns {
	gap: 66px;
	align-items: center !important;
}

.bkdef-about-columns > .wp-block-column:first-child {
	flex-basis: 44% !important;
	max-width: 470px;
}

.bkdef-about-columns > .wp-block-column:last-child {
	flex-basis: 56% !important;
}

.bkdef-section-title {
	font-size: clamp(36px, 2.8vw, 44px);
	line-height: 1.07;
	margin-bottom: 14px;
	
}

.bkdef-about-block p:not(.bkdef-section-eyebrow),
.bkdef-founder-panel p:not(.bkdef-section-eyebrow),
.bkdef-newsletter-block p:not(.bkdef-section-eyebrow),
.bkdef-news-panel p:not(.bkdef-section-eyebrow),
.page-entry .entry-content p,
.archive-description,
.error-page p {
	font-size: 22px;
	line-height: 1.65;
}

.bkdef-text-link,
.bkdef-text-link a,
.wp-block-read-more.bkdef-text-link,
.text-link {
	color: var(--bkdef-aubergine);
	font-size: 22px;
	text-decoration: none;
	letter-spacing: 0.04em;
}

.bkdef-about-image img,
.bkdef-founder-image img,
.image-treatment img,
.post-thumbnail img {
	width: auto!important;
	object-fit: cover;
}

.bkdef-about-image img {
	border-radius: 9px;
}

.about-psec{
	font-size: 16px!important;
}

.bkdef-impact-block {
	padding-top: 50px;
	padding-bottom: 60px;
	background: #fffbf1;
}

.bkdef-impact-head {
	margin-bottom: 34px;
}

.bkdef-impact-head .bkdef-section-title {
	font-size: clamp(29px, 2.8vw, 44px);
	line-height: 1.05;
	margin-inline: auto;
}

.bkdef-impact-grid {
	gap: 18px;
}

.bkdef-impact-grid > .wp-block-column {
	display: flex;
}

.bkdef-impact-grid .wp-block-html {
	display: none;
}

.bkdef-impact-item {
	position: relative;
	text-align: center;
	padding: 0;
	width: 100%;
}

.bkdef-impact-item::before {
	content: "";
	display: block;
	width: 32px;
	height: 32px;
	margin: 0 auto 12px;
	background-color: var(--bkdef-gold);
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
}

.bkdef-impact-grid > .wp-block-column:nth-child(1) .bkdef-impact-item::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='black' d='M12 14a6 6 0 0 1 6-6h30a6 6 0 0 1 6 6v36a2 2 0 0 1-3.2 1.6L36 41l-14.8 10.6A2 2 0 0 1 18 50V16a4 4 0 0 0-6 0v30H8V14h4Zm10-2v30.7l13-9.3 13 9.3V12H22Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='black' d='M12 14a6 6 0 0 1 6-6h30a6 6 0 0 1 6 6v36a2 2 0 0 1-3.2 1.6L36 41l-14.8 10.6A2 2 0 0 1 18 50V16a4 4 0 0 0-6 0v30H8V14h4Zm10-2v30.7l13-9.3 13 9.3V12H22Z'/%3E%3C/svg%3E");
}

.bkdef-impact-grid > .wp-block-column:nth-child(2) .bkdef-impact-item::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='black' d='M32 7l7 14 15 2.2-10.9 10.6L45.7 49 32 41.8 18.3 49l2.6-15.2L10 23.2 25 21l7-14Zm0 7.7-4.4 8.8-9.8 1.4 7.1 6.9-1.7 9.7 8.8-4.6 8.8 4.6-1.7-9.7 7.1-6.9-9.8-1.4-4.4-8.8Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='black' d='M32 7l7 14 15 2.2-10.9 10.6L45.7 49 32 41.8 18.3 49l2.6-15.2L10 23.2 25 21l7-14Zm0 7.7-4.4 8.8-9.8 1.4 7.1 6.9-1.7 9.7 8.8-4.6 8.8 4.6-1.7-9.7 7.1-6.9-9.8-1.4-4.4-8.8Z'/%3E%3C/svg%3E");
}

.bkdef-impact-grid > .wp-block-column:nth-child(3) .bkdef-impact-item::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='black' d='M30 9c8.5 0 15 6.1 15 14.1 0 5.7-3.4 10.6-8.7 13.4l8 9.4h8.7v5H11v-5h8.7l8.1-9.5C22.5 33.7 19 28.8 19 23.1 19 15.1 24.2 9 30 9Zm0 5c-3.9 0-6 4-6 9.1 0 5.7 3.2 10.1 6 10.1s6-4.4 6-10.1c0-5.1-2.1-9.1-6-9.1Zm-.1 23.8-6.9 8.1h14l-7.1-8.1Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='black' d='M30 9c8.5 0 15 6.1 15 14.1 0 5.7-3.4 10.6-8.7 13.4l8 9.4h8.7v5H11v-5h8.7l8.1-9.5C22.5 33.7 19 28.8 19 23.1 19 15.1 24.2 9 30 9Zm0 5c-3.9 0-6 4-6 9.1 0 5.7 3.2 10.1 6 10.1s6-4.4 6-10.1c0-5.1-2.1-9.1-6-9.1Zm-.1 23.8-6.9 8.1h14l-7.1-8.1Z'/%3E%3C/svg%3E");
}

.bkdef-impact-grid > .wp-block-column:nth-child(4) .bkdef-impact-item::before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='black' d='M29 10h6v14h14v6H35v24h-6V30H15v-6h14V10Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='black' d='M29 10h6v14h14v6H35v24h-6V30H15v-6h14V10Z'/%3E%3C/svg%3E");
}

.bkdef-impact-title {
	font-size: 23px;
	margin: 10px 0 8px;
}

.bkdef-impact-copy {
	color: var(--bkdef-muted);
	font-size: 18px;
	line-height: 1.46;
	max-width: 182px;
	margin: 0 auto;
}


.benji-news{
	padding-top: 0!important;
	padding-bottom: 0%!important;
}

.bkdef-founder-news-columns {
	gap: 0 !important;
	align-items: stretch !important;
}

.bkdef-founder-news-columns > .wp-block-column:first-child {
	flex-basis: 50% !important;
	position: relative;
}

.bkdef-founder-news-columns > .wp-block-column:last-child {
	flex-basis: 50% !important;
	display: flex;
	flex-direction: column;
}


.bkdef-founder-image img {
	aspect-ratio: auto;
	object-fit: cover;
	object-position: center top;
	border-radius: 0;
	box-shadow: none;
}

@media (min-width: 992px) {
	body.home .benji-news .bkdef-founder-news-columns,
	body.home .benji-news .bkdef-founder-news-columns > .wp-block-column:first-child {
		overflow: visible;
	}

	body.home .benji-news .bkdef-founder-news-columns > .wp-block-column:first-child,
	body.home .benji-news .bkdef-founder-image {
		position: relative;
		z-index: 2;
	}

	body.home .benji-news .bkdef-founder-image {
		margin-bottom: -76px;
	}
}

.bkdef-founder-panel {
	padding: 100px 30px 30px;
}

.bkdef-founder-panel .bkdef-section-eyebrow,
.bkdef-founder-panel .bkdef-founder-title,
.bkdef-founder-panel p,
.bkdef-founder-panel .bkdef-text-link,
.bkdef-founder-panel .bkdef-text-link a {
	color: #fff8e7;
}

.bkdef-founder-title {
	font-size: clamp(26px, 2.4vw, 31px);
	margin-bottom: 12px;
}

.bkdef-news-panel {
	padding: 30px;
	flex: 1;
}

.bkdef-news-head,
.section-heading {
	margin-bottom: 18px;
}

.section-heading h1 {
	font-size: clamp(24px, 2.2vw, 29px);
	margin-bottom: 0;
}

.bkdef-news-title {
	font-size: clamp(24px, 2.2vw, 29px);
}
.bkdef-news-card-body .wp-block-post-date, 
.bkdef-news-card-body .taxonomy-category,
.bkdef-news-card-body .screen-reader-text{
	display: none!important;
}
.bkdef-news-card-body .wp-block-read-more{
font-size: 13px!important;
}

.bkdef-news-template {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	justify-content: start;
	gap: 16px;
}

.bkdef-news-template li{
	list-style-type: none;
}

.bkdef-news-template > * {
	min-width: 0;
}

.bkdef-news-template > :only-child {
	max-width: 220px;
	width: 100%;
}

.bkdef-news-card,
.bk-card,
.post-card {
	background: rgba(255, 255, 255, 0.68);
	border: 1px solid var(--bkdef-border);
	border-radius: var(--bkdef-radius);
	overflow: hidden;
	box-shadow: none;
}

.bkdef-news-card {
	display: block;
}

.bkdef-news-card-image,
.bkdef-news-card-image a,
.bkdef-news-card-image img,
.bkdef-news-card-image .wp-post-image {
	height: auto;
}

.bkdef-news-card-image img,
.bkdef-news-card-image .wp-post-image {
	width: 100%;
	height: 120px;
	aspect-ratio: auto;
	object-fit: cover;
}

.bkdef-news-card-body,
.post-content {
	padding: 12px 14px 14px;
}

.bkdef-news-card-meta,
.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 6px;
	font-size: 11px;
	color: var(--bkdef-muted);
	text-transform: uppercase;
	letter-spacing: 0.07em;
}

.bkdef-news-card .wp-block-post-title,
.post-card .entry-title,
.post-entry .entry-title {
	font-size: 15px;
	line-height: 1.32;
	margin-bottom: 6px;
}

.post-entry .entry-title {
	font-size: clamp(30px, 3vw, 38px);
}

.bkdef-news-card .wp-block-post-title a,
.post-card .entry-title a,
.post-entry .entry-title a {
	text-decoration: none;
}

.bkdef-news-card .wp-block-post-excerpt,
.bkdef-news-card .wp-block-post-excerpt p,
.entry-summary,
.entry-summary p {
	font-size: 12.5px;
	line-height: 1.45;
	color: var(--bkdef-muted);
	margin-bottom: 6px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.post-thumbnail {
	display: block;
}

.post-thumbnail img {
	aspect-ratio: 1.58 / 1;
}

.post-entry .post-thumbnail {
	margin-bottom: 24px;
}

.page-entry .entry-header,
.post-entry .entry-header {
	margin-bottom: 0;
}

.page-entry .entry-content > * {
	margin-top: 0;
	margin-bottom: 1rem;
}

.page-entry .entry-content > .bkdef-page-hero,
.page-entry .entry-content > .alignfull:first-child {
	margin-top: 0;
}

.rich-copy a {
	word-break: break-word;
}

.bkdef-newsletter-block {
	max-width: none;
	padding: 0;
	background: transparent;
}

.bkdef-newsletter-columns {
	background: var(--bkdef-aubergine);
	border-radius: 0;
	padding: 60px 28px;
	align-items: center;
	min-height: 112px;
	gap: 22px;
}

.bkdef-newsletter-columns > .wp-block-column:nth-child(1) {
	flex-basis: 13% !important;
}

.bkdef-newsletter-columns > .wp-block-column:nth-child(2) {
	flex-basis: 39% !important;
}

.bkdef-newsletter-columns > .wp-block-column:nth-child(3) {
	flex-basis: 48% !important;
}

.bkdef-newsletter-title {
	color: #fff8e7;
	font-size: clamp(21px, 2vw, 25px);
	margin-bottom: 6px;
}

.bkdef-newsletter-block p {
	color: rgba(255, 248, 231, 0.8);
	margin-bottom: 0;
	font-size: 12.5px;
	line-height: 1.46;
}

.bkdef-newsletter-mark img {
	width: 60px;
	height: auto;
	opacity: 0.95;
}

.subscription-form .frm-fluent-form .ff-t-cell .ff_submit_btn_wrapper_custom button{
	margin-bottom: 0!important;
}
.view-all-btn{
	background: var(--bkdef-gold) !important;
    border-color: var(--bkdef-gold) !important;
    color: var(--bkdef-aubergine) !important;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    min-height: 41px;
    padding: 0.72rem 1.1rem !important;
    text-transform: uppercase;
    border-radius: 6px !important;
}
.news-letter-bottom{
	background: var(--bkdef-aubergine);
}

.bkdef-newsletter-block .wp-block-column:last-child {
	display: flex;
	justify-content: flex-end;
}

.bkdef-newsletter-block .wp-block-shortcode,
.bkdef-newsletter-block .fluentform,
.bkdef-newsletter-block form {
	width: 100%;
}

.bkdef-newsletter-block .fluentform,
.bkdef-newsletter-block .fluentform_wrapper_2,
.bkdef-newsletter-block .ffs_default_wrap {
	margin: 0 !important;
}

.bkdef-newsletter-block .fluentform fieldset,
.bkdef-newsletter-block .fluentform .ff-el-group,
.bkdef-newsletter-block .fluentform .ff_submit_btn_wrapper,
.bkdef-newsletter-block .fluentform .ff-t-cell {
	margin: 0 !important;
	padding: 0 !important;
}

.bkdef-newsletter-block .fluentform .ff-t-container,
.bkdef-newsletter-block .fluentform .ff-form-fields-container {
	display: flex !important;
	align-items: center;
	gap: 10px;
	flex-wrap: nowrap;
}

.bkdef-newsletter-block .fluentform input[type="email"],
.bkdef-newsletter-block .fluentform input[type="text"],
.bkdef-newsletter-block .fluentform .ff-el-form-control {
	background: rgba(255, 255, 255, 0.98) !important;
	border: 1px solid rgba(255, 248, 231, 0.2) !important;
	border-radius: 6px !important;
	min-height: 41px;
	padding: 0.72rem 0.9rem !important;
	font-size: 12.5px;
}

.bkdef-newsletter-block .fluentform .ff-btn,
.bkdef-newsletter-block .fluentform button.ff-btn,
.bkdef-newsletter-block .fluentform .ff_submit_btn_wrapper button {
	background: var(--bkdef-gold) !important;
	border-color: var(--bkdef-gold) !important;
	color: var(--bkdef-aubergine) !important;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	min-height: 41px;
	padding: 0.72rem 1.1rem !important;
	text-transform: uppercase;
	border-radius: 6px !important;
}

.wp-block-query-pagination,
.pagination,
.nav-links {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 26px;
}

.wp-block-query-pagination a,
.wp-block-query-pagination span,
.page-numbers {
	border: 1px solid var(--bkdef-border);
	border-radius: 999px;
	padding: 9px 12px;
	text-decoration: none;
}

.site-footer--compact {
	background: #220c20;
	color: rgba(255, 248, 231, 0.82);
	margin-top: 0;
	padding-top: 40px;
	padding-bottom: 0;
}

.site-footer__container {
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-content-width));
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 0.8fr 0.9fr 0.9fr 0.7fr;
	gap: 30px;
	padding-bottom: 22px;
}

.site-footer__brand .custom-logo {
	max-height: 60px;
	width: auto;
	margin-bottom: 12px;
}

.site-footer__brand p,
.site-footer__contact-line,
.site-footer__privacy {
	font-size: 11.5px;
	line-height: 1.55;
}

.site-footer__heading {
	color: var(--bkdef-gold);
	font-family: var(--bkdef-sans);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 6px;
}

.footer-menu-link,
.site-footer__brand a,
.site-footer__contact-line a,
.site-footer__privacy a {
	color: #fff8e7;
	font-size: 11.5px;
	line-height: 1.7;
	text-decoration: none;
}

.site-footer__social {
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.site-footer__social a {
	width: 28px;
	height: 28px;
	border: 1px solid rgba(255, 248, 231, 0.18);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff8e7;
}

.site-footer__social svg {
	width: 14px;
	height: 14px;
}

.site-footer__bottom {
	border-top: 1px solid rgba(198, 166, 100, 0.24);
	margin-top: 22px;
	padding: 12px 0 14px;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.site-footer__bottom p {
	font-size: 10px;
	margin: 0;
}

.home .site-main > *:first-child,
.page-has-hero .site-main > *:first-child {
	margin-top: 0;
}

@media (max-width: 1199.98px) {
	.site-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr 1fr;
	}

	.site-footer__connect {
		grid-column: 1 / -1;
	}
}

@media (max-width: 1024px) {
	:root {
		--bkdef-section-space: 54px;
		--bkdef-section-space-compact: 44px;
	}

	.bkdef-hero-block {
		min-height: 490px !important;
	}

	.bkdef-hero-block__inner {
		min-height: 490px;
		padding-top: 108px;
		padding-bottom: 38px;
	}

	.bkdef-founder-image,
	.bkdef-founder-image img {
		height: 78px!important;
	}
}

@media (max-width: 991.98px) {
	.header-nav__menu-wrap {
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.header-nav .navbar-collapse {
		background: rgba(54, 24, 45, 0.99);
		border-radius: 8px;
		padding: 14px 16px 16px;
		margin-top: 10px;
		box-shadow: 0 18px 36px rgba(18, 9, 16, 0.28);
	}

	.header-nav .navbar-nav {
		gap: 0.4rem;
		width: 100%;
	}

	.nav-link {
		font-size: 12px;
		padding: 0.45rem 0;
	}

	.nav-link::after {
		left: 0;
		right: auto;
		width: 18px;
	}

	.btn-header-donate {
		display: inline-flex;
		margin-top: 2px;
	}

	.bkdef-about-columns,
	.bkdef-founder-news-columns,
	.bkdef-newsletter-columns {
		flex-wrap: wrap !important;
	}

	.bkdef-hero-block .wp-block-cover__image-background {
		object-position: 76% center;
	}

	.bkdef-founder-news-columns > .wp-block-column:last-child {
		display: block;
	}

	.bkdef-founder-image,
	.bkdef-founder-image img {
		min-height: 400px;
	}

	.bkdef-founder-panel {
		border-radius: 0;
	}

	.bkdef-news-panel {
		border-radius: 0 0 8px 8px;
	}

	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__connect {
		grid-column: auto;
	}
}

@media (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

@media (max-width: 767.98px) {
	:root {
		--bkdef-section-space: 50px;
		--bkdef-section-space-compact: 42px;
		--bkdef-header-height: 60px;
		--bkdef-header-height-scrolled: 60px;
	}

	.bkdef-container,
	.bkdef-container-wide,
	.bkdef-reading-width,
	.bkdef-container--wide,
	.bkdef-container--narrow,
	.container,
	.container-fluid,
	.alignwide,
	.page-entry .entry-content > *:not(.alignwide):not(.alignfull),
	.post-entry .entry-content > *:not(.alignwide):not(.alignfull),
	.page-entry .entry-content > :where(p, ul, ol, blockquote, pre, table, h2, h3, h4, h5, h6):not(.alignwide):not(.alignfull),
	.post-entry .entry-content > :where(p, ul, ol, blockquote, pre, table, h2, h3, h4, h5, h6):not(.alignwide):not(.alignfull),
	.bkdef-about-block > .wp-block-group__inner-container,
	.bkdef-impact-block > .wp-block-group__inner-container,
	.bkdef-founder-news-block > .wp-block-group__inner-container,
	.bkdef-newsletter-block > .wp-block-group__inner-container,
	.bkdef-page-hero .wp-block-cover__inner-container,
	.bkdef-about-columns,
	.bkdef-impact-head,
	.bkdef-impact-grid,
	.bkdef-founder-news-columns,
	.bkdef-newsletter-columns,
	.bkdef-hero-block__inner,
	.site-footer__container,
	.header-nav__container {
		width: min(calc(100% - 32px), 100%);
	}

	.site-branding .custom-logo {
		max-height: 44px;
	}

	.bkdef-page-hero-banner__content,
	.bkdef-page-hero .wp-block-cover__inner-container,
	.bkdef-hero-block__inner {
		padding-top: 94px;
	}

	.bkdef-page-hero-banner__content,
	.bkdef-page-hero {
		min-height: 360px;
	}

	.bkdef-hero-block {
		min-height: 520px !important;
	}

	.bkdef-hero-block__inner {
		min-height: 520px;
		padding-bottom: 36px;
	}

	/*.bkdef-hero-block::before,
	.bkdef-page-hero::before,
	.bkdef-page-hero-banner__overlay {
		background: linear-gradient(180deg, rgba(35, 10, 30, 0.9) 0%, rgba(55, 20, 45, 0.72) 50%, rgba(55, 20, 45, 0.24) 100%);
	}*/

	.bkdef-hero-block .wp-block-cover__image-background {
		object-position: 68% center;
	}

	.bkdef-hero-block__content,
	.bkdef-page-hero-banner__copy {
		max-width: 100%;
		padding-top: 20px;
	}

	.bkdef-hero-title {
		font-size: clamp(34px, 9vw, 37px);
		max-width: 100%;
	}

	.bkdef-hero-copy {
		font-size: 22px;
		max-width: 100%;
	}

	.bkdef-hero-actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.bkdef-about-columns,
	.bkdef-founder-news-columns,
	.bkdef-newsletter-columns {
		gap: 24px;
	}

	.bkdef-about-columns > .wp-block-column:first-child,
	.bkdef-about-columns > .wp-block-column:last-child,
	.bkdef-founder-news-columns > .wp-block-column:first-child,
	.bkdef-founder-news-columns > .wp-block-column:last-child {
		flex-basis: 100% !important;
		max-width: none;
	}

	.bkdef-section-title {
		font-size: 30px;
	}

	.bkdef-impact-grid {
		flex-wrap: wrap !important;
	}

	.bkdef-impact-grid > .wp-block-column {
		flex-basis: calc(50% - 17px) !important;
	}

	.bkdef-founder-image,
	.bkdef-founder-image img {
		min-height: 360px;
	}

	.bkdef-founder-panel,
	.bkdef-news-panel,
	.bkdef-newsletter-columns {
		padding: 24px 22px;
	}

	.bkdef-news-template {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bkdef-news-template > :only-child {
		max-width: 220px;
	}

	.bkdef-newsletter-block {
		margin: 32px 0 48px;
	}

	.bkdef-newsletter-block .wp-block-column:last-child {
		justify-content: stretch;
	}

	.bkdef-newsletter-block .fluentform .ff-t-container,
	.bkdef-newsletter-block .fluentform .ff-form-fields-container {
		flex-wrap: wrap;
	}

	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.bkdef-impact-grid > .wp-block-column {
		flex-basis: calc(50% - 8px) !important;
	}

	.bkdef-news-template {
		grid-template-columns: 1fr;
	}

	.bkdef-news-card,
	.bkdef-news-template > :only-child {
		max-width: 230px;
	}

	.bkdef-newsletter-columns {
		padding: 20px 18px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}
}

/* Unified inner page hero system */
body.has-page-hero .site-main {
	padding-top: 0;
}

body.no-page-hero .site-main {
	padding-top: var(--bkdef-header-height);
}

body.has-page-hero .site-header--overlay::before {
	background: linear-gradient(to bottom, rgba(30, 8, 26, 0.64), rgba(30, 8, 26, 0.08));
}

body.has-page-hero .site-header.is-scrolled::before,
body.has-page-hero .site-header--overlay.is-scrolled::before {
	background: rgba(75, 31, 63, 0.97);
}

.bkdef-page-hero--generated {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: stretch;
	min-height: clamp(430px, 34vw, 480px);
	margin: 0;
	background: var(--bkdef-aubergine);
	overflow: clip;
}

.bkdef-page-hero--generated.bkdef-page-hero--archive,
.bkdef-page-hero--generated.bkdef-page-hero--single {
	min-height: clamp(400px, 31vw, 450px);
}

.bkdef-page-hero--generated.has-no-hero-image {
	background:
		radial-gradient(circle at 78% 30%, rgba(198, 166, 100, 0.12), transparent 28%),
		linear-gradient(135deg, rgba(75, 31, 63, 1) 0%, rgba(54, 19, 45, 1) 48%, rgba(40, 12, 33, 1) 100%);
}

.bkdef-page-hero__media,
.bkdef-page-hero__overlay {
	position: absolute;
	inset: 0;
}

.bkdef-page-hero__media {
	z-index: 0;
}

.bkdef-page-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.bkdef-page-hero__overlay {
	z-index: 1;
	background: linear-gradient(90deg, rgba(28, 6, 24, 0.96) 0%, rgba(45, 14, 38, 0.86) 28%, rgba(62, 27, 52, 0.44) 52%, rgba(62, 27, 52, 0.12) 72%, rgba(62, 27, 52, 0) 84%);
}

.bkdef-page-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-wide-width));
	min-height: inherit;
	padding-top: calc(var(--bkdef-header-height) + 72px);
	padding-bottom: 56px;
}

body.admin-bar .bkdef-page-hero__inner {
	padding-top: calc(var(--bkdef-header-height) + 104px);
}

.bkdef-page-hero__content {
	max-width: 560px;
	width: 100%;
}

.bkdef-page-hero__breadcrumb {
	margin: 0 0 16px;
	color: rgba(255, 248, 231, 0.84);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.28;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bkdef-page-hero__breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bkdef-page-hero__breadcrumb-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	line-height: 1.4;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 248, 231, 0.84);
}

.bkdef-page-hero__breadcrumb-item + .bkdef-page-hero__breadcrumb-item::before {
	content: "/";
	color: rgba(255, 248, 231, 0.52);
}

.bkdef-page-hero__breadcrumb a,
.bkdef-page-hero__breadcrumb span {
	color: inherit;
	text-decoration: none;
}

.bkdef-page-hero__eyebrow {
	margin: 0 0 12px;
	color: var(--bkdef-gold);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.bkdef-page-hero__title {
	margin: 0;
	max-width: 10.5ch;
	color: var(--bkdef-ivory);
	font-size: clamp(44px, 4vw, 54px);
	line-height: 1.02;
	letter-spacing: -0.03em;
}

.bkdef-page-hero__title .is-highlight,
.bkdef-page-hero__title .has-inline-color {
	color: var(--bkdef-gold);
}

.bkdef-page-hero__intro {
	margin: 18px 0 0;
	max-width: 520px;
	color: rgba(255, 248, 231, 0.94);
	font-size: 15.5px;
	line-height: 1.55;
}

.bkdef-page-hero.wp-block-cover {
	min-height: clamp(460px, 36vw, 500px);
	margin: 0;
	background: var(--bkdef-aubergine);
}

.bkdef-page-hero.wp-block-cover > .wp-block-cover__image-background {
	object-fit: cover;
	object-position: center center;
}

.bkdef-page-hero.wp-block-cover::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(28, 6, 24, 0.96) 0%, rgba(45, 14, 38, 0.86) 28%, rgba(62, 27, 52, 0.44) 52%, rgba(62, 27, 52, 0.12) 72%, rgba(62, 27, 52, 0) 84%);
	pointer-events: none;
}

.bkdef-page-hero.wp-block-cover .wp-block-cover__background,
.bkdef-page-hero.wp-block-cover .wp-block-cover__gradient-background {
	z-index: 0;
	background: transparent !important;
}

.bkdef-page-hero.wp-block-cover .wp-block-cover__inner-container {
	position: relative;
	z-index: 2;
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-wide-width));
	min-height: inherit;
	margin-inline: auto;
	padding-top: calc(var(--bkdef-header-height) + 72px);
	padding-bottom: 56px;
}

body.admin-bar .bkdef-page-hero.wp-block-cover .wp-block-cover__inner-container {
	padding-top: calc(var(--bkdef-header-height) + 0);
}
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
}

.value-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.value-content {
    flex: 1;
}

.value-content p {
    margin: 0 0 12px;
    line-height: 1.7;
}

.value-content p:last-child {
    margin-bottom: 0;
}

.value-content strong {
    display: inline-block;
    margin-bottom: 4px;
    font-size: 18px;
}

.bkdef-page-hero__inner,
.bkdef-page-hero .wp-block-cover__inner-container,
.bkdef-page-hero .bkdef-page-hero__content {
	display: flex;
	align-items: center;
}

.bkdef-page-hero .bkdef-page-hero__content {
	max-width: 560px;
	width: 100%;
	flex-direction: column;
	align-items: flex-start;
}

.bkdef-page-hero .bkdef-page-hero__content > * {
	width: 100%;
}

.bkdef-page-hero .wp-block-heading,
.bkdef-page-hero h1 {
	margin: 0;
	max-width: 10.5ch;
	color: var(--bkdef-ivory);
	font-size: clamp(44px, 4vw, 54px);
	line-height: 1.02;
	letter-spacing: -0.03em;
}

.bkdef-page-hero .bkdef-page-hero__content > p:not(.bkdef-page-hero__eyebrow) {
	margin-bottom: 0;
	max-width: 520px;
	color: rgba(255, 248, 231, 0.94);
	font-size: 15px;
	line-height: 1.55;
}

.bkdef-page-hero .bkdef-page-hero__content > p + .wp-block-buttons,
.bkdef-page-hero .bkdef-page-hero__content > .wp-block-buttons {
	margin-top: 24px;
}

.bkdef-page-hero .wp-block-buttons .wp-block-button__link {
	min-height: 42px;
}

.has-hero-position-center .bkdef-page-hero__image,
.has-hero-position-center.bkdef-page-hero.wp-block-cover > .wp-block-cover__image-background {
	object-position: center center !important;
}

.has-hero-position-right .bkdef-page-hero__image,
.has-hero-position-right.bkdef-page-hero.wp-block-cover > .wp-block-cover__image-background {
	object-position: center right !important;
}

.has-hero-position-60 .bkdef-page-hero__image,
.has-hero-position-60.bkdef-page-hero.wp-block-cover > .wp-block-cover__image-background {
	object-position: 60% center !important;
}

.has-hero-position-70 .bkdef-page-hero__image,
.has-hero-position-70.bkdef-page-hero.wp-block-cover > .wp-block-cover__image-background {
	object-position: 70% center !important;
}

.page-entry .entry-content,
.post-entry .entry-content {
	margin-top: 0;
}

.page-entry .entry-content:not(.bkdef-section),
.post-entry .entry-content:not(.bkdef-section) {
	padding-top: 0;
}

.bkdef-section--archive-content,
.bkdef-section--post-content {
	padding-top: 72px;
	padding-bottom: 80px;
}

@media (max-width: 1199.98px) {
	.bkdef-page-hero--generated {
		min-height: clamp(400px, 34vw, 440px);
	}

	.bkdef-page-hero.wp-block-cover {
		min-height: clamp(400px, 34vw, 440px);
	}

	.bkdef-page-hero__inner,
	.bkdef-page-hero.wp-block-cover .wp-block-cover__inner-container {
		padding-top: calc(var(--bkdef-header-height) + 64px);
		padding-bottom: 38px;
	}
}

@media (max-width: 1023.98px) {
	.bkdef-page-hero--generated {
		min-height: clamp(360px, 46vw, 410px);
	}

	.bkdef-page-hero.wp-block-cover {
		min-height: clamp(400px, 46vw, 440px);
	}

	.bkdef-page-hero__title,
	.bkdef-page-hero .wp-block-heading,
	.bkdef-page-hero h1 {
		font-size: clamp(38px, 5vw, 44px);
	}
}

@media (max-width: 767.98px) {
	.bkdef-page-hero--generated {
		min-height: clamp(420px, 110vw, 480px);
	}

	.bkdef-page-hero.wp-block-cover {
		min-height: clamp(440px, 110vw, 500px);
	}

	.bkdef-page-hero__inner,
	.bkdef-page-hero.wp-block-cover .wp-block-cover__inner-container {
		width: min(calc(100% - 32px), var(--bkdef-wide-width));
		padding-top: calc(var(--bkdef-header-height) + 56px);
		padding-bottom: 40px;
	}

	body.admin-bar .bkdef-page-hero__inner,
	body.admin-bar .bkdef-page-hero.wp-block-cover .wp-block-cover__inner-container {
		padding-top: calc(var(--bkdef-header-height) + 88px);
	}

	.bkdef-page-hero__title,
	.bkdef-page-hero .wp-block-heading,
	.bkdef-page-hero h1 {
		font-size: clamp(32px, 9vw, 38px);
		max-width: 100%;
	}

	.bkdef-page-hero__intro,
	.bkdef-page-hero .bkdef-page-hero__content > p:not(.bkdef-page-hero__eyebrow) {
		font-size: 15px;
	}

	.bkdef-section--archive-content,
	.bkdef-section--post-content {
		padding-top: 48px;
		padding-bottom: 56px;
	}
}

/* About page rebuild: 2026-07-27 */
body.page-about {
	background: #fffdf8;
}

body.page-about {
	--bkdef-about-ivory: #f7f0e4;
	--bkdef-about-ivory-soft: #fbf6ed;
	--bkdef-about-aubergine-deep: #2b0f24;
	--bkdef-about-aubergine-mid: #4a213e;
	--bkdef-about-text: #3d3639;
	--bkdef-about-muted: rgba(61, 54, 57, 0.82);
	--bkdef-about-border: rgba(198, 166, 100, 0.22);
}

body.page-about .page-entry .entry-content {
	padding-block: 0;
}

body.page-about .page-entry .entry-content > .bkdef-about-hero,
body.page-about .page-entry .entry-content > .bkdef-about-main,
body.page-about .page-entry .entry-content > .bkdef-stats-strip,
body.page-about .page-entry .entry-content > .bkdef-governance-section,
body.page-about .page-entry .entry-content > .bkdef-newsletter-block,
body.page-about .page-entry .entry-content > .wp-block-group.alignfull.bkdef-newsletter-shell {
	margin-block: 0;
}

body.page-about .bkdef-about-hero.wp-block-cover {
	position: relative;
	isolation: isolate;
	min-height: 400px !important;
	padding: 0;
	background: #321428;
}

body.page-about .bkdef-about-hero.wp-block-cover::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(23, 6, 19, 0.97) 0%, rgba(41, 12, 34, 0.9) 28%, rgba(68, 31, 57, 0.54) 52%, rgba(68, 31, 57, 0.16) 74%, rgba(68, 31, 57, 0.0) 86%);
	pointer-events: none;
}

body.page-about .bkdef-about-hero.wp-block-cover > .wp-block-cover__background,
body.page-about .bkdef-about-hero.wp-block-cover > .wp-block-cover__gradient-background {
	display: none;
}

body.page-about .bkdef-about-hero.wp-block-cover > .wp-block-cover__image-background {
	object-position: 78% 39%;
}

body.page-about .bkdef-about-hero .wp-block-cover__inner-container {
	position: relative;
	z-index: 2;
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-wide-width));
	min-height: inherit;
	margin-inline: auto;
	padding: 0;
	display: flex;
	align-items: stretch;
}

body.page-about .bkdef-about-hero__inner {
	width: 100%;
	min-height: inherit;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	padding-top: 194px;
	padding-bottom: 42px;
}

body.page-about .bkdef-about-hero__content {
	max-width: 520px;
	padding-left: 4px;
}

body.page-about .bkdef-about-hero__content > * + * {
	margin-top: 12px;
}

body.page-about .bkdef-about-hero__eyebrow {
	margin: 0;
	color: var(--bkdef-gold);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

body.page-about .bkdef-about-hero .wp-block-heading {
	margin: 0;
	color: var(--bkdef-ivory);
	font-size: clamp(50px, 4vw, 58px);
	line-height: 1.02;
	letter-spacing: -0.035em;
}

body.page-about .bkdef-about-hero__subtitle {
	margin: 0;
	max-width: 30ch;
	color: rgba(255, 248, 231, 0.84);
	font-size: 16px;
	line-height: 1.5;
}

body.page-about .bkdef-about-main {
	padding-block: 0;
	background: var(--bkdef-about-ivory);
}

body.page-about .bkdef-about-main__columns {
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-content-width));
	margin-inline: auto;
	gap: 0;
	align-items: stretch !important;
	min-height: 796px;
}

body.page-about .bkdef-about-main__copy,
body.page-about .bkdef-about-main__image-column {
	margin-top: 0;
	flex-grow: 0;
}

body.page-about .bkdef-about-main__copy {
	flex-basis: 41% !important;
}

body.page-about .bkdef-about-main__image-column {
	flex-basis: 59% !important;
}

body.page-about .bkdef-about-main__copy > .wp-block-group {
	height: 100%;
	padding: 42px 38px 36px 46px;
}

body.page-about .bkdef-about-main__copy h2 {
	margin: 0 0 11px;
	color: var(--bkdef-aubergine);
	font-size: 20px;
	line-height: 1.08;
	letter-spacing: -0.02em;
}

body.page-about .bkdef-about-main__copy h2:not(:first-child) {
	margin-top: 24px;
}

body.page-about .bkdef-about-main__copy p,
body.page-about .bkdef-newsletter-block p {
	margin: 0;
	color: var(--bkdef-about-text);
	font-size: 14px;
	line-height: 1.65;
}

body.page-about .bkdef-governance-section p.bkdef-trustees-quote__tagline, 
body.page-about .bkdef-governance-section p.bkdef-trustees-quote__text{
	margin: 0;
	color: #fff8e7;
	font-size: 16px;
	font-style: italic;
}

#governance-accountability > div{
	margin-bottom: 0!important;
}

body.page-about .bkdef-about-values {
	margin-top: 10px;
	gap: 12px;
}

body.page-about .bkdef-value-item {
	gap: 12px;
	align-items: flex-start;
}

body.page-about .bkdef-value-icon {
	flex: 0 0 30px;
	width: 30px;
	margin: 0;
}

body.page-about .bkdef-value-icon img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}

body.page-about .bkdef-value-content {
	flex: 1 1 auto;
}

body.page-about .bkdef-value-title {
	margin: 0 0 2px;
	color: var(--bkdef-aubergine);
	font-family: var(--bkdef-sans);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0;
}

body.page-about .bkdef-value-description {
	margin: 0;
	color: var(--bkdef-about-text);
	font-size: 13px;
	line-height: 1.5;
}

body.page-about .bkdef-about-main__image-column > .wp-block-image,
body.page-about .bkdef-about-main__image-column > figure {
	height: 100%;
	margin: 0;
}

body.page-about .bkdef-about-founder-image,
body.page-about .bkdef-about-founder-image img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 808px;
}

body.page-about .bkdef-about-founder-image img {
	object-fit: cover;
	object-position: center top;
	border-radius: 0 2px 2px 0;
}

body.page-about .bkdef-stats-strip {
	background: linear-gradient(135deg, #321428 0%, #4b1f3f 55%, #3c1831 100%);
	position: relative;
	overflow: hidden;
}

body.page-about .bkdef-stats-strip::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 18% 50%, rgba(198, 166, 100, 0.10), transparent 34%),
		linear-gradient(90deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 25%);
	opacity: 0.42;
	pointer-events: none;
}

body.page-about .bkdef-stats-strip > .wp-block-group__inner-container {
	position: relative;
	z-index: 1;
	padding: 0;
}

body.page-about .bkdef-stats-strip__inner {
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-content-width));
	margin-inline: auto;
	gap: 0;
	padding-block: 0;
}

body.page-about .bkdef-stats-strip__inner > .wp-block-column {
	padding-inline: 22px;
	position: relative;
	min-height: 135px;
	display: flex;
	align-items: center;
	justify-content: center;
}

body.page-about .bkdef-stats-strip__inner > .wp-block-column:not(:first-child)::before {
	content: "";
	position: absolute;
	left: 0;
	top: 20px;
	bottom: 20px;
	width: 1px;
	background: rgba(255, 248, 231, 0.14);
}

body.page-about .bkdef-stat-item {
	gap: 4px;
	text-align: center;
	align-items: center;
	justify-items: center;
}

body.page-about .bkdef-stat-number {
	margin: 0;
	color: var(--bkdef-gold);
	font-size: 32px;
	line-height: 1;
	letter-spacing: -0.03em;
}

body.page-about .bkdef-stat-label {
	margin: 0;
	color: rgba(255, 248, 231, 0.92);
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

body.page-about .bkdef-governance-section {
	padding-block: 0;
	background: var(--bkdef-about-ivory-soft);
}

body.page-about .bkdef-governance-section__columns {
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-content-width));
	margin-inline: auto;
	padding-block: 34px 36px;
	gap: 22px;
	align-items: center !important;
}

body.page-about .bkdef-governance-content > .wp-block-group {
	padding: 0 2px 0 0;
}

body.page-about .bkdef-governance-heading {
	margin: 0 0 12px;
	color: var(--bkdef-aubergine);
	font-size: clamp(24px, 2.1vw, 29px);
	line-height: 1.08;
}

body.page-about .bkdef-governance-link {
	margin-top: 18px;
}

body.page-about .bkdef-governance-link a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--bkdef-aubergine);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-decoration: none;
	text-transform: uppercase;
}

body.page-about .bkdef-governance-link a::after {
	content: "\2192";
	font-size: 14px;
	line-height: 1;
}

body.page-about .bkdef-governance-image,
body.page-about .bkdef-governance-image img {
	display: block;
	width: 100%;
}

body.page-about .bkdef-governance-image {
	margin: 0;
}

body.page-about .bkdef-governance-image img {
	aspect-ratio: 1.68 / 1;
	object-fit: cover;
	object-position: center center;
	border-radius: 4px;
}

body.page-about .bkdef-newsletter-shell {
	background: transparent;
	padding: 18px 0 18px;
}

body.page-about .bkdef-newsletter-block {
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-content-width));
	margin-inline: auto;
	padding: 0;
	background: linear-gradient(135deg, #4b1f3f 0%, #3a1730 100%);
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(37, 15, 31, 0.12);
}

body.page-about .bkdef-newsletter-block > .wp-block-group__inner-container {
	padding: 22px 26px;
}

body.page-about .bkdef-newsletter-columns {
	gap: 20px;
	align-items: center !important;
}

body.page-about .bkdef-newsletter-mark {
	margin: 0;
}

body.page-about .bkdef-newsletter-mark img {
	width: 84px !important;
}

body.page-about .bkdef-newsletter-title {
	margin: 0 0 8px;
	color: var(--bkdef-ivory);
	font-size: 29px;
	line-height: 1.02;
}

body.page-about .bkdef-newsletter-block p {
	color: rgba(255, 248, 231, 0.86);
}

body.page-about .bkdef-newsletter-block .subscription-form {
	align-self: center;
}

body.page-about .bkdef-newsletter-block .fluentform,
body.page-about .bkdef-newsletter-block form.frm-fluent-form {
	margin: 0;
}

body.page-about .bkdef-newsletter-block .ff-t-container,
body.page-about .bkdef-newsletter-block .ff-el-group,
body.page-about .bkdef-newsletter-block .ff-el-form-control,
body.page-about .bkdef-newsletter-block .ff_submit_btn_wrapper {
	margin-bottom: 0;
}

body.page-about .bkdef-newsletter-block .ff-t-container {
	display: flex;
	gap: 12px;
	align-items: center;
}

body.page-about .bkdef-newsletter-block .ff-t-cell {
	flex: 1 1 auto;
}

body.page-about .bkdef-newsletter-block input[type="text"],
body.page-about .bkdef-newsletter-block input[type="email"],
body.page-about .bkdef-newsletter-block input[type="tel"] {
	min-height: 46px;
	border: 1px solid rgba(255, 248, 231, 0.2);
	background: rgba(255, 248, 231, 0.98);
	border-radius: 999px;
	padding-inline: 16px;
	color: var(--bkdef-dark);
}

body.page-about .bkdef-newsletter-block .ff-btn-submit,
body.page-about .bkdef-newsletter-block button[type="submit"],
body.page-about .bkdef-newsletter-block input[type="submit"] {
	min-height: 46px;
	padding-inline: 22px;
	border: 0;
	border-radius: 999px;
	background: var(--bkdef-gold);
	color: var(--bkdef-about-aubergine-deep);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

body.page-about .bkdef-newsletter-block .ff-btn-submit:hover,
body.page-about .bkdef-newsletter-block button[type="submit"]:hover,
body.page-about .bkdef-newsletter-block input[type="submit"]:hover {
	background: #d7b577;
}

@media (max-width: 1199.98px) {
	body.page-about .bkdef-about-main__columns {
		min-height: 756px;
	}

	body.page-about .bkdef-about-main__copy > .wp-block-group {
		padding: 38px 28px 34px 34px;
	}

	body.page-about .bkdef-about-founder-image,
	body.page-about .bkdef-about-founder-image img {
		min-height: 780px;
	}
}

@media (max-width: 1024px) {
	body.page-about .bkdef-about-main__columns {
		gap: 0;
		min-height: 720px;
	}

	body.page-about .bkdef-about-main__copy > .wp-block-group {
		padding: 34px 18px 32px 24px;
	}

	body.page-about .bkdef-about-founder-image,
	body.page-about .bkdef-about-founder-image img {
		min-height: 760px;
	}

	body.page-about .bkdef-stats-strip__inner > .wp-block-column {
		padding-inline: 18px;
	}

	body.page-about .bkdef-governance-section__columns {
		gap: 24px;
		padding-block: 34px;
	}
}

@media (max-width: 991.98px) {
	body.page-about .bkdef-about-hero.wp-block-cover {
		min-height: 390px !important;
	}

	body.page-about .bkdef-about-hero__inner {
		padding-top: 180px;
		padding-bottom: 48px;
	}

	body.page-about .bkdef-about-hero .wp-block-heading {
		font-size: clamp(42px, 4.8vw, 46px);
	}
}

@media (max-width: 767.98px) {
	body.page-about .bkdef-about-hero.wp-block-cover {
		min-height: 420px !important;
	}

	body.page-about .bkdef-about-hero .wp-block-cover__inner-container {
		width: min(calc(100% - 32px), var(--bkdef-wide-width));
	}

	body.page-about .bkdef-about-hero__inner {
		padding-top: 184px;
		padding-bottom: 34px;
	}

	body.page-about .bkdef-about-hero__content {
		max-width: 100%;
	}

	body.page-about .bkdef-about-hero .wp-block-heading {
		font-size: clamp(34px, 8.8vw, 36px);
	}

	body.page-about .bkdef-about-hero__subtitle {
		font-size: 15px;
	}

	body.page-about .bkdef-about-main__columns,
	body.page-about .bkdef-governance-section__columns,
	body.page-about .bkdef-newsletter-columns,
	body.page-about .bkdef-stats-strip__inner {
		gap: 0;
	}

	body.page-about .bkdef-about-main__columns {
		min-height: 0;
	}

	body.page-about .bkdef-about-main__copy > .wp-block-group {
		padding: 26px 0 20px;
	}

	body.page-about .bkdef-about-main__image-column {
		margin-top: 0;
	}

	body.page-about .bkdef-about-founder-image,
	body.page-about .bkdef-about-founder-image img {
		min-height: 540px;
		height: 540px;
	}

	body.page-about .bkdef-about-founder-image img {
		border-radius: 0;
	}

	body.page-about .bkdef-stats-strip__inner {
		padding-block: 0;
	}

	body.page-about .bkdef-stats-strip__inner > .wp-block-column {
		flex-basis: 50% !important;
		padding: 8px 8px;
	}

	body.page-about .bkdef-stats-strip__inner > .wp-block-column:nth-child(odd)::before {
		display: none;
	}

	body.page-about .bkdef-stats-strip__inner > .wp-block-column:nth-child(n+3)::after {
		content: "";
		position: absolute;
		left: 14px;
		right: 14px;
		top: 0;
		height: 1px;
		background: rgba(255, 248, 231, 0.14);
	}

	body.page-about .bkdef-governance-section__columns {
		padding-block: 34px;
	}

	body.page-about .bkdef-governance-content > .wp-block-group {
		padding-right: 0;
		margin-bottom: 18px;
	}

	body.page-about .bkdef-newsletter-shell {
		padding: 16px 0 12px;
	}

	body.page-about .bkdef-newsletter-block > .wp-block-group__inner-container {
		padding: 18px 16px;
	}

	body.page-about .bkdef-newsletter-mark img {
		width: 70px !important;
	}

	body.page-about .bkdef-newsletter-title {
		font-size: 24px;
	}

	body.page-about .bkdef-newsletter-block .ff-t-container {
		flex-direction: column;
		align-items: stretch;
	}
}

@media (max-width: 390px) {
	body.page-about .bkdef-about-founder-image,
	body.page-about .bkdef-about-founder-image img {
		min-height: 520px;
		height: 520px;
	}

	body.page-about .bkdef-value-icon,
	body.page-about .bkdef-value-icon img {
		width: 30px;
		height: 30px;
		flex-basis: 30px;
	}
}

/* His Story page */
body.page-his-story {
	background: #f7f0e5;
}

body.page-his-story .page-entry .entry-content {
	background: transparent;
}

body.page-his-story .page-entry .entry-content > .bkdef-story-hero,
body.page-his-story .page-entry .entry-content > .bkdef-story-main,
body.page-his-story .page-entry .entry-content > .bkdef-story-quote,
body.page-his-story .page-entry .entry-content > .bkdef-newsletter-block {
	margin-top: 0;
	margin-bottom: 0;
}

body.page-his-story .bkdef-story-hero.wp-block-cover {
	position: relative;
	min-height: clamp(560px, 72vh, 650px) !important;
	background: #240c20;
	isolation: isolate;
}

body.page-his-story .bkdef-story-hero.wp-block-cover::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(28, 6, 24, 0.96) 0%, rgba(45, 14, 38, 0.80) 32%, rgba(45, 14, 38, 0.42) 56%, rgba(45, 14, 38, 0.10) 78%, rgba(45, 14, 38, 0.00) 100%);
	pointer-events: none;
}

body.page-his-story .bkdef-story-hero.wp-block-cover > .wp-block-cover__background,
body.page-his-story .bkdef-story-hero.wp-block-cover > .wp-block-cover__gradient-background {
	background: transparent !important;
}

body.page-his-story .bkdef-story-hero.wp-block-cover > .wp-block-cover__image-background {
	object-position: 72% 44%;
}

body.page-his-story .bkdef-story-hero .wp-block-cover__inner-container {
	position: relative;
	z-index: 2;
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-wide-width));
	min-height: inherit;
	margin-inline: auto;
	display: flex;
	align-items: stretch;
}

body.page-his-story .bkdef-story-hero__inner {
	width: 100%;
	display: flex;
	align-items: flex-end;
	padding-top: 126px;
	padding-bottom: 54px;
}

body.page-his-story .bkdef-story-hero__content {
	width: min(100%, 540px);
	margin-top: auto;
}

body.page-his-story .bkdef-story-hero__content > * + * {
	margin-top: 14px;
}

body.page-his-story .bkdef-story-hero__eyebrow {
	margin: 0;
	color: rgba(255, 248, 231, 0.84);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

body.page-his-story .bkdef-story-hero .wp-block-heading {
	margin: 0;
	max-width: 8ch;
	color: #fff8e7;
	font-size: clamp(54px, 5vw, 64px);
	line-height: 0.92;
	letter-spacing: -0.04em;
}

body.page-his-story .bkdef-story-hero__subtitle {
	margin: 0;
	max-width: 17ch;
	color: rgba(255, 248, 231, 0.9);
	font-size: clamp(18px, 1.8vw, 22px);
	line-height: 1.45;
}

body.page-his-story .bkdef-story-main {
	padding: 78px 0 0;
	background: linear-gradient(180deg, #f5efe3 0%, #f8f3eb 48%, #fbf7f0 100%);
}

body.page-his-story .bkdef-story-main > .wp-block-group__inner-container {
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-content-width));
	margin-inline: auto;
}

body.page-his-story .bkdef-story-intro {
	max-width: 760px;
	margin: 0 0 46px;
}

body.page-his-story .bkdef-story-intro .wp-block-heading {
	margin: 0 0 22px;
	color: #432032;
	font-size: clamp(30px, 2.8vw, 38px);
	line-height: 1.06;
}

body.page-his-story .bkdef-story-intro p,
body.page-his-story .bkdef-story-copy p {
	margin: 0;
	color: #4f4645;
	font-size: clamp(15px, 1.3vw, 17px);
	line-height: 1.72;
}

body.page-his-story .bkdef-story-intro p + p,
body.page-his-story .bkdef-story-copy p + p {
	margin-top: 16px;
}

body.page-his-story .bkdef-story-layout {
	gap: 54px;
	align-items: stretch !important;
	margin-bottom: 0;
}

body.page-his-story .bkdef-story-layout > .wp-block-column:first-child {
	flex-basis: 58% !important;
}

body.page-his-story .bkdef-story-layout > .wp-block-column:last-child {
	flex-basis: 42% !important;
}

body.page-his-story .bkdef-story-copy {
	padding-bottom: 78px;
}

body.page-his-story .bkdef-story-copy > .wp-block-group {
	display: flex;
	flex-direction: column;
	gap: 18px;
	height: 100%;
}

body.page-his-story .bkdef-story-timeline {
	position: relative;
	margin-top: 18px;
	padding-left: 34px;
}

body.page-his-story .bkdef-story-timeline::before {
	content: "";
	position: absolute;
	left: 6px;
	top: 8px;
	bottom: 8px;
	width: 1px;
	background: rgba(53, 19, 44, 0.6);
}

body.page-his-story .bkdef-story-timeline-item {
	position: relative;
	padding-left: 0;
}

body.page-his-story .bkdef-story-timeline-item + .bkdef-story-timeline-item {
	margin-top: 32px;
}

body.page-his-story .bkdef-story-timeline-marker {
	position: absolute;
	left: -34px;
	top: 6px;
	width: 14px;
	height: 14px;
	border: 2px solid rgba(75, 31, 63, 0.85);
	border-radius: 50%;
	background: #c6a664;
	box-shadow: 0 0 0 5px #f8f3eb;
}

body.page-his-story .bkdef-story-timeline-content {
	min-width: 0;
}

body.page-his-story .bkdef-story-timeline-title {
	margin: 0 0 8px;
	color: #35152c;
	font-family: var(--bkdef-serif);
	font-size: clamp(18px, 1.5vw, 21px);
	line-height: 1.08;
	letter-spacing: -0.02em;
}

body.page-his-story .bkdef-story-timeline-description {
	margin: 0;
	color: #60585a;
	font-size: 14.5px;
	line-height: 1.58;
}

body.page-his-story .bkdef-story-portrait-column {
	display: flex;
	align-items: flex-start;
}

body.page-his-story .bkdef-story-portrait-column > .wp-block-image,
body.page-his-story .bkdef-story-portrait-column > figure {
	width: 100%;
	margin: 0;
}

body.page-his-story .bkdef-story-portrait,
body.page-his-story .bkdef-story-portrait img {
	width: 100%;
	height: clamp(620px, 58vw, 760px);
}

body.page-his-story .bkdef-story-portrait {
	overflow: hidden;
	border-radius: 4px;
}

body.page-his-story .bkdef-story-portrait img {
	object-fit: cover;
	object-position: center top;
	border-radius: 4px;
	box-shadow: none;
}

body.page-his-story .bkdef-story-quote {
	position: relative;
	padding: 74px 0 78px;
	background: linear-gradient(135deg, #2e1028 0%, #4b1f3f 52%, #3b1731 100%);
	overflow: hidden;
}

body.page-his-story .bkdef-story-quote > .wp-block-group__inner-container {
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-content-width));
	margin-inline: auto;
}

body.page-his-story .bkdef-story-quote__inner {
	position: relative;
	width: min(100%, 880px);
	padding-left: 32px;
}

body.page-his-story .bkdef-story-quote__mark {
	position: absolute;
	left: 0;
	top: -24px;
	color: rgba(198, 166, 100, 0.78);
	font-family: var(--bkdef-serif);
	font-size: clamp(96px, 10vw, 132px);
	line-height: 0.8;
}

body.page-his-story .bkdef-story-quote__text {
	margin: 0;
	color: #fff2d7;
	font-family: var(--bkdef-serif);
	font-size: clamp(30px, 2.8vw, 40px);
	font-weight: 500;
	line-height: 1.18;
	letter-spacing: -0.025em;
}

body.page-his-story .bkdef-story-quote__author {
	margin: 20px 0 0;
	color: rgba(255, 242, 215, 0.78);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

body.page-his-story .bkdef-newsletter-block {
	margin-top: 0;
}

@media (max-width: 1199.98px) {
	body.page-his-story .bkdef-story-layout {
		gap: 38px;
	}

	body.page-his-story .bkdef-story-portrait,
	body.page-his-story .bkdef-story-portrait img {
		height: 660px;
	}
}

@media (max-width: 1023.98px) {
	body.page-his-story .bkdef-story-hero.wp-block-cover {
		min-height: 560px !important;
	}

	body.page-his-story .bkdef-story-hero__inner {
		padding-top: 120px;
		padding-bottom: 48px;
	}

	body.page-his-story .bkdef-story-layout {
		gap: 28px;
	}

	body.page-his-story .bkdef-story-copy {
		padding-bottom: 70px;
	}

	body.page-his-story .bkdef-story-portrait,
	body.page-his-story .bkdef-story-portrait img {
		height: 580px;
	}
}

@media (max-width: 781px) {
	body.page-his-story .bkdef-story-layout {
		flex-wrap: nowrap !important;
	}
}

@media (max-width: 767.98px) {
	body.page-his-story .bkdef-story-hero.wp-block-cover {
		min-height: 500px !important;
	}

	body.page-his-story .bkdef-story-hero .wp-block-cover__inner-container {
		width: min(calc(100% - 32px), var(--bkdef-wide-width));
	}

	body.page-his-story .bkdef-story-hero__inner {
		padding-top: 132px;
		padding-bottom: 32px;
	}

	body.page-his-story .bkdef-story-hero .wp-block-heading {
		font-size: clamp(40px, 10vw, 44px);
	}

	body.page-his-story .bkdef-story-hero__subtitle {
		font-size: 17px;
	}

	body.page-his-story .bkdef-story-main {
		padding-top: 52px;
	}

	body.page-his-story .bkdef-story-intro {
		margin-bottom: 34px;
	}

	body.page-his-story .bkdef-story-layout {
		flex-wrap: wrap !important;
		gap: 0;
	}

	body.page-his-story .bkdef-story-layout > .wp-block-column:first-child,
	body.page-his-story .bkdef-story-layout > .wp-block-column:last-child {
		flex-basis: 100% !important;
	}

	body.page-his-story .bkdef-story-copy {
		padding-bottom: 34px;
	}

	body.page-his-story .bkdef-story-portrait-column {
		margin-top: 0;
	}

	body.page-his-story .bkdef-story-portrait,
	body.page-his-story .bkdef-story-portrait img {
		height: clamp(500px, 128vw, 620px);
		border-radius: 0;
	}

	body.page-his-story .bkdef-story-timeline {
		padding-left: 30px;
	}

	body.page-his-story .bkdef-story-timeline::before {
		left: 5px;
	}

	body.page-his-story .bkdef-story-timeline-marker {
		left: -30px;
		width: 12px;
		height: 12px;
		box-shadow: 0 0 0 4px #f8f3eb;
	}

	body.page-his-story .bkdef-story-quote {
		padding: 56px 0;
	}

	body.page-his-story .bkdef-story-quote__inner {
		padding-left: 20px;
	}

	body.page-his-story .bkdef-story-quote__mark {
		top: -10px;
		font-size: 84px;
	}

	body.page-his-story .bkdef-story-quote__text {
		font-size: clamp(22px, 7vw, 28px);
	}
}

@media (max-width: 390px) {
	body.page-his-story .bkdef-story-hero.wp-block-cover {
		min-height: 480px !important;
	}

	body.page-his-story .bkdef-story-main {
		padding-top: 48px;
	}

	body.page-his-story .bkdef-story-intro .wp-block-heading {
		font-size: 30px;
	}

	body.page-his-story .bkdef-story-copy {
		padding-bottom: 28px;
	}

	body.page-his-story .bkdef-story-portrait,
	body.page-his-story .bkdef-story-portrait img {
		height: 520px;
	}
}

/* Our Projects dynamic grid */
body.page-our-projects .bkdef-projects-dynamic {
	padding-top: 8px;
	padding-bottom: 56px;
}

body.page-our-projects .bkdef-projects-dynamic > .wp-block-group__inner-container {
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-content-width));
	margin-inline: auto;
}

body.page-our-projects .bkdef-project-grid-shell {
	width: 100%;
}

body.page-our-projects .bkdef-project-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
}

body.page-our-projects .bkdef-project-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fffdf9;
	border: 1px solid #e8e1d6;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 24px rgba(47, 31, 39, 0.06);
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

body.page-our-projects .bkdef-project-card:hover,
body.page-our-projects .bkdef-project-card:focus-within {
	transform: translateY(-6px);
	box-shadow: 0 18px 36px rgba(47, 31, 39, 0.1);
	border-color: rgba(198, 166, 100, 0.55);
}

body.page-our-projects .bkdef-project-card__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	border-radius: 8px;
}
.bkdef-projects-intro__text{
	padding-top: 24px;
	text-align: center;
}
body.page-our-projects .bkdef-project-image {
	position: relative;
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #efe5d8 0%, #ddcdb7 100%);
}

body.page-our-projects .bkdef-project-image img,
body.page-our-projects .bkdef-project-image__placeholder {
	width: 100%;
	height: 100%;
}

body.page-our-projects .bkdef-project-image img {
	object-fit: cover;
	transition: transform 0.45s ease;
}

body.page-our-projects .bkdef-project-card:hover .bkdef-project-image img,
body.page-our-projects .bkdef-project-card:focus-within .bkdef-project-image img {
	transform: scale(1.05);
}

body.page-our-projects .bkdef-project-image__placeholder {
	background: linear-gradient(135deg, rgba(75, 31, 63, 0.18) 0%, rgba(198, 166, 100, 0.38) 100%);
}

body.page-our-projects .bkdef-project-content {
	position: relative;
	z-index: 3;
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px 24px 22px;
}

body.page-our-projects .bkdef-project-meta {
	margin: 0 0 10px;
	color: #8a6b3f;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

body.page-our-projects .bkdef-project-title {
	margin: 0 0 14px;
	color: var(--bkdef-aubergine);
	font-size: clamp(24px, 2vw, 30px);
	line-height: 1.08;
}

body.page-our-projects .bkdef-project-excerpt {
	margin: 0 0 20px;
	color: #625b5e;
	font-size: 15px;
	line-height: 1.7;
}

body.page-our-projects .bkdef-project-link {
	position: relative;
	z-index: 4;
	margin-top: auto;
	align-self: flex-start;
	color: var(--bkdef-aubergine);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-decoration: none;
	text-transform: uppercase;
}

body.page-our-projects .bkdef-project-link:hover,
body.page-our-projects .bkdef-project-link:focus-visible {
	color: #2f1026;
}

body.page-our-projects .bkdef-project-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 36px;
}

body.page-our-projects .bkdef-project-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0 14px;
	border: 1px solid #e8e1d6;
	border-radius: 999px;
	background: #fffdf9;
	color: var(--bkdef-aubergine);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body.page-our-projects .bkdef-project-pagination .page-numbers.current,
body.page-our-projects .bkdef-project-pagination .page-numbers:hover,
body.page-our-projects .bkdef-project-pagination .page-numbers:focus-visible {
	background: var(--bkdef-aubergine);
	border-color: var(--bkdef-aubergine);
	color: #fff8e7;
}

body.page-our-projects .bkdef-project-empty {
	margin: 0;
	padding: 24px 28px;
	border: 1px solid #e8e1d6;
	border-radius: 8px;
	background: #fffdf9;
	color: #625b5e;
	font-size: 16px;
	line-height: 1.6;
	text-align: center;
}

@media (max-width: 991.98px) {
	body.page-our-projects .bkdef-project-content {
		padding: 22px 20px 20px;
	}
}

@media (max-width: 767.98px) {
	body.page-our-projects .bkdef-projects-dynamic {
		padding-bottom: 44px;
	}

	body.page-our-projects .bkdef-project-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Get Involved page */
body.page-get-involved {
	background: #f7f0e5;
}

body.page-get-involved .page-entry .entry-content {
	background: transparent;
}

body.page-get-involved .page-entry .entry-content > .bkdef-involved-hero,
body.page-get-involved .page-entry .entry-content > .bkdef-involved-main,
body.page-get-involved .page-entry .entry-content > .bkdef-involved-cta,
body.page-get-involved .page-entry .entry-content > .bkdef-newsletter-block {
	margin-top: 0;
	margin-bottom: 0;
}

body.page-get-involved .bkdef-involved-hero.wp-block-cover {
	position: relative;
	min-height: clamp(410px, 43vw, 470px) !important;
	background: #260d22;
	isolation: isolate;
}

body.page-get-involved .bkdef-involved-hero.wp-block-cover::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(30, 7, 26, 0.96) 0%, rgba(48, 16, 41, 0.84) 36%, rgba(54, 20, 46, 0.50) 62%, rgba(54, 20, 46, 0.18) 82%, rgba(54, 20, 46, 0.04) 100%);
	pointer-events: none;
}

body.page-get-involved .bkdef-involved-hero.wp-block-cover > .wp-block-cover__background,
body.page-get-involved .bkdef-involved-hero.wp-block-cover > .wp-block-cover__gradient-background {
	background: transparent !important;
}

body.page-get-involved .bkdef-involved-hero.wp-block-cover > .wp-block-cover__image-background {
	object-position: 68% 42%;
}

body.page-get-involved .bkdef-involved-hero .wp-block-cover__inner-container {
	position: relative;
	z-index: 2;
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-wide-width));
	min-height: inherit;
	margin-inline: auto;
	display: flex;
	align-items: stretch;
}

body.page-get-involved .bkdef-involved-hero__inner {
	width: 100%;
	display: flex;
	align-items: flex-end;
	padding-top: 118px;
	padding-bottom: 42px;
}

body.page-get-involved .bkdef-involved-hero__content {
	width: min(100%, 500px);
	margin-top: auto;
}

body.page-get-involved .bkdef-involved-hero__content > * + * {
	margin-top: 12px;
}

body.page-get-involved .bkdef-involved-hero__eyebrow {
	margin: 0;
	color: rgba(255, 248, 231, 0.82);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

body.page-get-involved .bkdef-involved-hero .wp-block-heading {
	margin: 0;
	color: #fff8e7;
	font-size: clamp(48px, 4.3vw, 58px);
	line-height: 0.95;
	letter-spacing: -0.04em;
}

body.page-get-involved .bkdef-involved-hero__subtitle {
	margin: 0;
	color: rgba(255, 248, 231, 0.9);
	font-size: clamp(17px, 1.55vw, 20px);
	line-height: 1.45;
}

body.page-get-involved .bkdef-involved-hero__accent {
	margin: 2px 0 0;
	width: 88px;
	border-top: 2px solid rgba(198, 166, 100, 0.96);
}

body.page-get-involved .bkdef-involved-main {
	width: 100%;
	padding: 72px 0 68px;
	background: linear-gradient(180deg, #f5efe4 0%, #f8f3ea 48%, #fbf8f2 100%);
}

body.page-get-involved .bkdef-involved-main > .wp-block-group__inner-container {
	width: min(calc(100% - 48px), 1120px);
	max-width: 1120px;
	margin-inline: auto;
}

body.page-get-involved .bkdef-involved-main__inner {
	width: 100%;
	max-width: 920px;
	margin-inline: auto;
	padding-bottom: 40px;
}

body.page-get-involved .bkdef-involved-main__inner > p {
	margin: 0;
	max-width: 940px;
	color: #534b4d;
	font-size: clamp(16px, 1.4vw, 18px);
	line-height: 1.68;
}

body.page-get-involved .bkdef-involved-main__inner > p + p {
	margin-top: 12px;
}

body.page-get-involved .bkdef-involved-list {
	width: 100%;
	max-width: 920px;
	margin-top: 38px;
	margin-inline: 0;
	display: flex;
	flex-direction: column;
	gap: 34px;
}

body.page-get-involved .bkdef-involved-item {
	width: 100%;
	display: flex;
	align-items: flex-start;
	gap: 24px;
}

body.page-get-involved .bkdef-involved-item__icon {
	flex: 0 0 60px;
	width: 60px;
	height: 60px;
	margin: 0;
	border: 1.5px solid rgba(198, 166, 100, 0.86);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px;
	background: transparent;
}

body.page-get-involved .bkdef-involved-item__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: sepia(1) saturate(0.35) hue-rotate(330deg) brightness(1.02);
}

body.page-get-involved .bkdef-involved-item__content {
	flex: 1;
	min-width: 0;
	max-width: 860px;
}

body.page-get-involved .bkdef-involved-item__title {
	margin: 0 0 8px;
	color: #34142a;
	font-size: clamp(19px, 1.6vw, 22px);
	line-height: 1.08;
}

body.page-get-involved .bkdef-involved-item__description {
	margin: 0;
	color: #61595b;
	font-size: clamp(14px, 1.2vw, 16px);
	line-height: 1.68;
}

body.page-get-involved .bkdef-involved-cta {
	background: linear-gradient(135deg, #2f1128 0%, #4b1f3f 55%, #3a1730 100%);
	padding: 0;
	overflow: hidden;
}

body.page-get-involved .bkdef-involved-cta > .wp-block-group__inner-container {
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-content-width));
	margin-inline: auto;
}

body.page-get-involved .bkdef-involved-cta__inner {
	gap: 24px;
	min-height: 334px;
	align-items: center !important;
	padding: 46px 0;
}

body.page-get-involved .bkdef-involved-cta__content {
	max-width: 500px;
}

body.page-get-involved .bkdef-involved-cta__title {
	margin: 0 0 24px;
	color: #f4d9a0;
	font-size: clamp(32px, 3vw, 40px);
	line-height: 1.05;
	letter-spacing: -0.03em;
}

body.page-get-involved .bkdef-involved-cta__button .wp-block-button__link {
	min-height: 48px;
	padding: 13px 24px;
	border-radius: 999px;
	background: #c6a664;
	color: #34142a;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

body.page-get-involved .bkdef-involved-cta__button .wp-block-button__link:hover,
body.page-get-involved .bkdef-involved-cta__button .wp-block-button__link:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(19, 7, 16, 0.22);
	background: #d4b374;
}

body.page-get-involved .bkdef-involved-cta__art {
	margin-left: auto;
	max-width: 286px;
	opacity: 0.26;
}

body.page-get-involved .bkdef-involved-cta__art img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

@media (max-width: 1023.98px) {
	body.page-get-involved .bkdef-involved-main {
		padding: 64px 0 62px;
	}

	body.page-get-involved .bkdef-involved-cta__inner {
		min-height: 290px;
	}

	body.page-get-involved .bkdef-involved-cta__art {
		max-width: 250px;
	}
}

@media (max-width: 767.98px) {
	body.page-get-involved .bkdef-involved-hero.wp-block-cover {
		min-height: 430px !important;
	}

	body.page-get-involved .bkdef-involved-hero .wp-block-cover__inner-container {
		width: min(calc(100% - 32px), var(--bkdef-wide-width));
	}

	body.page-get-involved .bkdef-involved-hero__inner {
		padding-top: 126px;
		padding-bottom: 30px;
	}

	body.page-get-involved .bkdef-involved-hero .wp-block-heading {
		font-size: clamp(36px, 9vw, 42px);
	}

	body.page-get-involved .bkdef-involved-main {
		padding: 52px 0 52px;
	}

	body.page-get-involved .bkdef-involved-main > .wp-block-group__inner-container {
		width: min(calc(100% - 40px), 1120px);
	}

	body.page-get-involved .bkdef-involved-list {
		gap: 26px;
	}

	body.page-get-involved .bkdef-involved-item {
		gap: 16px;
	}

	body.page-get-involved .bkdef-involved-item__icon {
		flex-basis: 50px;
		width: 50px;
		height: 50px;
		padding: 11px;
	}

	body.page-get-involved .bkdef-involved-cta__inner {
		gap: 8px;
		padding: 48px 0 42px;
	}

	body.page-get-involved .bkdef-involved-cta__art {
		margin-left: 0;
		max-width: 180px;
	}
}

@media (max-width: 390px) {
	body.page-get-involved .bkdef-involved-hero.wp-block-cover {
		min-height: 412px !important;
	}

	body.page-get-involved .bkdef-involved-main {
		padding: 48px 0 48px;
	}

	body.page-get-involved .bkdef-involved-item {
		gap: 14px;
	}

	body.page-get-involved .bkdef-involved-item__icon {
		flex-basis: 46px;
		width: 46px;
		height: 46px;
		padding: 10px;
	}

	body.page-get-involved .bkdef-involved-cta__title {
		font-size: clamp(27px, 8vw, 32px);
	}
}

body.page-news .bkdef-news-grid > [class*="col-"] {
	display: flex;
}

body.page-news .bkdef-news-card {
	width: 100%;
}

body.page-news .bkdef-news-card__image,
body.page-news .bkdef-news-card__image img {
	display: block;
	width: 100%;
}

body.page-news .bkdef-news-card__excerpt p {
	margin-bottom: 0;
}

body.page-news .bkdef-news-card__link {
	text-transform: none;
}

body.page-news .bkdef-news-empty-state {
	padding: 24px 28px;
}

body.home .bkdef-news-query .wp-block-query-no-results p {
	margin-bottom: 0;
}

body.page-contact-us .bkdef-contact-hero.wp-block-cover {
	position: relative;
	overflow: hidden;
}

body.page-contact-us .bkdef-contact-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(30, 7, 26, 0.96) 0%, rgba(48, 16, 41, 0.84) 36%, rgba(54, 20, 46, 0.50) 62%, rgba(54, 20, 46, 0.15) 84%, rgba(54, 20, 46, 0.04) 100%);
	z-index: 1;
	pointer-events: none;
}

body.page-contact-us .bkdef-contact-hero .wp-block-cover__inner-container {
	position: relative;
	z-index: 2;
}

body.page-contact-us .bkdef-contact-hero__inner {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: inherit;
	padding: 0;
}

body.page-contact-us .bkdef-contact-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	max-width: 540px;
	gap: 0;
}

body.page-contact-us .bkdef-contact-hero__eyebrow {
	margin: 0 0 12px;
}

body.page-contact-us .bkdef-contact-hero .wp-block-heading {
	margin: 0;
	max-width: none;
	color: #fff7ee;
	font-size: clamp(44px, 4vw, 54px);
	line-height: 1.02;
	white-space: nowrap;
}

body.page-contact-us .bkdef-contact-hero__subtitle {
	margin: 18px 0 0;
	color: rgba(255, 247, 238, 0.9);
	font-size: 15.5px;
	line-height: 1.55;
	max-width: 420px;
}

body.page-contact-us .bkdef-contact-main {
	width: 100%;
	padding: 72px 0 80px;
	background: #f8f1e7;
}

body.page-contact-us .bkdef-contact-main > .wp-block-group__inner-container,
body.page-contact-us .bkdef-contact-main__inner {
	width: min(calc(100% - 48px), var(--bkdef-content-width, 1120px));
	margin-inline: auto;
}

body.page-contact-us .bkdef-contact-main__columns {
	gap: clamp(40px, 4vw, 56px);
	align-items: flex-start !important;
}

body.page-contact-us .bkdef-contact-info,
body.page-contact-us .bkdef-contact-form {
	width: 100%;
}

body.page-contact-us .bkdef-contact-info {
	max-width: 410px;
}

body.page-contact-us .bkdef-contact-info .wp-block-heading,
body.page-contact-us .bkdef-contact-form .wp-block-heading {
	margin: 0 0 14px;
	color: #34142a;
	font-size: clamp(28px, 2.8vw, 34px);
	line-height: 1.08;
}

body.page-contact-us .bkdef-contact-info > p,
body.page-contact-us .bkdef-contact-form > p {
	margin: 0 0 26px;
	color: #675b5f;
	font-size: 16px;
	line-height: 1.68;
}

body.page-contact-us .bkdef-contact-info__item {
	align-items: flex-start;
	gap: 18px;
	margin: 0;
	padding: 0;
}

body.page-contact-us .bkdef-contact-info__item + .bkdef-contact-info__item {
	margin-top: 24px;
}

body.page-contact-us .bkdef-contact-info__icon {
	flex: 0 0 56px;
	width: 56px;
	height: 56px;
	border: 1.5px solid rgba(198, 166, 100, 0.85);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

body.page-contact-us .bkdef-contact-info__icon p {
	margin: 0;
	color: #c6a664;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

body.page-contact-us .bkdef-contact-info__content {
	flex: 1;
	gap: 4px;
}

body.page-contact-us .bkdef-contact-info__label {
	margin: 0;
	color: #34142a;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

body.page-contact-us .bkdef-contact-info__value {
	margin: 0;
	color: #61595b;
	font-size: 17px;
	line-height: 1.6;
}

body.page-contact-us .bkdef-contact-info__value a {
	color: inherit;
	text-decoration: none;
}

body.page-contact-us .bkdef-contact-info__value a:hover,
body.page-contact-us .bkdef-contact-info__value a:focus {
	color: #34142a;
}

body.page-contact-us .bkdef-contact-form {
	padding: 34px 34px 30px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid #e7ddd2;
	border-radius: 8px;
}

body.page-contact-us .bkdef-contact-form .fluentform,
body.page-contact-us .bkdef-contact-form .fluentform_wrapper_1,
body.page-contact-us .bkdef-contact-form .frm-fluent-form {
	width: 100%;
}

body.page-contact-us .bkdef-contact-form .ff-t-container {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

body.page-contact-us .bkdef-contact-form .ff-t-cell {
	width: auto;
	float: none;
}

body.page-contact-us .bkdef-contact-form .ff-el-group {
	margin-bottom: 18px;
}

body.page-contact-us .bkdef-contact-form .ff-el-input--label label {
	margin-bottom: 8px;
	color: #34142a;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

body.page-contact-us .bkdef-contact-form .ff-el-form-control {
	width: 100%;
	min-height: 48px;
	padding: 12px 15px;
	border: 1px solid #dbcfc2;
	border-radius: 4px;
	background: #fffdf9;
	color: #34142a;
	font-size: 15px;
	line-height: 1.45;
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

body.page-contact-us .bkdef-contact-form textarea.ff-el-form-control {
	min-height: 150px;
	padding-top: 14px;
	padding-bottom: 14px;
	resize: vertical;
}

body.page-contact-us .bkdef-contact-form .ff-el-form-control:focus {
	border-color: #c6a664;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(198, 166, 100, 0.18);
	outline: none;
}

body.page-contact-us .bkdef-contact-form .ff-btn.ff-btn-submit {
	min-height: 50px;
	padding: 13px 26px;
	border: 0;
	border-radius: 999px;
	background: #c6a664;
	color: #34142a;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

body.page-contact-us .bkdef-contact-form .ff-btn.ff-btn-submit:hover,
body.page-contact-us .bkdef-contact-form .ff-btn.ff-btn-submit:focus {
	transform: translateY(-1px);
	box-shadow: 0 12px 20px rgba(52, 20, 42, 0.12);
	background: #d6b77a;
}

body.page-contact-us .bkdef-contact-form .ff_submit_btn_wrapper {
	margin-bottom: 0;
	padding-top: 8px;
	text-align: right;
}

body.page-contact-us .bkdef-contact-form .ff-el-is-error .ff-el-form-control,
body.page-contact-us .bkdef-contact-form .ff_has_error .ff-el-form-control {
	border-color: #c44d56;
}

body.page-contact-us .bkdef-contact-form .text-danger,
body.page-contact-us .bkdef-contact-form .error {
	color: #a43e46;
	font-size: 13px;
}

body.page-contact-us .bkdef-contact-map {
	width: 100%;
	margin: 0;
	background: #eadfce;
}

body.page-contact-us .bkdef-contact-map iframe,
body.page-contact-us .bkdef-contact-map__embed {
	display: block;
	width: 100%;
	height: clamp(320px, 36vw, 410px);
	border: 0;
}

@media (max-width: 1023.98px) {
	body.page-contact-us .bkdef-contact-main {
		padding: 60px 0 64px;
	}

	body.page-contact-us .bkdef-contact-main__columns {
		gap: 34px;
	}

	body.page-contact-us .bkdef-contact-form {
		padding: 28px 26px 26px;
	}
}

@media (max-width: 767.98px) {
	body.page-contact-us .bkdef-contact-hero.wp-block-cover {
		position: relative;
		overflow: hidden;
	}

	body.page-contact-us .bkdef-contact-hero .wp-block-cover__inner-container {
		position: relative;
		z-index: 2;
	}

	body.page-contact-us .bkdef-contact-hero__inner {
		display: flex;
		align-items: center;
		width: 100%;
		min-height: inherit;
		padding: 0;
	}

	body.page-contact-us .bkdef-contact-hero .wp-block-heading {
		font-size: clamp(32px, 8.8vw, 38px);
		white-space: normal;
	}

	body.page-contact-us .bkdef-contact-main {
		padding: 48px 0 52px;
	}

	body.page-contact-us .bkdef-contact-main > .wp-block-group__inner-container,
	body.page-contact-us .bkdef-contact-main__inner {
		width: min(calc(100% - 40px), var(--bkdef-content-width, 1120px));
	}

	body.page-contact-us .bkdef-contact-info {
		max-width: none;
	}

	body.page-contact-us .bkdef-contact-form {
		padding: 24px 20px 22px;
	}

	body.page-contact-us .bkdef-contact-form .ff-t-container {
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
	}

	body.page-contact-us .bkdef-contact-form .ff_submit_btn_wrapper {
		text-align: left;
	}

	body.page-contact-us .bkdef-contact-form .ff-btn.ff-btn-submit {
		width: 100%;
	}

	body.page-contact-us .bkdef-contact-map iframe,
	body.page-contact-us .bkdef-contact-map__embed {
		height: clamp(280px, 72vw, 320px);
	}
}

@media (max-width: 390px) {
	body.page-contact-us .bkdef-contact-hero.wp-block-cover {
		position: relative;
		overflow: hidden;
	}

	body.page-contact-us .bkdef-contact-hero__inner {
		display: flex;
		align-items: center;
		width: 100%;
		min-height: inherit;
		padding: 0;
	}

	body.page-contact-us .bkdef-contact-main {
		padding: 44px 0 48px;
	}

	body.page-contact-us .bkdef-contact-info__item {
		gap: 14px;
	}

	body.page-contact-us .bkdef-contact-info__icon {
		flex-basis: 48px;
		width: 48px;
		height: 48px;
	}
}

body.page-contact-us .page-entry > .entry-header {
	display: none;
}

body.page-donate .page-entry > .entry-header, .bkdef-project-meta {
	display: none;
}






body.page-donate .bkdef-donate-hero.wp-block-cover {
	position: relative;
	overflow: hidden;
}

body.page-donate .bkdef-donate-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(34, 10, 29, 0.96) 0%, rgba(55, 19, 46, 0.88) 34%, rgba(69, 27, 58, 0.54) 62%, rgba(69, 27, 58, 0.14) 84%, rgba(69, 27, 58, 0.02) 100%);
	z-index: 1;
	pointer-events: none;
}

body.page-donate .bkdef-donate-hero .wp-block-cover__inner-container {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-top: calc(var(--bkdef-header-height) + 72px);
	padding-bottom: 56px;
}

body.page-donate .bkdef-donate-hero__inner {
	display: flex;
	align-items: center;
	width: min(calc(100% - 48px), 1240px);
	max-width: 1240px;
	margin-inline: auto;
	min-height: inherit;
	padding: 0;
}

body.page-donate .bkdef-donate-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	max-width: 560px;
	margin: 0;
	gap: 0;
}

body.page-donate .bkdef-donate-hero__eyebrow {
	margin: 0 0 12px;
}

body.page-donate .bkdef-donate-hero .wp-block-heading {
	margin: 0;
	color: #fff8ee;
	max-width: none;
	font-size: clamp(44px, 4vw, 54px);
	line-height: 1.02;
}

body.page-donate .bkdef-donate-hero__subtitle {
	margin: 18px 0 0;
	color: rgba(255, 248, 238, 0.92);
	font-size: 15.5px;
	line-height: 1.55;
	max-width: 320px;
}

body.page-donate .bkdef-donate-intro,
body.page-donate .bkdef-donate-widget,
body.page-donate .bkdef-donate-trust {
	width: 100%;
	background: #fff8e7;
}

body.page-donate .bkdef-donate-intro {
	padding: 30px 0 12px;
}

body.page-donate .bkdef-donate-intro p {
	width: min(calc(100% - 48px), 1120px);
	max-width: 800px;
	margin: 0 auto;
	color: #675b5f;
	font-size: 16px;
	line-height: 1.7;
}

body.page-donate .bkdef-donate-widget {
	padding: 16px 0 24px;
}

body.page-donate .bkdef-donate-widget__card {
	width: min(calc(100% - 48px), 900px);
	max-width: 900px;
	margin-inline: auto;
	padding: 38px clamp(24px, 4vw, 44px) 30px;
	background: #fbf4e4;
	border: 1px solid #e4d3b7;
	border-radius: 6px;
	box-shadow: 0 18px 40px rgba(52, 20, 42, 0.12);
}

body.page-donate .bkdef-donate-trust > .bkdef-donate-trust__grid {
	width: min(calc(100% - 48px), 1120px);
	margin-inline: auto;
}

body.page-donate .bkdef-donate-tabs {
	gap: 10px;
	margin-bottom: 22px;
}

body.page-donate .bkdef-donate-tabs > .wp-block-group {
	min-width: 132px;
	padding: 12px 16px;
	background: #f5e7cd;
	border: 1px solid #dbc39d;
	border-radius: 999px;
	text-align: center;
}

body.page-donate .bkdef-donate-tabs > button.wp-block-group,
body.page-donate .bkdef-donate-amounts > button.wp-block-group {
	appearance: none;
	-webkit-appearance: none;
	font: inherit;
	cursor: pointer;
	border-width: 1px;
	border-style: solid;
}

body.page-donate .bkdef-donate-tabs > .wp-block-group.is-active {
	background: #38172e;
	border-color: #38172e;
	box-shadow: 0 10px 22px rgba(56, 23, 46, 0.18);
}

body.page-donate .bkdef-donate-tabs p {
	margin: 0;
	color: #573a40;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

body.page-donate .bkdef-donate-tabs > .wp-block-group.is-active p {
	color: #fff8ee;
}

body.page-donate .bkdef-donate-amounts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 22px;
}

body.page-donate .bkdef-donate-amounts > .wp-block-group {
	min-height: 74px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px 14px;
	background: #fffdf7;
	border: 1px solid #e4d3b7;
	border-radius: 4px;
	text-align: center;
}

body.page-donate .bkdef-donate-amounts > .wp-block-group.is-active {
	background: #38172e;
	border-color: #38172e;
}

body.page-donate .bkdef-donate-amounts p {
	margin: 0;
	color: #38172e;
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
}

body.page-donate .bkdef-donate-amounts > .wp-block-group.is-active p {
	color: #fff8ee;
}

body.page-donate .bkdef-donate-input {
	margin-bottom: 22px;
}

body.page-donate .bkdef-donate-input__label {
	margin: 0 0 10px;
	color: #573a40;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

body.page-donate .bkdef-donate-input__field {
	width: 100%;
	min-height: 58px;
	padding: 0 18px;
	border: 1px solid #e4d3b7;
	border-radius: 4px;
	background: #fffdf7;
	color: #38172e;
	font-size: 17px;
}

body.page-donate .bkdef-donate-input__field::placeholder {
	color: #9b8a84;
}

body.page-donate .bkdef-donate-input__field:focus {
	outline: 2px solid rgba(56, 23, 46, 0.18);
	outline-offset: 1px;
}

body.page-donate .bkdef-donate-button {
	width: 100%;
	margin-bottom: 14px;
}

body.page-donate .bkdef-donate-button .wp-block-button__link {
	display: inline-flex;
	width: 100%;
	min-height: 56px;
	align-items: center;
	justify-content: center;
	padding: 15px 24px;
	border-radius: 999px;
	background: #caa15d;
	color: #34142a;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

body.page-donate .bkdef-donate-button .wp-block-button__link:hover,
body.page-donate .bkdef-donate-button .wp-block-button__link:focus {
	transform: translateY(-1px);
	box-shadow: 0 14px 22px rgba(52, 20, 42, 0.14);
	background: #d6ae6d;
}

body.page-donate .bkdef-donate-widget__note {
	margin: 0;
	color: #6b5c5c;
	font-size: 14px;
	line-height: 1.5;
}

body.page-donate .bkdef-donate-input__help {
	margin: 10px 0 0;
	color: #7d6e67;
	font-size: 12px;
	line-height: 1.5;
}

body.page-donate .bkdef-donate-button button.wp-block-button__link {
	border: 0;
	cursor: pointer;
}

body.page-donate .bkdef-donate-form.is-loading .bkdef-donate-button button.wp-block-button__link {
	opacity: 0.74;
	pointer-events: none;
}

body.page-donate .bkdef-donate-form__messages {
	margin-top: 14px;
}

body.page-donate .bkdef-donate-form__message,
body.page-donate .bkdef-donate-form__notice {
	margin: 0;
	padding: 12px 14px;
	border-radius: 4px;
	font-size: 13px;
	line-height: 1.5;
}

body.page-donate .bkdef-donate-form__message--error {
	background: rgba(196, 77, 86, 0.1);
	color: #8f2f38;
	border: 1px solid rgba(196, 77, 86, 0.18);
}

body.page-donate .bkdef-donate-form__message--notice,
body.page-donate .bkdef-donate-form__notice {
	background: rgba(56, 23, 46, 0.08);
	color: #4c3440;
	border: 1px solid rgba(56, 23, 46, 0.12);
}

body.page-donate .bkdef-donate-form {
	display: block;
}

body.page-donate .bkdef-donate-tabs > button.wp-block-group,
body.page-donate .bkdef-donate-amounts > button.wp-block-group {
	appearance: none;
	-webkit-appearance: none;
	font: inherit;
	cursor: pointer;
	width: 100%;
}

body.page-donate .bkdef-donate-tabs > button.wp-block-group {
	display: inline-flex;
	width: auto;
	align-items: center;
	justify-content: center;
}

body.page-donate .bkdef-donate-tabs > .wp-block-group span {
	display: block;
	margin: 0;
	color: #573a40;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

body.page-donate .bkdef-donate-tabs > .wp-block-group.is-active span {
	color: #fff8ee;
}

body.page-donate .bkdef-donate-amounts > .wp-block-group {
	width: 100%;
}

body.page-donate .bkdef-donate-amounts > .wp-block-group span {
	display: block;
	margin: 0;
	color: #38172e;
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
}

body.page-donate .bkdef-donate-amounts > .wp-block-group.is-active span {
	color: #fff8ee;
}

body.page-donate .bkdef-donate-input__help {
	margin: 10px 0 0;
	color: #7d6e67;
	font-size: 12px;
	line-height: 1.5;
}

body.page-donate .bkdef-donate-button button.wp-block-button__link {
	border: 0;
	cursor: pointer;
}

body.page-donate .bkdef-donate-form.is-loading .bkdef-donate-button button.wp-block-button__link {
	opacity: 0.74;
	pointer-events: none;
}

body.page-donate .bkdef-donate-form__messages {
	margin-top: 14px;
}

body.page-donate .bkdef-donate-form__message,
body.page-donate .bkdef-donate-form__notice {
	margin: 0;
	padding: 12px 14px;
	border-radius: 4px;
	font-size: 13px;
	line-height: 1.5;
}

body.page-donate .bkdef-donate-form__message--error {
	background: rgba(196, 77, 86, 0.1);
	color: #8f2f38;
	border: 1px solid rgba(196, 77, 86, 0.18);
}

body.page-donate .bkdef-donate-form__message--notice,
body.page-donate .bkdef-donate-form__notice {
	background: rgba(56, 23, 46, 0.08);
	color: #4c3440;
	border: 1px solid rgba(56, 23, 46, 0.12);
}

.bkdef-donation-thank-you {
	padding: 80px 0;
	background: #fff8e7;
}

.bkdef-donation-thank-you h1 {
	margin-bottom: 16px;
	font-size: clamp(34px, 3.4vw, 46px);
}

.bkdef-donation-thank-you p {
	max-width: 760px;
	color: #5d5358;
}

.bkdef-donation-thank-you__details {
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.bkdef-donation-thank-you__details li + li {
	margin-top: 10px;
}

body.page-donate .bkdef-donate-trust {
	padding: 56px 0 40px 0;
	background-color: #4B1F3F;

}

body.page-donate .bkdef-donate-trust__grid {
	gap: 18px;
}

#post-181 .site-footer__social a{
	color: #4B1F3F;
	border: 1px solid #4B1F3F;
	cursor: pointer;
}
#post-181 .site-footer__social a:hover{
	background-color: #4B1F3F;
	color: #fff;
	border: 1px solid #4B1F3F;
	cursor: pointer;
}
.site-footer__connect .site-footer__social a:hover{
	background-color: #fff!important;
	color: #4B1F3F;
	border: 1px solid #fff;
	cursor: pointer;
}

body.page-donate .bkdef-donate-trust__item {
	height: 100%;
	padding: 10px 8px;
	text-align: center;
}

body.page-donate .bkdef-donate-trust h3 {
	margin: 0 0 8px;
	color: #D6AE6D;
	font-size: 22px;
	line-height: 1.1;
}

body.page-donate .bkdef-donate-trust p {
	margin: 0;
	color: #ffffff;
	font-size: 15px;
	line-height: 1.6;
}

@media (max-width: 1023.98px) {
	body.page-donate .bkdef-donate-amounts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767.98px) {
	body.page-donate .bkdef-donate-hero.wp-block-cover {
		position: relative;
		overflow: hidden;
	}

	body.page-donate .bkdef-donate-hero .wp-block-cover__inner-container {
		position: relative;
		z-index: 2;
	}

	body.page-donate .bkdef-donate-hero__inner {
		display: flex;
		align-items: center;
		width: 100%;
		min-height: inherit;
		padding: 0;
	}

	body.page-donate .bkdef-donate-hero .wp-block-heading {
		font-size: clamp(32px, 9vw, 38px);
	}

	body.page-donate .bkdef-donate-hero .wp-block-cover__inner-container {
		width: 100%;
		padding-top: calc(var(--bkdef-header-height) + 56px);
		padding-bottom: 40px;
	}

	body.page-donate .bkdef-donate-hero__inner {
		width: min(calc(100% - 32px), 1240px);
	}

	body.page-donate .bkdef-donate-intro,
	body.page-donate .bkdef-donate-widget,
	body.page-donate .bkdef-donate-trust {
		padding-left: 0;
		padding-right: 0;
	}

	body.page-donate .bkdef-donate-intro {
		padding-top: 24px;
		padding-bottom: 10px;
	}

	body.page-donate .bkdef-donate-widget {
		padding-top: 14px;
		padding-bottom: 20px;
	}

	body.page-donate .bkdef-donate-widget__card {
		width: min(calc(100% - 40px), 900px);
		padding: 26px 18px 22px;
	}

	body.page-donate .bkdef-donate-trust > .bkdef-donate-trust__grid {
		width: min(calc(100% - 40px), 1120px);
	}

	body.page-donate .bkdef-donate-intro p {
		width: min(calc(100% - 40px), 1120px);
	}

	body.page-donate .bkdef-donate-tabs {
		gap: 8px;
		margin-bottom: 18px;
	}

	body.page-donate .bkdef-donate-tabs > .wp-block-group {
		flex: 1 1 calc(50% - 8px);
		min-width: 0;
		padding: 11px 12px;
	}

	body.page-donate .bkdef-donate-tabs p {
		font-size: 12px;
		letter-spacing: 0.06em;
	}

	body.page-donate .bkdef-donate-tabs > .wp-block-group span {
		font-size: 12px;
		letter-spacing: 0.06em;
	}

	body.page-donate .bkdef-donate-amounts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		margin-bottom: 18px;
	}

	body.page-donate .bkdef-donate-amounts > .wp-block-group {
		min-height: 64px;
		padding: 14px 10px;
	}

	body.page-donate .bkdef-donate-amounts p {
		font-size: 24px;
	}

	body.page-donate .bkdef-donate-amounts > .wp-block-group span {
		font-size: 24px;
	}

	body.page-donate .bkdef-donate-input {
		margin-bottom: 18px;
	}

	body.page-donate .bkdef-donate-button .wp-block-button__link {
		width: 100%;
	}

	body.page-donate .bkdef-donate-trust {
		padding-top: 44px;
		padding-bottom: 44px;
	}

	body.page-donate .bkdef-donate-trust__grid {
		gap: 10px;
	}

	body.page-donate .bkdef-donate-trust__item {
		padding: 8px 4px;
	}

	body.page-donate .bkdef-donate-trust h3 {
		font-size: 18px;
	}
}

@media (max-width: 390px) {
	body.page-donate .bkdef-donate-tabs > .wp-block-group {
		flex-basis: 100%;
	}

	body.page-donate .bkdef-donate-amounts {
		grid-template-columns: minmax(0, 1fr);
	}
}


/* BKDEF responsive QA cleanup: 2026-07-28 */
html,
body {
	overflow-x: hidden;
}

body,
.site-main,
.page-entry,
.post-entry,
.entry-content,
.wp-block-group,
.wp-block-columns,
.wp-block-column,
.container,
.container-fluid,
.bkdef-container,
.bkdef-container-wide,
.alignwide {
	min-width: 0;
}

img,
iframe,
svg,
video,
canvas {
	max-width: 100%;
}

iframe {
	display: block;
}

table {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.btn,
.wp-block-button__link,
button,
input[type="submit"],
input[type="button"],
.ff-btn,
.ff-btn-submit {
	min-height: 44px;
}

.site-header,
.header-nav,
.site-header.is-scrolled .header-nav {
	height: auto;
	min-height: var(--bkdef-header-height);
}

.header-nav__container,
.header-nav__panel,
.header-nav__menu-wrap,
.header-nav .navbar-nav,
.site-footer__grid,
.bkdef-news-template,
.bkdef-newsletter-columns,
.bkdef-founder-news-columns,
.bkdef-about-columns,
.bkdef-impact-grid,
.bkdef-story-layout,
.bkdef-contact-main__columns,
.bkdef-involved-cta__inner {
	min-width: 0;
}

.bkdef-news-card,
.post-card,
.bkdef-project-card {
	height: 100%;
}

.bkdef-news-card-body,
.post-content,
body.page-our-projects .bkdef-project-content {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.bkdef-news-card .wp-block-post-excerpt,
.bkdef-news-card .wp-block-post-excerpt p,
.entry-summary,
.entry-summary p {
	-webkit-line-clamp: unset;
}

.bkdef-news-template > :only-child,
.bkdef-news-card,
.bkdef-news-template > * {
	max-width: none;
}

.bkdef-newsletter-block .fluentform .ff-t-container,
.bkdef-newsletter-block .fluentform .ff-form-fields-container {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center;
}

.bkdef-newsletter-block .fluentform .ff-t-cell,
.bkdef-newsletter-block .fluentform .ff-el-group {
	flex: 1 1 1px;
	min-width: 0;
}

.bkdef-newsletter-block .fluentform .ff_submit_btn_wrapper,
.bkdef-newsletter-block .fluentform .ff_submit_btn_wrapper_custom {
	flex: 0 0 auto;
	min-width: 0;
}

.bkdef-newsletter-block .fluentform input[type="email"],
.bkdef-newsletter-block .fluentform input[type="text"],
.bkdef-newsletter-block .fluentform input[type="tel"],
.bkdef-newsletter-block .fluentform .ff-el-form-control {
	width: 100%;
	min-width: 0;
}

.bkdef-founder-image,
.bkdef-founder-image img {
	height: auto !important;
	min-height: clamp(320px, 42vw, 520px) !important;
}

.bengi-img {
	max-width: 100%;
	height: auto !important;
}

.bkdef-hero-block.wp-block-cover,
.bkdef-hero-block {
	min-height: clamp(480px, 58vw, 620px) !important;
}

.bkdef-hero-block__inner {
	width: min(calc(100% - (2 * var(--bkdef-page-gutter))), var(--bkdef-wide-width));
	min-height: inherit;
	padding-top: calc(var(--bkdef-header-height) + 42px);
	padding-bottom: 28px;
}

.bkdef-hero-block__content {
	max-width: min(100%, 540px);
	padding-top: 0;
	padding-bottom: 0;
	transform: none;
}

.bkdef-hero-title {
	max-width: 12ch;
    color: #fff8e7!important;
}

.bkdef-hero-actions {
	flex-wrap: wrap;
}

body.page-about .bkdef-about-main__columns,
body.page-about .bkdef-governance-section__columns,
body.page-about .bkdef-newsletter-columns {
	min-width: 0;
}

body.page-contact-us .bkdef-contact-form .ff-el-group,
body.page-contact-us .bkdef-contact-form .ff-t-cell,
body.page-contact-us .bkdef-contact-form .ff-el-form-control {
	min-width: 0;
}

body.page-contact-us .bkdef-contact-map iframe,
body.page-contact-us .bkdef-contact-map__embed {
	max-width: 100%;
}

@media (max-width: 1024px) {
	.page-entry .entry-content p,
	.archive-description,
	.error-page p,
	.bkdef-about-block p:not(.bkdef-section-eyebrow),
	.bkdef-founder-panel p:not(.bkdef-section-eyebrow),
	.bkdef-newsletter-block p:not(.bkdef-section-eyebrow),
	.bkdef-news-panel p:not(.bkdef-section-eyebrow) {
		font-size: 18px;
		line-height: 1.65;
	}

	.bkdef-founder-image,
	.bkdef-founder-image img {
		min-height: clamp(320px, 48vw, 440px) !important;
	}

	body.page-about .bkdef-about-main__columns {
		flex-wrap: wrap !important;
		min-height: 0;
	}

	body.page-about .bkdef-about-main__copy,
	body.page-about .bkdef-about-main__image-column {
		flex-basis: 100% !important;
	}

	body.page-about .bkdef-about-main__copy > .wp-block-group {
		padding: 28px 0 20px;
	}

	body.page-about .bkdef-about-founder-image,
	body.page-about .bkdef-about-founder-image img {
		min-height: clamp(420px, 72vw, 620px);
		height: auto;
	}

	body.page-about .bkdef-governance-section__columns,
	body.page-about .bkdef-newsletter-columns {
		flex-wrap: wrap !important;
	}

	body.page-his-story .bkdef-story-layout {
		flex-wrap: wrap !important;
		gap: 24px;
	}

	body.page-his-story .bkdef-story-layout > .wp-block-column:first-child,
	body.page-his-story .bkdef-story-layout > .wp-block-column:last-child {
		flex-basis: 100% !important;
	}

	body.page-get-involved .bkdef-involved-cta__inner {
		flex-wrap: wrap !important;
	}

	body.page-get-involved .bkdef-involved-cta__art {
		margin-left: 0;
	}

	body.page-contact-us .bkdef-contact-main__columns {
		gap: 28px;
	}

	body.page-contact-us .bkdef-contact-form .ff-t-container {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 991.98px) {
	.header-nav .navbar-collapse,
	.header-nav__panel {
		max-width: 100%;
	}

	.header-nav .navbar-collapse {
		overflow: hidden;
	}

	.header-nav__menu-wrap,
	.header-nav .navbar-nav {
		width: 100%;
	}

	.btn-header-donate {
		width: 100%;
		justify-content: center;
	}

	.bengi-img {
		position: relative;
		top: auto !important;
		left: auto;
		right: auto;
		display: block;
		margin: 0 auto;
		max-width: min(100%, 420px);
	}
}

@media (max-width: 767.98px) {
	:root {
		--bkdef-page-gutter: 16px;
	}

	.page-entry .entry-content p,
	.archive-description,
	.error-page p,
	.bkdef-about-block p:not(.bkdef-section-eyebrow),
	.bkdef-founder-panel p:not(.bkdef-section-eyebrow),
	.bkdef-newsletter-block p:not(.bkdef-section-eyebrow),
	.bkdef-news-panel p:not(.bkdef-section-eyebrow) {
		font-size: 16px;
		line-height: 1.7;
	}

	.site-branding .custom-logo {
		max-height: 40px;
	}

	.bkdef-hero-block.wp-block-cover,
	.bkdef-hero-block {
		min-height: 500px !important;
	}

	.bkdef-hero-block__inner {
		width: min(calc(100% - 32px), 100%);
		padding-top: calc(var(--bkdef-header-height) + 36px);
		padding-bottom: 24px;
	}

	.bkdef-hero-block__content {
		max-width: 100%;
	}

	.bkdef-hero-title,
	.bkdef-hero-copy {
		max-width: 100%;
	}

	.bkdef-hero-actions .wp-block-button,
	.bkdef-hero-actions .wp-block-button__link {
		width: 100%;
	}

	.bkdef-impact-grid > .wp-block-column {
		flex-basis: 100% !important;
	}

	.bkdef-news-template {
		grid-template-columns: 1fr;
	}

	.bkdef-news-card,
	.bkdef-news-template > :only-child {
		max-width: none;
		width: 100%;
	}

	.bkdef-news-card-image img,
	.bkdef-news-card-image .wp-post-image {
		height: 180px;
	}

	.bkdef-newsletter-columns,
	.bkdef-founder-news-columns,
	.bkdef-about-columns {
		gap: 20px;
	}

	.bkdef-newsletter-columns > .wp-block-column,
	.bkdef-founder-news-columns > .wp-block-column,
	.bkdef-about-columns > .wp-block-column {
		flex-basis: 100% !important;
		max-width: none;
	}

	.bkdef-newsletter-block .wp-block-column:last-child,
	.bkdef-newsletter-block .ff_submit_btn_wrapper,
	.bkdef-newsletter-block .ff_submit_btn_wrapper_custom {
		width: 100%;
	}

	.bkdef-newsletter-block .fluentform .ff-btn,
	.bkdef-newsletter-block .fluentform button.ff-btn,
	.bkdef-newsletter-block .fluentform .ff_submit_btn_wrapper button {
		width: 100%;
	}

	.site-footer__grid,
	.site-footer__bottom {
		grid-template-columns: 1fr;
	}

	.site-footer__bottom {
		flex-direction: column;
	}

	body.page-about .bkdef-stats-strip__inner > .wp-block-column {
		flex-basis: 50% !important;
	}

	body.page-about .bkdef-newsletter-block .ff-t-container {
		flex-direction: column;
		align-items: stretch;
	}

	body.page-his-story .bkdef-story-timeline {
		padding-left: 26px;
	}

	body.page-his-story .bkdef-story-timeline-marker {
		left: -26px;
	}

	body.page-get-involved .bkdef-involved-item {
		align-items: flex-start;
	}

	body.page-get-involved .bkdef-involved-cta__button,
	body.page-get-involved .bkdef-involved-cta__button .wp-block-button,
	body.page-get-involved .bkdef-involved-cta__button .wp-block-button__link {
		width: 100%;
	}

	body.page-contact-us .bkdef-contact-form,
	body.page-donate .bkdef-donate-widget__card {
		padding-inline: 20px;
	}
}

@media (max-width: 390px) {
	.bkdef-hero-block.wp-block-cover,
	.bkdef-hero-block {
		min-height: 460px !important;
	}

	.bkdef-hero-title {
		font-size: clamp(34px, 9vw, 38px);
	}

	.bkdef-hero-copy {
		font-size: 18px;
	}

	.bkdef-news-card-image img,
	.bkdef-news-card-image .wp-post-image {
		height: 160px;
	}

	body.page-about .bkdef-stats-strip__inner > .wp-block-column {
		flex-basis: 100% !important;
	}
}


/* Mobile navigation functionality fix: 2026-07-28 */
@media (max-width: 991.98px) {
	.header-nav {
		position: relative;
	}

	.header-nav .navbar-collapse,
	.header-nav .bkdef-mobile-nav {
		display: none;
		position: absolute;
		top: calc(100% + 10px);
		left: 0;
		right: 0;
		z-index: 1105;
		max-height: calc(100vh - var(--bkdef-header-height) - 24px);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		background: rgba(54, 24, 45, 0.99);
		border-radius: 8px;
		padding: 14px 16px 16px;
		box-shadow: 0 18px 36px rgba(18, 9, 16, 0.28);
	}

	body.admin-bar .header-nav .navbar-collapse,
	body.admin-bar .header-nav .bkdef-mobile-nav {
		max-height: calc(100vh - var(--bkdef-header-height) - 70px);
	}

	.header-nav .bkdef-mobile-nav.is-open,
	.header-nav .bkdef-mobile-nav.show {
		display: block;
	}

	.header-nav__donate {
		width: 100%;
		justify-content: center;
	}
}


/* BKDEF People module: 2026-07-31 */
.bkdef-people-section {
	--bkdef-people-columns: 3;
	padding: clamp(48px, 6vw, 72px) min(4vw, 24px);
}

.bkdef-people-heading {
	max-width: 760px;
	margin: 0 auto 30px;
	text-align: center;
}

.bkdef-people-title {
	margin: 0 0 10px;
	font-size: clamp(2.2rem, 3.8vw, 3.2rem);
}

.bkdef-people-subtitle {
	margin: 0;
	color: var(--bkdef-muted);
	font-size: 1.05rem;
}

.bkdef-people-grid {
	width: min(100%, var(--bkdef-wide-width));
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(var(--bkdef-people-columns), minmax(0, 1fr));
	gap: 24px;
}

.bkdef-person-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 24px;
	background: #fff;
	border: 1px solid var(--bkdef-border);
	border-radius: 24px;
	box-shadow: var(--bkdef-shadow-soft);
}

.bkdef-person-photo {
	margin-bottom: 18px;
}

.bkdef-person-photo img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	object-position: center top;
	border-radius: 22px;
	background: #f5eee0;
}

.bkdef-person-content {
	display: grid;
	align-content: start;
	gap: 10px;
	flex: 1;
}

.bkdef-person-name {
	margin: 0;
	font-size: 1.7rem;
}

.bkdef-person-designation {
	margin: 0;
	color: var(--bkdef-aubergine);
	font-weight: 700;
	font-size: 0.98rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.bkdef-person-badge {
	display: inline-flex;
	width: fit-content;
	margin: 0;
	padding: 6px 12px;
	background: rgba(198, 166, 100, 0.16);
	border-radius: 999px;
	color: var(--bkdef-aubergine);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bkdef-person-bio {
	color: var(--bkdef-dark);
}

.bkdef-person-bio p {
	margin: 0;
}

.bkdef-person-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 4px;
}

.bkdef-person-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: rgba(75, 31, 63, 0.08);
	color: var(--bkdef-aubergine);
}

.bkdef-person-socials svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.bkdef-people--grid .bkdef-person-card {
	text-align: left;
}

.bkdef-people--compact .bkdef-people-grid {
	gap: 18px;
}

.bkdef-people--compact .bkdef-person-card {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
}

.bkdef-people--compact .bkdef-person-photo {
	margin-bottom: 0;
}

.bkdef-people--compact .bkdef-person-photo img {
	border-radius: 18px;
}

.bkdef-people--leadership .bkdef-people-grid {
	gap: 28px;
}

.bkdef-people--leadership .bkdef-person-card {
	padding: 0;
	overflow: hidden;
	background: #fffdf8;
}

.bkdef-people--leadership .bkdef-person-photo {
	margin-bottom: 0;
}

.bkdef-people--leadership .bkdef-person-photo img {
	border-radius: 0;
	aspect-ratio: 5 / 4;
}

.bkdef-people--leadership .bkdef-person-content {
	padding: 24px;
}

.bkdef-people--trustees {
	/*background: var(--bkdef-ivory);*/
	color: var(--bkdef-aubergine);
}

.bkdef-people--trustees .bkdef-people-subtitle,
.bkdef-people--trustees .bkdef-person-bio {
	color: rgba(75, 31, 63, 0.82);
}

.bkdef-people--trustees .bkdef-people-grid {
	gap: 28px;
}

.bkdef-people--trustees .bkdef-person-card {
	align-items: center;
	padding: 12px 12px 24px;
	background: transparent;
	border: 0;
	box-shadow: none;
	text-align: center;
}

.bkdef-people--trustees .bkdef-person-photo {
	width: min(100%, 220px);
	margin-bottom: 20px;
}

.bkdef-people--trustees .bkdef-person-photo img {
	border-radius: 999px;
	aspect-ratio: 1;
	border: 6px solid rgba(198, 166, 100, 0.22);
	box-shadow: 0 18px 36px rgba(75, 31, 63, 0.12);
}

.bkdef-person-accent {
	display: block;
	width: 72px;
	height: 3px;
	margin: 2px auto 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(198, 166, 100, 0.35), var(--bkdef-gold), rgba(198, 166, 100, 0.35));
}

@media (max-width: 1024px) {
	.bkdef-people-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bkdef-people--trustees .bkdef-people-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.bkdef-people-section {
		padding-inline: 20px;
	}

	.bkdef-people-grid,
	.bkdef-people--trustees .bkdef-people-grid,
	.bkdef-people--leadership .bkdef-people-grid {
		grid-template-columns: 1fr;
	}

	.bkdef-people--compact .bkdef-person-card {
		grid-template-columns: 92px minmax(0, 1fr);
		padding: 18px;
	}
}

@media (max-width: 430px) {
	.bkdef-person-card {
		padding: 20px;
	}

	.bkdef-people--compact .bkdef-person-card {
		grid-template-columns: 1fr;
	}

	.bkdef-people--compact .bkdef-person-photo {
		max-width: 120px;
	}
}

/* Trustees reference redesign: 2026-07-31 */
.bkdef-people--trustees {
	background:
		radial-gradient(circle at top, rgba(198, 166, 100, 0.08), transparent 46%),
		#fff8e7;
	color: var(--bkdef-aubergine);
	padding-block: clamp(56px, 7vw, 88px);
}

.bkdef-people--trustees .bkdef-trustees-header {
	width: min(100%, 860px);
	margin: 0 auto 40px;
	text-align: center;
}

.bkdef-people--trustees .bkdef-trustees-monogram-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-bottom: 18px;
}

.bkdef-people--trustees .bkdef-trustees-rule {
	width: clamp(72px, 10vw, 132px);
	height: 1px;
	background: linear-gradient(90deg, rgba(198, 166, 100, 0.15), rgba(198, 166, 100, 0.95), rgba(198, 166, 100, 0.15));
}

.bkdef-people--trustees .bkdef-trustees-monogram {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 999px;
	background: rgba(75, 31, 63, 0.04);
	border: 1px solid rgba(198, 166, 100, 0.34);
}

.bkdef-people--trustees .bkdef-trustees-monogram img,
.bkdef-people--trustees .bkdef-trustees-monogram span {
	width: 34px;
	height: 34px;
	object-fit: contain;
	font-family: var(--bkdef-serif);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--bkdef-gold);
}

.bkdef-people--trustees .bkdef-trustees-title {
	margin: 0;
	color: var(--bkdef-aubergine);
	font-size: clamp(2rem, 4vw, 3.15rem);
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.bkdef-people--trustees .bkdef-trustees-intro {
	width: min(100%, 690px);
	margin: 16px auto 0;
	color: rgba(75, 31, 63, 0.78);
	font-size: 16px!important;
	line-height: 1.8;
}

.bkdef-people--trustees .bkdef-trustees-grid {
	width: min(100%, 1120px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(var(--bkdef-trustees-columns), minmax(220px, 250px));
	justify-content: center;
	gap: 34px 30px;
}

.bkdef-people--trustees .bkdef-trustee-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 8px;
}

.bkdef-people--trustees .bkdef-trustee-card:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 6px;
	right: -15px;
	width: 1px;
	height: 242px;
	background: linear-gradient(180deg, rgba(198, 166, 100, 0), rgba(198, 166, 100, 0.82), rgba(198, 166, 100, 0));
}

.bkdef-people--trustees .bkdef-trustee-photo-wrap {
	position: relative;
	padding-bottom: 26px;
	margin-bottom: 8px;
}

.bkdef-people--trustees .bkdef-trustee-photo {
	position: relative;
	width: clamp(120px, 13vw, 182px);
	height: clamp(120px, 13vw, 182px);
	padding: 8px;
	border-radius: 999px;
	background: rgba(255, 248, 231, 0.94);
	box-shadow: 0 14px 30px rgba(66, 28, 54, 0.12);
}

.bkdef-people--trustees .bkdef-trustee-photo::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 999px;
	border: 1px solid rgba(198, 166, 100, 0.56);
}

.bkdef-people--trustees .bkdef-trustee-photo img {
	width: 100%;
	height: 100%;
	border-radius: 999px;
	object-fit: cover;
	object-position: center top;
	border: 4px solid rgba(198, 166, 100, 0.72);
	background: #f3ead7;
}

.bkdef-people--trustees .bkdef-trustee-badge {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	background: var(--bkdef-aubergine);
	border: 4px solid #fff8e7;
	box-shadow: 0 10px 24px rgba(51, 18, 41, 0.2);
}

.bkdef-people--trustees .bkdef-trustee-badge img,
.bkdef-people--trustees .bkdef-trustee-badge span {
	width: 26px;
	height: 26px;
	object-fit: contain;
	font-family: var(--bkdef-serif);
	font-size: 0.98rem;
	font-weight: 700;
	color: var(--bkdef-gold);
}

.bkdef-people--trustees .bkdef-trustee-name {
	margin: 0;
	color: var(--bkdef-aubergine);
	font-family: var(--bkdef-serif);
	font-size: 16px!important;
	line-height: 1.12;
}

.bkdef-people--trustees .bkdef-trustee-role {
	margin: 10px 0 0;
	color: #9f7b3e;
	font-size: 14px!important;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.bkdef-people--trustees .bkdef-trustee-profession {
	margin: 7px 0 0;
	max-width: 20ch;
	color: rgba(75, 31, 63, 0.72);
	font-size: 14px!important;
	font-weight: 600;
	letter-spacing: 0.12em;
	line-height: 1.45;
	text-transform: uppercase;
}

.bkdef-people--trustees .bkdef-trustees-quote {
	width: min(100%, 1120px);
	margin: clamp(42px, 5vw, 64px) auto 0;
}

.bkdef-people--trustees .bkdef-trustees-quote__inner {
	overflow: hidden;
	padding: clamp(42px, 6vw, 56px) 28px 30px;
	border-radius: 48px 48px 28px 28px / 72px 72px 28px 28px;
	text-align: center;
}

.bkdef-people--trustees .bkdef-trustees-quote__inner::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -52px;
	width: min(86%, 760px);
	height: 124px;
	transform: translateX(-50%);
	border-radius: 0 0 999px 999px;
	background: #fff8e7;
	opacity: 0.07;
}

.bkdef-people--trustees .bkdef-trustees-quote__mark {
	display: block;
	margin-bottom: 4px;
	color: rgba(255, 248, 231, 0.86);
	font-family: var(--bkdef-serif);
	font-size: clamp(3rem, 6vw, 4.5rem);
	line-height: 0.8;
}

.bkdef-people--trustees .bkdef-trustees-quote__text {
	margin: 0;
	color: #fff8e7;
	font-family: var(--bkdef-serif);
	font-size: clamp(1.55rem, 2.6vw, 2.4rem);
	line-height: 1.15;
}

.bkdef-people--trustees .bkdef-trustees-quote__tagline {
	margin: 14px 0 0;
	color: rgba(255, 248, 231, 0.88);
	font-size: 0.98rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

@media (max-width: 1024px) {
	.bkdef-people--trustees .bkdef-trustees-grid {
		max-width: 620px;
		grid-template-columns: repeat(2, minmax(220px, 1fr));
		gap: 38px 28px;
	}

	.bkdef-people--trustees .bkdef-trustee-card::after {
		display: none;
	}

	.bkdef-people--trustees .bkdef-trustees-title {
		letter-spacing: 0.1em;
	}
}

@media (max-width: 768px) {
	.bkdef-people--trustees {
		padding-inline: 20px;
	}

	.bkdef-people--trustees .bkdef-trustees-header {
		margin-bottom: 34px;
	}

	.bkdef-people--trustees .bkdef-trustees-grid {
		max-width: 340px;
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.bkdef-people--trustees .bkdef-trustees-rule {
		width: 64px;
	}

	.bkdef-people--trustees .bkdef-trustees-quote__inner {
		padding-top: 38px;
		border-radius: 34px 34px 24px 24px / 52px 52px 24px 24px;
	}

	.bkdef-people--trustees .bkdef-trustees-quote__tagline {
		font-size: 0.82rem;
		line-height: 1.5;
	}
}

@media (max-width: 430px) {
	.bkdef-people--trustees .bkdef-trustees-monogram-row {
		gap: 12px;
	}

	.bkdef-people--trustees .bkdef-trustees-monogram {
		width: 52px;
		height: 52px;
	}

	.bkdef-people--trustees .bkdef-trustees-title {
		font-size: clamp(1.7rem, 10vw, 2.2rem);
		letter-spacing: 0.08em;
	}

	.bkdef-people--trustees .bkdef-trustees-intro {
		font-size: 16px!important;
		line-height: 1.7;
	}

	.bkdef-people--trustees .bkdef-trustees-quote__text {
		font-size: 1.4rem;
	}
}

/* Trustees live refinement pass: 2026-07-31 */
.bkdef-people--trustees {
	padding-block: clamp(48px, 6vw, 74px);
}

.bkdef-people--trustees .bkdef-trustees-header {
	width: min(100%, 780px);
	margin: 0 auto 34px;
}

.bkdef-people--trustees .bkdef-trustees-monogram-row {
	gap: 16px;
	margin-bottom: 14px;
}

.bkdef-people--trustees .bkdef-trustees-rule {
	width: clamp(80px, 9vw, 122px);
	background: linear-gradient(90deg, rgba(198, 166, 100, 0.12), rgba(198, 166, 100, 0.88), rgba(198, 166, 100, 0.12));
}

.bkdef-people--trustees .bkdef-trustees-monogram {
	width: 54px;
	height: 54px;
}

.bkdef-people--trustees .bkdef-trustees-monogram img,
.bkdef-people--trustees .bkdef-trustees-monogram span {
	width: 30px;
	height: 30px;
}

.bkdef-people--trustees .bkdef-trustees-title {
	font-size: clamp(1.95rem, 3.6vw, 2.95rem);
	letter-spacing: 0.12em;
	line-height: 1.02;
}

.bkdef-people--trustees .bkdef-trustees-intro {
	width: min(100%, 640px);
	margin-top: 14px;
	font-size: 16px!important;
	line-height: 1.72;
}

.bkdef-people--trustees .bkdef-trustees-grid {
	width: fit-content;
	max-width: min(100%, 1120px);
	grid-template-columns: repeat(var(--bkdef-trustees-columns), minmax(210px, 238px));
	gap: 28px 72px;
}

.bkdef-people--trustees .bkdef-trustee-card {
	padding: 0 2px;
}

.bkdef-people--trustees .bkdef-trustee-card:not(:last-child)::after {
	top: 8px;
	right: -36px;
	height: 228px;
	background: linear-gradient(180deg, rgba(198, 166, 100, 0), rgba(198, 166, 100, 0.7), rgba(198, 166, 100, 0));
}

.bkdef-people--trustees .bkdef-trustee-photo-wrap {
	padding-bottom: 22px;
	margin-bottom: 6px;
}

.bkdef-people--trustees .bkdef-trustee-photo {
	width: clamp(160px, 12.5vw, 176px);
	height: clamp(160px, 12.5vw, 176px);
	padding: 7px;
	box-shadow: 0 12px 24px rgba(66, 28, 54, 0.11);
}

.bkdef-people--trustees .bkdef-trustee-photo::before {
	border-color: rgba(198, 166, 100, 0.48);
}

.bkdef-people--trustees .bkdef-trustee-photo img {
	border-width: 3px;
}

.bkdef-people--trustees .bkdef-trustee-badge {
	width: 44px;
	height: 44px;
	bottom: 0;
	border-width: 3px;
}

.bkdef-people--trustees .bkdef-trustee-badge img,
.bkdef-people--trustees .bkdef-trustee-badge span {
	width: 23px;
	height: 23px;
}

.bkdef-people--trustees .bkdef-trustee-name {
	font-size: 16px!important;
	line-height: 1.08;
}

.bkdef-people--trustees .bkdef-trustee-role {
	margin-top: 8px;
	font-size: 0.76rem;
	letter-spacing: 0.2em;
	line-height: 1.3;
}

.bkdef-people--trustees .bkdef-trustee-profession {
	margin-top: 5px;
	font-size: 14px!important;
	letter-spacing: 0.11em;
	line-height: 1.36;
}

.bkdef-people--trustees .bkdef-trustees-quote__inner {
	padding: clamp(32px, 4.2vw, 42px) 28px 24px;
	border-radius: 42px 42px 24px 24px / 56px 56px 24px 24px;
}

.bkdef-people--trustees .bkdef-trustees-quote__inner::before {
	top: -42px;
	width: min(82%, 700px);
	height: 96px;
	opacity: 0.08;
}

.bkdef-people--trustees .bkdef-trustees-quote__mark {
	margin-bottom: 0;
	font-size: clamp(2.8rem, 5.3vw, 4rem);
}

.bkdef-people--trustees .bkdef-trustees-quote__text {
	font-size: clamp(1.45rem, 2.25vw, 2.1rem);
	line-height: 1.1;
}

.bkdef-people--trustees .bkdef-trustees-quote__tagline {
	margin-top: 10px;
	font-size: 0.88rem;
	letter-spacing: 0.07em;
	line-height: 1.45;
}

@media (max-width: 1024px) {
	.bkdef-people--trustees .bkdef-trustees-grid {
		max-width: 560px;
		grid-template-columns: repeat(2, minmax(210px, 220px));
		gap: 34px 54px;
	}

	.bkdef-people--trustees .bkdef-trustees-title {
		letter-spacing: 0.1em;
	}
}

@media (max-width: 768px) {
	.bkdef-people--trustees .bkdef-trustees-header {
		margin-bottom: 30px;
	}

	.bkdef-people--trustees .bkdef-trustees-grid {
		max-width: 506px;
		grid-template-columns: repeat(2, minmax(200px, 220px));
		gap: 30px 30px;
	}

	.bkdef-people--trustees .bkdef-trustee-photo {
		width: 162px;
		height: 162px;
	}

	.bkdef-people--trustees .bkdef-trustees-quote__inner {
		padding: 30px 22px 22px;
	}
}

@media (max-width: 390px) {
	.bkdef-people--trustees .bkdef-trustees-grid {
		max-width: 238px;
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.bkdef-people--trustees .bkdef-trustees-rule {
		width: 58px;
	}

	.bkdef-people--trustees .bkdef-trustees-title {
		font-size: clamp(1.62rem, 9.2vw, 2.08rem);
		letter-spacing: 0.07em;
	}

	.bkdef-people--trustees .bkdef-trustees-intro {
		font-size: 0.92rem;
		line-height: 1.64;
	}

	.bkdef-people--trustees .bkdef-trustees-quote__inner {
		padding-inline: 18px;
	}

	.bkdef-people--trustees .bkdef-trustees-quote__text {
		font-size: 1.28rem;
	}
}

/* Trustees reference-match refinement: 2026-07-31 */
.bkdef-people--trustees {
	background:
		radial-gradient(ellipse 58% 22% at 50% 0%, rgba(255, 244, 223, 0.95) 0%, rgba(255, 244, 223, 0.58) 34%, rgba(255, 248, 231, 0) 72%),
		linear-gradient(180deg, #fffaf0 0%, #fff8e7 34%, #fff8e7 100%);
	padding-block: clamp(44px, 5.2vw, 68px);
}

.bkdef-people--trustees .bkdef-trustees-header {
	width: min(100%, 840px);
	margin: 0 auto 28px;
}

.bkdef-people--trustees .bkdef-trustees-monogram-row {
	gap: 20px;
	margin-bottom: 16px;
}

.bkdef-people--trustees .bkdef-trustees-rule {
	width: clamp(96px, 10vw, 148px);
	height: 1px;
	background: linear-gradient(90deg, rgba(198, 166, 100, 0.10), rgba(198, 166, 100, 0.82), rgba(198, 166, 100, 0.10));
}

.bkdef-people--trustees .bkdef-trustees-monogram {
	width: 46px;
	height: 46px;
	border-color: rgba(198, 166, 100, 0.24);
	background: rgba(255, 255, 255, 0.32);
}

.bkdef-people--trustees .bkdef-trustees-monogram img,
.bkdef-people--trustees .bkdef-trustees-monogram span {
	width: 24px;
	height: 24px;
}

.bkdef-people--trustees .bkdef-trustees-title {
	font-size: clamp(2.06rem, 3.55vw, 3rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
}

.bkdef-people--trustees .bkdef-trustees-intro {
	width: min(100%, 620px);
	margin-top: 10px;
	font-size: 0.97rem;
	line-height: 1.66;
}

.bkdef-people--trustees .bkdef-trustees-grid {
	width: min(100%, 1220px);
	max-width: min(100%, 1220px);
	grid-template-columns: repeat(var(--bkdef-trustees-columns), minmax(216px, 240px));
	justify-content: center;
	gap: 22px 82px;
}

.bkdef-people--trustees .bkdef-trustee-card {
	padding: 0;
}

.bkdef-people--trustees .bkdef-trustee-card:not(:last-child)::after {
	top: 10px;
	right: -41px;
	height: 210px;
	background: linear-gradient(180deg, rgba(198, 166, 100, 0), rgba(198, 166, 100, 0.82), rgba(198, 166, 100, 0));
}

.bkdef-people--trustees .bkdef-trustee-photo-wrap {
	padding-bottom: 18px;
	margin-bottom: 2px;
}

.bkdef-people--trustees .bkdef-trustee-photo {
	width: 120px;
	height: 120px;
	padding: 5px;
	background: rgba(255, 248, 231, 0.98);
	box-shadow: 0 10px 22px rgba(66, 28, 54, 0.10);
}

.bkdef-people--trustees .bkdef-trustee-photo::before {
	border-width: 2px;
	border-color: rgba(198, 166, 100, 0.64);
}

.bkdef-people--trustees .bkdef-trustee-photo img {
	object-position: center 16%;
	border: 2px solid rgba(198, 166, 100, 0.84);
}

.bkdef-people--trustees .bkdef-trustee-badge {
	width: 42px;
	height: 42px;
	bottom: 8px;
	border-width: 3px;
	box-shadow: 0 8px 18px rgba(51, 18, 41, 0.16);
}

.bkdef-people--trustees .bkdef-trustee-badge img,
.bkdef-people--trustees .bkdef-trustee-badge span {
	width: 21px;
	height: 21px;
}

.bkdef-people--trustees .bkdef-trustee-name {
	margin-top: 0;
	font-size: 16px!important;
	font-weight: 700;
	line-height: 1.06;
}

.bkdef-people--trustees .bkdef-trustee-role {
	margin-top: 7px;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.20em;
	line-height: 1.18;
	color: #b28a47;
}

.bkdef-people--trustees .bkdef-trustee-profession {
	margin-top: 4px;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	line-height: 1.26;
}

.bkdef-people--trustees .bkdef-trustees-quote {
	width: min(100%, 1220px);
	margin-top: clamp(24px, 3vw, 32px);
}

.bkdef-people--trustees .bkdef-trustees-quote__inner {
	padding: 24px 28px 18px;
	border-radius: 0 0 10px 10px / 0 0 10px 10px;
	box-shadow: none;
}


.bkdef-people--trustees .bkdef-trustees-quote__mark {
	margin-bottom: -2px;
	color: #c6a664;
	font-size: clamp(2rem, 4vw, 2.7rem);
	line-height: 0.7;
}

.bkdef-people--trustees .bkdef-trustees-quote__text {
	font-size: clamp(1.2rem, 1.75vw, 1.45rem);
	line-height: 1.12;
}

.bkdef-people--trustees .bkdef-trustees-quote__tagline {
	margin-top: 9px;
	font-size: 0.8125rem;
	letter-spacing: 0.16em;
	line-height: 1.35;
	color: rgba(255, 248, 231, 0.92);
}

@media (max-width: 1440px) {
	.bkdef-people--trustees .bkdef-trustees-grid,
	.bkdef-people--trustees .bkdef-trustees-quote {
		width: min(100%, 1180px);
		max-width: min(100%, 1180px);
	}
}

@media (max-width: 1024px) {
	.bkdef-people--trustees .bkdef-trustees-grid {
		max-width: 590px;
		grid-template-columns: repeat(2, minmax(220px, 236px));
		gap: 28px 56px;
	}

	.bkdef-people--trustees .bkdef-trustee-photo {
		width: 166px;
		height: 166px;
	}

	.bkdef-people--trustees .bkdef-trustees-quote {
		width: min(100%, 1000px);
	}
}

@media (max-width: 768px) {
	.bkdef-people--trustees {
		padding-inline: 20px;
	}

	.bkdef-people--trustees .bkdef-trustees-header {
		margin-bottom: 26px;
	}

	.bkdef-people--trustees .bkdef-trustees-grid {
		max-width: 500px;
		grid-template-columns: repeat(2, minmax(196px, 220px));
		gap: 26px 24px;
	}

	.bkdef-people--trustees .bkdef-trustee-card:not(:last-child)::after {
		display: none;
	}

	.bkdef-people--trustees .bkdef-trustees-quote__inner {
		padding: 22px 22px 18px;
	}
}

@media (max-width: 390px) {
	.bkdef-people--trustees .bkdef-trustees-monogram-row {
		gap: 14px;
	}

	.bkdef-people--trustees .bkdef-trustees-rule {
		width: 54px;
	}

	.bkdef-people--trustees .bkdef-trustees-grid {
		max-width: 240px;
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.bkdef-people--trustees .bkdef-trustee-photo {
		width: 120px;
		height: 120px;
	}

	.bkdef-people--trustees .bkdef-trustees-quote__inner {
		padding-inline: 18px;
	}

	.bkdef-people--trustees .bkdef-trustees-quote__text {
		font-size: 1.16rem;
	}

	.bkdef-people--trustees .bkdef-trustees-quote__tagline {
		font-size: 0.76rem;
		letter-spacing: 0.13em;
	}
}

/* Trustees background image: 2026-07-31 */
.bkdef-people--trustees {
	position: relative;
	background-color: #fff8e7;
	background-image: url("/wp-content/uploads/2026/07/bkdf_trust.webp");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% 100%;
	min-height: 727px;
}

/* Trustees quote reference update: 2026-07-31 */
.bkdef-people--trustees .bkdef-trustees-quote {
	position: relative;
	width: min(100%, 1220px);
	margin: clamp(18px, 2.4vw, 24px) auto 0;
	padding: 10px 0 0;
	text-align: center;
	color: #fff8e7;
}

.bkdef-people--trustees .bkdef-trustees-quote__inner,
.bkdef-people--trustees .bkdef-trustees-quote::before {
	display: none;
}

.bkdef-people--trustees .bkdef-trustees-quote__line {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: clamp(12px, 2vw, 22px);
	max-width: 860px;
	margin: 0 auto;
}

.bkdef-people--trustees .bkdef-trustees-quote__copy {
	display: grid;
	gap: 8px;
	max-width: 640px;
}

.bkdef-people--trustees .bkdef-trustees-quote__mark {
	flex: 0 0 auto;
	color: #c6a664;
	font-family: var(--bkdef-serif);
	font-size: clamp(2rem, 3.2vw, 2.7rem);
	font-weight: 600;
	line-height: 0.9;
	transform: translateY(-2px);
}

.bkdef-people--trustees .bkdef-trustees-quote__mark--open {
	margin-right: -2px;
}

.bkdef-people--trustees .bkdef-trustees-quote__mark--close {
	margin-left: -2px;
}

.bkdef-people--trustees .bkdef-trustees-quote__text {
	margin: 0;
	color: #fff8e7;
	font-family: var(--bkdef-serif);
	font-size: clamp(1.25rem, 1.9vw, 1.55rem);
	font-weight: 600;
	line-height: 1.12;
}

.bkdef-people--trustees .bkdef-trustees-quote__tagline {
	margin: 0;
	color: rgba(255, 248, 231, 0.96);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	line-height: 1.35;
	text-transform: uppercase;
}

.bkdef-people--trustees .bkdef-trustees-quote__ornament {
	display: block;
	width: 72px;
	height: 10px;
	margin: 12px auto 0;
	position: relative;
}

.bkdef-people--trustees .bkdef-trustees-quote__ornament::before,
.bkdef-people--trustees .bkdef-trustees-quote__ornament::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 26px;
	height: 1px;
	background: rgba(198, 166, 100, 0.92);
	transform: translateY(-50%);
}

.bkdef-people--trustees .bkdef-trustees-quote__ornament::before {
	left: 0;
}

.bkdef-people--trustees .bkdef-trustees-quote__ornament::after {
	right: 0;
}

.bkdef-people--trustees .bkdef-trustees-quote__ornament {
	background:
		radial-gradient(circle, rgba(198, 166, 100, 0.98) 0 2px, transparent 3px),
		linear-gradient(90deg, transparent 0 30px, rgba(198, 166, 100, 0.88) 30px 42px, transparent 42px 100%);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 8px 8px, 100% 1px;
}

@media (max-width: 768px) {
	.bkdef-people--trustees .bkdef-trustees-quote {
		width: min(100%, 1000px);
		margin-top: 16px;
	}

	.bkdef-people--trustees .bkdef-trustees-quote__line {
		gap: 10px;
		max-width: 720px;
	}

	.bkdef-people--trustees .bkdef-trustees-quote__text {
		font-size: clamp(1.12rem, 3.2vw, 1.32rem);
	}
}

@media (max-width: 390px) {
	.bkdef-people--trustees .bkdef-trustees-quote__line {
		gap: 8px;
	}

	.bkdef-people--trustees .bkdef-trustees-quote__mark {
		font-size: 1.72rem;
	}

	.bkdef-people--trustees .bkdef-trustees-quote__text {
		font-size: 1.02rem;
	}

	.bkdef-people--trustees .bkdef-trustees-quote__tagline {
		font-size: 0.74rem;
		letter-spacing: 0.13em;
	}
}

/* Trustees quote vertical reposition: 2026-07-31 */
.bkdef-people--trustees {
	position: relative;
	padding-bottom: clamp(220px, 24vw, 300px);
}

.bkdef-people--trustees .bkdef-trustees-quote {
	position: absolute;
	left: 50%;
	right: auto;
	top: auto;
	bottom: 42px;
	transform: translateX(-50%);
	width: min(calc(100% - 48px), 980px);
	margin: 0;
	padding: 0;
}

@media (max-width: 768px) {
	.bkdef-people--trustees {
		padding-bottom: clamp(44px, 8vw, 64px);
	}

	.bkdef-people--trustees .bkdef-trustees-quote {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		transform: none;
		width: min(100%, 1000px);
		margin: 16px auto 0;
		padding: 10px 0 0;
	}
}