:root {
	--bge-ink: #17262c;
	--bge-ink-soft: #38505a;
	--bge-roof: #142c33;
	--bge-roof-2: #0e2329;
	--bge-teal: #0d6872;
	--bge-teal-dark: #07525a;
	--bge-amber: #e8a13a;
	--bge-amber-dark: #c77c18;
	--bge-mist: #f1f5f4;
	--bge-cloud: #f8faf9;
	--bge-white: #fff;
	--bge-border: #d8e2df;
	--bge-shadow: 0 22px 60px rgba(20, 44, 51, 0.13);
	--bge-shadow-soft: 0 12px 34px rgba(20, 44, 51, 0.09);
	--bge-radius: 22px;
	--bge-radius-sm: 13px;
	--bge-container: 1220px;
	--bge-header-offset: 118px;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--bge-header-offset);
}

body {
	margin: 0;
	background: var(--bge-white);
	color: var(--bge-ink);
	font-family: "Source Sans 3", sans-serif;
	font-size: 18px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.bge-modal-open {
	overflow: hidden;
}

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

a {
	color: var(--bge-teal);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover {
	color: var(--bge-teal-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.65em;
	color: var(--bge-roof);
	font-family: "Manrope", sans-serif;
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.12;
}

h1 {
	font-size: clamp(2.45rem, 5vw, 4.8rem);
}

h2 {
	font-size: clamp(1.85rem, 3vw, 3rem);
}

h3 {
	font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p,
ul,
ol {
	margin: 0 0 1.2em;
}

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid var(--bge-amber);
	outline-offset: 3px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.bge-skip-link {
	position: fixed;
	z-index: 99999;
	top: 12px;
	left: 12px;
	padding: 10px 16px;
	background: var(--bge-white);
	color: var(--bge-roof);
	border-radius: 8px;
	transform: translateY(-180%);
}

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

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

.bge-kicker {
	display: inline-block;
	margin-bottom: 0.8rem;
	color: var(--bge-teal);
	font-family: "Manrope", sans-serif;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	line-height: 1.3;
	text-transform: uppercase;
}

.bge-section {
	padding: 76px 0;
	scroll-margin-top: var(--bge-header-offset);
}

.bge-section--mist {
	background: var(--bge-mist);
}

.bge-section--dark {
	background: var(--bge-roof);
	color: rgba(255, 255, 255, 0.82);
}

.bge-section--dark h2,
.bge-section--dark h3 {
	color: var(--bge-white);
}

.bge-section--dark .bge-kicker {
	color: var(--bge-amber);
}

.bge-section-heading {
	max-width: 780px;
	margin-bottom: 38px;
}

.bge-section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.bge-section-heading > p {
	color: var(--bge-ink-soft);
	font-size: 1.1rem;
}

.bge-section--dark .bge-section-heading > p {
	color: rgba(255, 255, 255, 0.72);
}

.bge-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 20px;
	gap: 10px;
	border: 2px solid transparent;
	border-radius: 999px;
	font-family: "Manrope", sans-serif;
	font-size: 0.91rem;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.bge-button--primary {
	background: var(--bge-amber);
	color: var(--bge-roof);
}

.bge-button--primary:hover {
	background: #f1b353;
	color: var(--bge-roof);
}

.bge-button--outline {
	border-color: var(--bge-roof);
	color: var(--bge-roof);
}

.bge-button--outline:hover {
	background: var(--bge-roof);
	color: var(--bge-white);
}

.bge-button--ghost {
	border-color: rgba(255, 255, 255, 0.55);
	color: var(--bge-white);
}

.bge-button--ghost:hover {
	background: var(--bge-white);
	color: var(--bge-roof);
}

/* Header */
.bge-site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 1px 0 var(--bge-border);
	backdrop-filter: blur(12px);
}

.bge-header-bar {
	background: var(--bge-roof);
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.78rem;
}

.bge-header-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 32px;
	gap: 20px;
}

.bge-header-bar__contact {
	display: flex;
	gap: 18px;
}

.bge-header-bar a {
	color: var(--bge-white);
	text-decoration: none;
}

.bge-header-main {
	display: flex;
	align-items: center;
	min-height: 82px;
	gap: 22px;
}

.bge-brand {
	display: inline-flex;
	flex: 0 0 auto;
	color: var(--bge-roof);
	text-decoration: none;
}

.bge-logo {
	display: inline-flex;
	align-items: center;
	gap: 11px;
}

.bge-logo__mark {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	color: var(--bge-teal);
}

.bge-logo__mark svg {
	display: block;
	width: 100%;
	height: 100%;
}

.bge-logo__text {
	display: flex;
	flex-direction: column;
	font-family: "Manrope", sans-serif;
	line-height: 1.05;
}

.bge-logo__text strong {
	color: inherit;
	font-size: 1.12rem;
	font-weight: 800;
	letter-spacing: -0.035em;
}

.bge-logo__text span {
	margin-top: 4px;
	color: var(--bge-teal);
	font-size: 0.69rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.bge-logo--light {
	color: var(--bge-white);
}

.bge-logo--light .bge-logo__mark,
.bge-logo--light .bge-logo__text span {
	color: var(--bge-amber);
}

.bge-primary-nav {
	margin-left: auto;
}

.bge-menu,
.bge-menu ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.bge-menu {
	display: flex;
	align-items: center;
	gap: 3px;
}

.bge-menu > li {
	position: relative;
}

.bge-menu a {
	display: flex;
	align-items: center;
	min-height: 46px;
	padding: 10px 12px;
	color: var(--bge-ink);
	font-family: "Manrope", sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
}

.bge-menu > li > a:hover,
.bge-menu > li.current-menu-item > a,
.bge-menu > li.current-menu-ancestor > a {
	color: var(--bge-teal);
}

.bge-menu .menu-item-has-children > a::after {
	margin-left: 6px;
	content: "⌄";
	font-size: 0.8rem;
}

.bge-menu .sub-menu {
	position: absolute;
	top: calc(100% - 3px);
	left: 0;
	width: 265px;
	padding: 10px;
	background: var(--bge-white);
	border: 1px solid var(--bge-border);
	border-radius: var(--bge-radius-sm);
	box-shadow: var(--bge-shadow);
	opacity: 0;
	transform: translateY(8px);
	visibility: hidden;
	transition: 0.2s ease;
}

.bge-menu li:hover > .sub-menu,
.bge-menu li:focus-within > .sub-menu {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

.bge-menu .sub-menu a {
	min-height: 39px;
	padding: 8px 10px;
	border-radius: 8px;
}

.bge-menu .sub-menu a:hover {
	background: var(--bge-mist);
}

.bge-header-cta {
	flex: 0 0 auto;
}

.bge-header-cta .bge-button {
	padding-inline: 17px;
	font-size: 0.79rem;
}

.bge-menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 11px;
	margin-left: auto;
	background: var(--bge-mist);
	border: 0;
	border-radius: 10px;
	cursor: pointer;
}

.bge-menu-toggle > span:not(.screen-reader-text) {
	display: block;
	height: 2px;
	margin: 5px 0;
	background: var(--bge-roof);
	transition: 0.2s ease;
}

/* Hero */
.bge-home-hero,
.bge-page-hero {
	position: relative;
	background-color: var(--bge-roof);
	background-image: var(--bge-hero-image);
	background-position: center;
	background-size: cover;
	color: var(--bge-white);
}

.bge-home-hero__overlay,
.bge-page-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(8, 28, 34, 0.96) 0%, rgba(8, 28, 34, 0.84) 46%, rgba(8, 28, 34, 0.42) 100%);
}

.bge-home-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.75fr);
	align-items: start;
	min-height: 720px;
	padding-top: 76px;
	padding-bottom: 72px;
	gap: 64px;
}

.bge-home-hero__content {
	align-self: start;
}

.bge-home-hero h1,
.bge-page-hero h1 {
	max-width: 880px;
	color: var(--bge-white);
}

.bge-home-hero h1 {
	font-size: clamp(2.7rem, 5.6vw, 5.2rem);
}

.bge-home-hero .bge-kicker,
.bge-page-hero .bge-kicker {
	color: var(--bge-amber);
}

.bge-home-hero__lead {
	max-width: 720px;
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.bge-hero-points {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 22px 0 30px;
	gap: 10px;
	list-style: none;
}

.bge-hero-points li {
	padding: 8px 13px;
	background: rgba(255, 255, 255, 0.11);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	font-size: 0.84rem;
	line-height: 1.2;
}

.bge-hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.bge-hero-form-card {
	position: sticky;
	top: 140px;
	padding: 28px;
	background: rgba(255, 255, 255, 0.98);
	color: var(--bge-ink);
	border-radius: var(--bge-radius);
	box-shadow: var(--bge-shadow);
}

.bge-hero-form-card h2 {
	margin-bottom: 0.35em;
	font-size: 1.8rem;
}

.bge-hero-form-card__heading p {
	color: var(--bge-ink-soft);
	font-size: 0.96rem;
}

.bge-hero-projects {
	margin-top: 34px;
}

.bge-hero-projects .bge-project-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.bge-hero-projects .bge-project-card {
	min-width: 0;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 12px;
}

.bge-hero-projects .bge-project-card__open {
	aspect-ratio: 4 / 3;
}

.bge-hero-projects .bge-project-card__body {
	display: none;
}

.bge-page-hero__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 430px;
	padding-top: 72px;
	padding-bottom: 62px;
}

.bge-page-hero h1 {
	max-width: 920px;
	font-size: clamp(2.35rem, 4.7vw, 4.4rem);
}

.bge-page-hero__inner > p {
	max-width: 770px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.15rem;
}

.bge-breadcrumbs {
	margin-bottom: 36px;
	font-size: 0.76rem;
}

.bge-breadcrumbs span {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
}

.bge-breadcrumbs a {
	color: rgba(255, 255, 255, 0.74);
	text-decoration: none;
}

.bge-breadcrumbs i {
	color: rgba(255, 255, 255, 0.42);
	font-style: normal;
}

/* Forms */
.bge-form .wpforms-container {
	margin: 0;
}

.bge-form .wpforms-field {
	padding: 7px 0 !important;
}

.bge-form .wpforms-field-label {
	margin-bottom: 5px !important;
	color: var(--bge-roof) !important;
	font-family: "Manrope", sans-serif !important;
	font-size: 0.79rem !important;
	font-weight: 800 !important;
}

.bge-form input:not([type="checkbox"]):not([type="radio"]),
.bge-form select,
.bge-form textarea {
	width: 100% !important;
	max-width: none !important;
	min-height: 46px !important;
	padding: 10px 12px !important;
	background: var(--bge-cloud) !important;
	border: 1px solid var(--bge-border) !important;
	border-radius: 9px !important;
	color: var(--bge-ink) !important;
}

.bge-form textarea {
	min-height: 108px !important;
}

.bge-form input:focus,
.bge-form select:focus,
.bge-form textarea:focus {
	border-color: var(--bge-teal) !important;
	box-shadow: 0 0 0 3px rgba(13, 104, 114, 0.13) !important;
}

.bge-form button[type="submit"],
.bge-form input[type="submit"] {
	width: 100% !important;
	min-height: 49px !important;
	padding: 12px 18px !important;
	background: var(--bge-amber) !important;
	border: 0 !important;
	border-radius: 999px !important;
	color: var(--bge-roof) !important;
	font-family: "Manrope", sans-serif !important;
	font-weight: 800 !important;
}

.bge-form-placeholder {
	display: flex;
	flex-direction: column;
	padding: 18px;
	background: #fff8e8;
	border: 1px dashed var(--bge-amber-dark);
	border-radius: 10px;
	color: var(--bge-ink);
	font-size: 0.9rem;
}

/* Content primitives */
.bge-page-content {
	background: var(--bge-white);
}

.bge-page-content > .bge-container {
	padding-top: 72px;
	padding-bottom: 72px;
}

.bge-page-content--home {
	padding: 0;
}

.bge-prose {
	max-width: 1120px;
}

.bge-prose > *:first-child {
	margin-top: 0;
}

.bge-prose h2,
.bge-prose h3 {
	scroll-margin-top: var(--bge-header-offset);
}

.bge-prose h2 {
	margin-top: 1.15em;
}

.bge-prose h3 {
	margin-top: 1.25em;
}

.bge-prose p,
.bge-prose > ul,
.bge-prose > ol {
	max-width: 850px;
}

.bge-prose a:not(.bge-button) {
	font-weight: 700;
}

.bge-intro {
	max-width: 900px;
	margin-bottom: 36px;
	font-size: 1.16rem;
}

.bge-answer-block {
	padding: 28px 30px;
	margin: 28px 0 38px;
	background: var(--bge-mist);
	border-left: 5px solid var(--bge-teal);
	border-radius: 0 var(--bge-radius-sm) var(--bge-radius-sm) 0;
}

.bge-answer-block > *:last-child {
	margin-bottom: 0;
}

.bge-grid {
	display: grid;
	gap: 22px;
}

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

.bge-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bge-grid--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bge-card {
	padding: 27px;
	background: var(--bge-white);
	border: 1px solid var(--bge-border);
	border-radius: var(--bge-radius);
	box-shadow: var(--bge-shadow-soft);
}

.bge-card--teal {
	background: var(--bge-teal);
	border-color: var(--bge-teal);
	color: rgba(255, 255, 255, 0.82);
}

.bge-card--teal h3,
.bge-card--dark h3 {
	color: var(--bge-white);
}

.bge-card--dark {
	background: var(--bge-roof);
	border-color: var(--bge-roof);
	color: rgba(255, 255, 255, 0.78);
}

.bge-card p:last-child,
.bge-card ul:last-child {
	margin-bottom: 0;
}

.bge-card__number {
	display: grid;
	width: 46px;
	height: 46px;
	margin-bottom: 22px;
	background: var(--bge-amber);
	border-radius: 50%;
	color: var(--bge-roof);
	font-family: "Manrope", sans-serif;
	font-size: 0.9rem;
	font-weight: 800;
	place-items: center;
}

.bge-card-link {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 27px;
	background: var(--bge-white);
	border: 1px solid var(--bge-border);
	border-radius: var(--bge-radius);
	box-shadow: var(--bge-shadow-soft);
	color: var(--bge-ink);
	text-decoration: none;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.bge-card-link:hover {
	border-color: var(--bge-teal);
	box-shadow: var(--bge-shadow);
	color: var(--bge-ink);
	transform: translateY(-4px);
}

.bge-card-link h3 {
	margin-bottom: 0.5em;
	font-size: 1.25rem;
}

.bge-card-link p {
	color: var(--bge-ink-soft);
	font-size: 0.95rem;
}

.bge-card-link__arrow {
	margin-top: auto;
	color: var(--bge-teal);
	font-family: "Manrope", sans-serif;
	font-weight: 800;
}

.bge-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
	align-items: center;
	gap: 64px;
}

.bge-split--reverse > :first-child {
	order: 2;
}

.bge-split__image {
	overflow: hidden;
	border-radius: var(--bge-radius);
	box-shadow: var(--bge-shadow);
}

.bge-split__image img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.bge-check-list {
	padding: 0;
	list-style: none;
}

.bge-check-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
}

.bge-check-list li::before {
	position: absolute;
	top: 0.18em;
	left: 0;
	display: grid;
	width: 20px;
	height: 20px;
	background: rgba(13, 104, 114, 0.12);
	border-radius: 50%;
	color: var(--bge-teal);
	content: "✓";
	font-size: 0.73rem;
	font-weight: 800;
	place-items: center;
}

.bge-tag-list {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	gap: 9px;
	list-style: none;
}

.bge-tag-list li {
	padding: 7px 12px;
	background: var(--bge-mist);
	border-radius: 999px;
	color: var(--bge-ink-soft);
	font-size: 0.88rem;
}

.bge-table-wrap {
	overflow-x: auto;
	margin: 28px 0;
	border: 1px solid var(--bge-border);
	border-radius: var(--bge-radius-sm);
}

.bge-table {
	width: 100%;
	min-width: 640px;
	border-collapse: collapse;
	background: var(--bge-white);
}

.bge-table th,
.bge-table td {
	padding: 16px 18px;
	border-bottom: 1px solid var(--bge-border);
	text-align: left;
	vertical-align: top;
}

.bge-table th {
	background: var(--bge-roof);
	color: var(--bge-white);
	font-family: "Manrope", sans-serif;
	font-size: 0.84rem;
}

.bge-table tr:last-child td {
	border-bottom: 0;
}

.bge-callout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	padding: 34px;
	margin: 36px 0;
	background: var(--bge-roof);
	border-radius: var(--bge-radius);
	color: rgba(255, 255, 255, 0.78);
	gap: 28px;
}

.bge-callout h2,
.bge-callout h3 {
	color: var(--bge-white);
}

.bge-callout p:last-child {
	margin-bottom: 0;
}

.bge-flow {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	padding: 0;
	margin: 30px 0;
	gap: 14px;
	counter-reset: flow;
	list-style: none;
}

.bge-flow li {
	position: relative;
	padding: 24px 18px;
	background: var(--bge-mist);
	border-radius: var(--bge-radius-sm);
	font-family: "Manrope", sans-serif;
	font-size: 0.9rem;
	font-weight: 800;
	text-align: center;
	counter-increment: flow;
}

.bge-flow li::before {
	display: grid;
	width: 30px;
	height: 30px;
	margin: 0 auto 12px;
	background: var(--bge-teal);
	border-radius: 50%;
	color: var(--bge-white);
	content: counter(flow);
	font-size: 0.76rem;
	place-items: center;
}

.bge-flow li:not(:last-child)::after {
	position: absolute;
	z-index: 2;
	top: 50%;
	right: -11px;
	color: var(--bge-teal);
	content: "→";
	transform: translateY(-50%);
}

/* FAQ */
.bge-faq-list {
	display: grid;
	gap: 12px;
}

.bge-faq {
	background: var(--bge-white);
	border: 1px solid var(--bge-border);
	border-radius: var(--bge-radius-sm);
}

.bge-faq summary {
	position: relative;
	padding: 19px 54px 19px 20px;
	color: var(--bge-roof);
	font-family: "Manrope", sans-serif;
	font-size: 1rem;
	font-weight: 800;
	cursor: pointer;
	list-style: none;
}

.bge-faq summary::-webkit-details-marker {
	display: none;
}

.bge-faq summary::after {
	position: absolute;
	top: 50%;
	right: 20px;
	display: grid;
	width: 28px;
	height: 28px;
	background: var(--bge-mist);
	border-radius: 50%;
	color: var(--bge-teal);
	content: "+";
	font-size: 1.25rem;
	transform: translateY(-50%);
	place-items: center;
}

.bge-faq[open] summary::after {
	content: "−";
}

.bge-faq__answer {
	padding: 0 20px 18px;
	color: var(--bge-ink-soft);
}

.bge-faq__answer > *:last-child {
	margin-bottom: 0;
}

/* Projects */
.bge-filter {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 28px;
	gap: 8px;
}

.bge-filter button {
	padding: 9px 14px;
	background: var(--bge-white);
	border: 1px solid var(--bge-border);
	border-radius: 999px;
	color: var(--bge-ink);
	font-family: "Manrope", sans-serif;
	font-size: 0.79rem;
	font-weight: 800;
	cursor: pointer;
}

.bge-filter button:hover,
.bge-filter button.is-active {
	background: var(--bge-teal);
	border-color: var(--bge-teal);
	color: var(--bge-white);
}

.bge-project-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.bge-project-card {
	overflow: hidden;
	background: var(--bge-white);
	border: 1px solid var(--bge-border);
	border-radius: var(--bge-radius);
	box-shadow: var(--bge-shadow-soft);
}

.bge-project-card.is-hidden {
	display: none;
}

.bge-project-card__open {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	background: var(--bge-roof);
	border: 0;
	cursor: zoom-in;
}

.bge-project-card__open img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.bge-project-card__open:hover img {
	transform: scale(1.035);
}

.bge-project-card__expand {
	position: absolute;
	right: 13px;
	bottom: 13px;
	display: grid;
	width: 37px;
	height: 37px;
	background: rgba(255, 255, 255, 0.92);
	border-radius: 50%;
	color: var(--bge-roof);
	font-weight: 800;
	place-items: center;
}

.bge-project-card__body {
	padding: 20px;
}

.bge-project-card__body .bge-kicker {
	margin-bottom: 6px;
	font-size: 0.66rem;
}

.bge-project-card__body h3 {
	margin-bottom: 0.35em;
	font-size: 1.15rem;
}

.bge-project-card__body p {
	margin-bottom: 0;
	color: var(--bge-ink-soft);
	font-size: 0.9rem;
}

.bge-modal {
	position: fixed;
	z-index: 10000;
	inset: 0;
	display: grid;
	padding: 30px;
	background: rgba(5, 18, 22, 0.94);
	opacity: 0;
	place-items: center;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.bge-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}

.bge-modal__inner {
	display: grid;
	max-width: 1200px;
	max-height: calc(100vh - 70px);
	place-items: center;
}

.bge-modal__inner img {
	display: block;
	max-width: 100%;
	max-height: calc(100vh - 70px);
	border-radius: 12px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
	object-fit: contain;
}

.bge-modal__close {
	position: fixed;
	z-index: 2;
	top: 18px;
	right: 20px;
	display: grid;
	width: 46px;
	height: 46px;
	padding: 0;
	background: var(--bge-white);
	border: 0;
	border-radius: 50%;
	color: var(--bge-roof);
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
	place-items: center;
}

/* Blog */
.bge-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.bge-post-card {
	overflow: hidden;
	background: var(--bge-white);
	border: 1px solid var(--bge-border);
	border-radius: var(--bge-radius);
	box-shadow: var(--bge-shadow-soft);
}

.bge-post-card__image {
	display: block;
	overflow: hidden;
	background: var(--bge-roof);
}

.bge-post-card__image img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.bge-post-card__image:hover img {
	transform: scale(1.035);
}

.bge-post-card__body {
	padding: 24px;
}

.bge-post-card__body .bge-kicker {
	margin-bottom: 8px;
	font-size: 0.65rem;
}

.bge-post-card h2 {
	font-size: 1.28rem;
}

.bge-post-card h2 a {
	color: var(--bge-roof);
	text-decoration: none;
}

.bge-post-card p {
	color: var(--bge-ink-soft);
	font-size: 0.94rem;
}

.bge-text-link {
	font-family: "Manrope", sans-serif;
	font-size: 0.85rem;
	font-weight: 800;
	text-decoration: none;
}

.pagination {
	margin-top: 40px;
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	padding: 0 10px;
	background: var(--bge-mist);
	border-radius: 8px;
	color: var(--bge-roof);
	text-decoration: none;
	place-items: center;
}

.page-numbers.current {
	background: var(--bge-teal);
	color: var(--bge-white);
}

.bge-article {
	padding: 72px 0;
}

.bge-article__layout {
	display: grid;
	grid-template-columns: minmax(0, 810px) minmax(280px, 1fr);
	align-items: start;
	gap: 70px;
}

.bge-article__content {
	min-width: 0;
}

.bge-article-meta {
	display: flex;
	padding-bottom: 20px;
	margin-bottom: 28px;
	border-bottom: 1px solid var(--bge-border);
	color: var(--bge-ink-soft);
	font-size: 0.83rem;
	gap: 18px;
}

.bge-sticky-card {
	position: sticky;
	top: 140px;
	padding: 28px;
	background: var(--bge-mist);
	border-radius: var(--bge-radius);
}

.bge-sticky-card h2 {
	font-size: 1.55rem;
}

.bge-sticky-card p {
	color: var(--bge-ink-soft);
	font-size: 0.94rem;
}

/* Final CTA */
.bge-final-form {
	padding: 78px 0;
	background: linear-gradient(135deg, var(--bge-roof) 0%, var(--bge-teal-dark) 100%);
	color: rgba(255, 255, 255, 0.8);
}

.bge-final-form__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
	align-items: start;
	gap: 70px;
}

.bge-final-form__intro {
	position: sticky;
	top: 140px;
}

.bge-final-form h2 {
	color: var(--bge-white);
}

.bge-final-form .bge-kicker {
	color: var(--bge-amber);
}

.bge-final-form .bge-check-list li::before {
	background: rgba(255, 255, 255, 0.14);
	color: var(--bge-amber);
}

.bge-final-form__form {
	padding: 30px;
	background: var(--bge-white);
	border-radius: var(--bge-radius);
	box-shadow: var(--bge-shadow);
	color: var(--bge-ink);
}

/* Footer */
.bge-site-footer {
	padding-top: 70px;
	background: var(--bge-roof-2);
	color: rgba(255, 255, 255, 0.67);
}

.bge-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 0.75fr);
	padding-bottom: 58px;
	gap: 50px;
}

.bge-footer-brand > p {
	max-width: 360px;
	margin-top: 20px;
}

.bge-footer-grid h2 {
	color: var(--bge-white);
	font-size: 0.92rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.bge-footer-grid ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.bge-footer-grid li {
	margin-bottom: 7px;
}

.bge-footer-grid a {
	color: rgba(255, 255, 255, 0.69);
	font-size: 0.89rem;
	text-decoration: none;
}

.bge-footer-grid a:hover {
	color: var(--bge-white);
}

.bge-footer-contact {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.bge-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bge-footer-bottom__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 66px;
	gap: 20px;
}

.bge-footer-bottom p {
	margin: 0;
	font-size: 0.78rem;
}

.bge-footer-bottom nav {
	display: flex;
	gap: 16px;
}

.bge-footer-bottom a {
	color: rgba(255, 255, 255, 0.63);
	font-size: 0.78rem;
	text-decoration: none;
}

.bge-mobile-actions {
	display: none;
}

.bge-error-page {
	display: grid;
	min-height: 62vh;
	padding: 80px 0;
	background: var(--bge-mist);
	place-items: center;
}

.bge-error-page__inner {
	max-width: 760px;
	text-align: center;
}

.bge-error-page .bge-hero-buttons {
	justify-content: center;
}

@media (max-width: 1120px) {
	.bge-header-cta {
		display: none;
	}

	.bge-menu a {
		padding-inline: 9px;
		font-size: 0.76rem;
	}

	.bge-home-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(330px, 0.7fr);
		gap: 38px;
	}

	.bge-footer-grid {
		grid-template-columns: 1.3fr repeat(3, 1fr);
		gap: 32px;
	}
}

@media (max-width: 960px) {
	:root {
		--bge-header-offset: 84px;
	}

	.bge-header-bar {
		display: none;
	}

	.bge-header-main {
		min-height: 76px;
	}

	.bge-menu-toggle {
		display: block;
	}

	.bge-primary-nav {
		position: fixed;
		z-index: 1001;
		top: 76px;
		right: 0;
		width: min(360px, 92vw);
		height: calc(100vh - 76px);
		padding: 20px;
		background: var(--bge-white);
		box-shadow: -20px 30px 60px rgba(20, 44, 51, 0.18);
		overflow-y: auto;
		transform: translateX(105%);
		transition: transform 0.25s ease;
	}

	.bge-primary-nav.is-open {
		transform: translateX(0);
	}

	.bge-menu {
		display: block;
	}

	.bge-menu a {
		min-height: 46px;
		padding: 11px 12px;
		font-size: 0.9rem;
	}

	.bge-menu .sub-menu {
		position: static;
		display: none;
		width: auto;
		padding: 0 0 5px 12px;
		border: 0;
		box-shadow: none;
		opacity: 1;
		transform: none;
		visibility: visible;
	}

	.bge-menu .menu-item-has-children.is-open > .sub-menu {
		display: block;
	}

	.bge-home-hero__grid {
		grid-template-columns: 1fr;
		min-height: 0;
		padding-top: 64px;
		gap: 44px;
	}

	.bge-hero-form-card,
	.bge-final-form__intro,
	.bge-sticky-card {
		position: static;
	}

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

	.bge-grid--3,
	.bge-post-grid,
	.bge-project-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bge-split,
	.bge-final-form__inner,
	.bge-article__layout {
		grid-template-columns: 1fr;
	}

	.bge-split--reverse > :first-child {
		order: initial;
	}

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

	.bge-flow li::after {
		display: none;
	}

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

@media (max-width: 680px) {
	body {
		padding-bottom: 58px;
		font-size: 17px;
	}

	.bge-container {
		width: min(calc(100% - 28px), var(--bge-container));
	}

	.bge-section,
	.bge-page-content > .bge-container,
	.bge-article,
	.bge-final-form {
		padding-top: 54px;
		padding-bottom: 54px;
	}

	.bge-logo__mark {
		width: 42px;
		height: 42px;
	}

	.bge-logo__text strong {
		font-size: 0.98rem;
	}

	.bge-logo__text span {
		font-size: 0.57rem;
	}

	.bge-home-hero__grid {
		padding-top: 54px;
		padding-bottom: 52px;
	}

	.bge-home-hero h1 {
		font-size: clamp(2.35rem, 12vw, 3.5rem);
	}

	.bge-hero-form-card {
		padding: 22px;
	}

	.bge-hero-projects .bge-project-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bge-page-hero__inner {
		min-height: 380px;
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.bge-breadcrumbs {
		margin-bottom: 28px;
	}

	.bge-grid--2,
	.bge-grid--3,
	.bge-grid--4,
	.bge-project-grid,
	.bge-post-grid,
	.bge-flow {
		grid-template-columns: 1fr;
	}

	.bge-callout {
		grid-template-columns: 1fr;
		padding: 27px;
	}

	.bge-final-form__inner {
		gap: 34px;
	}

	.bge-final-form__form {
		padding: 21px;
	}

	.bge-footer-grid {
		grid-template-columns: 1fr;
	}

	.bge-footer-bottom__inner {
		align-items: flex-start;
		flex-direction: column;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.bge-mobile-actions {
		position: fixed;
		z-index: 1002;
		right: 0;
		bottom: 0;
		left: 0;
		display: flex;
		height: 58px;
		background: var(--bge-roof);
		box-shadow: 0 -8px 24px rgba(20, 44, 51, 0.16);
	}

	.bge-mobile-actions a {
		display: grid;
		flex: 1;
		color: var(--bge-white);
		font-family: "Manrope", sans-serif;
		font-size: 0.82rem;
		font-weight: 800;
		text-decoration: none;
		place-items: center;
	}

	.bge-mobile-actions a:last-child {
		background: var(--bge-amber);
		color: var(--bge-roof);
	}

	.bge-modal {
		padding: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

