/* ==========================================================================
   Bright Dome Contracting — design system + components
   Palette sampled from the BDC logo (#940A09). Display face: Oswald.
   Body face: Rubik.
   ========================================================================== */

:root {
	/* Brand -------------------------------------------------------------- */
	--maroon-900: #5c0706;
	--maroon-800: #7a0908;
	--maroon-700: #940a09; /* base brand / logo red */
	--maroon-600: #b0130f;
	--maroon-500: #c41c17;
	--maroon-050: #fbedec;

	/* Ink / neutrals ----------------------------------------------------- */
	--ink-950: #0a0a0a;
	--ink-900: #141414;
	--ink-800: #1e1e1e;
	--ink-700: #2b2b2b;
	--gray-700: #4a4a4a;
	--gray-600: #6b6b6b;
	--gray-500: #8a8a8a;
	--gray-400: #b5b5b5;
	--gray-300: #dadada;
	--gray-200: #e7e7e7;
	--gray-100: #f1f1f1;
	--gray-050: #f6f6f6;
	--white: #fff;

	/* Semantic ----------------------------------------------------------- */
	--brand: var(--maroon-700);
	--brand-strong: var(--maroon-800);
	--brand-bright: var(--maroon-500);
	--brand-wash: var(--maroon-050);

	--text-heading: var(--ink-900);
	--text-body: var(--gray-600);
	--text-muted: var(--gray-500);
	--text-on-dark: var(--white);
	--text-on-dark-muted: #b9b9b9;

	--surface-page: var(--white);
	--surface-muted: var(--gray-050);
	--surface-dark: var(--ink-900);
	--surface-darker: var(--ink-950);

	--border: var(--gray-200);
	--border-strong: var(--gray-300);
	--border-on-dark: rgba(255, 255, 255, .12);
	--focus-ring: rgba(148, 10, 9, .35);

	/* Type --------------------------------------------------------------- */
	--font-display: 'Oswald', 'Arial Narrow', system-ui, sans-serif;
	--font-body: 'Rubik', system-ui, -apple-system, 'Segoe UI', sans-serif;

	--fs-display: 64px;
	--fs-h1: 48px;
	--fs-h2: 38px;
	--fs-h3: 26px;
	--fs-h4: 20px;
	--fs-eyebrow: 14px;
	--fs-lg: 18px;
	--fs-body: 16px;
	--fs-sm: 14px;
	--fs-xs: 12px;
	--fs-stat: 72px;

	--lh-tight: 1.05;
	--lh-heading: 1.15;
	--lh-body: 1.7;
	--ls-eyebrow: 2px;

	/* Layout ------------------------------------------------------------- */
	--container-max: 1200px;
	--gutter: 24px;
	--section-y: 96px;

	--radius-sm: 2px;
	--radius-circle: 50%;

	--shadow-sm: 0 2px 8px rgba(20, 20, 20, .06);
	--shadow-md: 0 12px 30px rgba(20, 20, 20, .1);
	--shadow-lg: 0 24px 60px rgba(20, 20, 20, .14);
	--shadow-brand: 0 14px 34px rgba(148, 10, 9, .28);

	--ease-out: cubic-bezier(.22, .61, .36, 1);
}

/* Reset -------------------------------------------------------------------- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--surface-page);
	color: var(--text-body);
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: var(--lh-body);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .2s var(--ease-out); }
a:hover { color: var(--brand-strong); }
button { font: inherit; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	color: var(--text-heading);
	line-height: var(--lh-heading);
	font-weight: 600;
	margin: 0 0 .6em;
}

h1 { font-size: var(--fs-h1); font-weight: 700; }
h2 { font-size: var(--fs-h2); font-weight: 700; }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; }

/* Layout helpers ----------------------------------------------------------- */

.bdc-container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding-left: var(--gutter);
	padding-right: var(--gutter);
	width: 100%;
}

.bdc-section { padding: var(--section-y) 0; }
.bdc-section--muted { background: var(--surface-muted); }
.bdc-section--dark { background: var(--surface-dark); color: var(--text-on-dark-muted); }
.bdc-section--dark h1,
.bdc-section--dark h2,
.bdc-section--dark h3,
.bdc-section--dark h4 { color: var(--white); }
.bdc-section--tight { padding: 64px 0; }

.bdc-grid { display: grid; gap: 24px; }
.bdc-grid--2 { grid-template-columns: repeat(2, 1fr); }
.bdc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.bdc-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Section headings --------------------------------------------------------- */

.bdc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-size: var(--fs-eyebrow);
	font-weight: 500;
	letter-spacing: var(--ls-eyebrow);
	text-transform: uppercase;
	color: var(--brand);
	margin: 0 0 14px;
}

.bdc-eyebrow::before {
	content: "";
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 10px solid var(--brand);
}

.bdc-section-title {
	font-size: var(--fs-h2);
	font-weight: 700;
	margin: 0 0 16px;
	max-width: 22ch;
}

.bdc-section-head--center { text-align: center; }
.bdc-section-head--center .bdc-section-title { margin-left: auto; margin-right: auto; }
.bdc-section-head--center .bdc-section-desc { margin-left: auto; margin-right: auto; }
.bdc-section--dark .bdc-eyebrow { color: var(--maroon-500); }
.bdc-section--dark .bdc-eyebrow::before { border-bottom-color: var(--maroon-500); }

.bdc-section-desc { max-width: 60ch; margin: 0; font-size: var(--fs-body); }

.bdc-section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 32px;
	margin-bottom: 48px;
	flex-wrap: wrap;
}

.bdc-section-head--center { display: block; margin-bottom: 56px; }

/* Buttons ------------------------------------------------------------------ */

.bdc-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: var(--brand);
	color: var(--white);
	font-family: var(--font-body);
	font-weight: 600;
	font-size: var(--fs-sm);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 16px 28px;
	border: 0;
	cursor: pointer;
	transition: background .25s var(--ease-out), transform .25s var(--ease-out);
}

.bdc-btn:hover { background: var(--brand-strong); color: var(--white); transform: translateY(-2px); }
.bdc-btn__icon {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	background: rgba(255, 255, 255, .18);
	font-size: 13px;
	line-height: 1;
}

.bdc-btn--dark { background: var(--ink-900); }
.bdc-btn--dark:hover { background: var(--brand); }
.bdc-btn--outline {
	background: transparent;
	color: var(--ink-900);
	border: 1px solid var(--border-strong);
}
.bdc-btn--outline:hover { background: var(--ink-900); color: var(--white); }
.bdc-btn--outline .bdc-btn__icon { background: rgba(0, 0, 0, .08); }
.bdc-btn--sm { padding: 12px 20px; font-size: var(--fs-xs); }
.bdc-btn--block { width: 100%; justify-content: center; }

/* Link with arrow ---------------------------------------------------------- */

.bdc-arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: var(--fs-sm);
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--ink-900);
}

.bdc-arrow-link span {
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	border-radius: var(--radius-circle);
	background: var(--gray-100);
	font-size: 12px;
	transition: background .2s var(--ease-out), color .2s var(--ease-out);
}

.bdc-arrow-link:hover { color: var(--brand); }
.bdc-arrow-link:hover span { background: var(--brand); color: var(--white); }

/* Top bar ------------------------------------------------------------------ */

.bdc-topbar {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	font-size: 13px;
}

.bdc-topbar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	padding-top: 12px;
	padding-bottom: 12px;
}

.bdc-social { display: flex; gap: 10px; margin: 0; padding: 0; list-style: none; }
.bdc-social a {
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	border: 1px solid var(--border);
	color: var(--gray-600);
	transition: background .2s var(--ease-out), color .2s var(--ease-out), border-color .2s var(--ease-out);
}
.bdc-social a:hover { background: var(--brand); border-color: var(--brand); color: var(--white); }
.bdc-social svg { width: 15px; height: 15px; }

.bdc-topbar__meta {
	display: flex;
	gap: 28px;
	align-items: center;
	color: var(--gray-600);
	flex-wrap: wrap;
}

.bdc-topbar__meta span { display: inline-flex; gap: 8px; align-items: center; }
.bdc-topbar__meta svg { flex: none; }

.bdc-topbar__call { display: flex; gap: 12px; align-items: center; }
.bdc-topbar__call-icon {
	width: 46px;
	height: 46px;
	background: var(--brand);
	color: var(--white);
	display: grid;
	place-items: center;
	flex: none;
}
.bdc-topbar__call small { display: block; color: var(--gray-500); font-size: 12px; line-height: 1.3; }
.bdc-topbar__call a {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 20px;
	color: var(--ink-900);
	line-height: 1.2;
}
.bdc-topbar__call a:hover { color: var(--brand); }

/* Header ------------------------------------------------------------------- */

.bdc-header {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 90;
}

.bdc-header__inner {
	display: flex;
	align-items: center;
	gap: 32px;
	padding-top: 14px;
	padding-bottom: 14px;
}

.bdc-brand { display: flex; align-items: center; gap: 12px; flex: none; }
.bdc-brand img { height: 52px; width: auto; }
.bdc-brand__text {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: .5px;
	color: var(--ink-900);
	line-height: 1;
}
.bdc-brand__text small {
	display: block;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 3px;
	color: var(--gray-500);
	margin-top: 4px;
}
.bdc-brand:hover .bdc-brand__text { color: var(--ink-900); }

.bdc-nav { margin-left: auto; }
.bdc-nav__head,
.bdc-nav__foot { display: none; }
.bdc-nav-backdrop { display: none; }
.bdc-nav ul { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.bdc-nav li { position: relative; }
.bdc-nav ul a {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: var(--ink-900);
	padding: 8px 0;
	display: block;
}
.bdc-nav ul a:hover,
.bdc-nav .current-menu-item > a,
.bdc-nav .current_page_item > a,
.bdc-nav .current-menu-parent > a,
.bdc-nav .current-menu-ancestor > a { color: var(--brand); }

.bdc-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: var(--white);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
	display: block;
	flex-direction: column;
	gap: 0;
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .2s var(--ease-out), transform .2s var(--ease-out), visibility .2s;
	z-index: 20;
}
.bdc-nav li:hover > .sub-menu,
.bdc-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.bdc-nav .sub-menu a { padding: 10px 20px; font-size: 14px; text-transform: none; letter-spacing: 0; }
.bdc-nav .sub-menu a:hover { background: var(--brand-wash); }
.bdc-nav .sub-menu .sub-menu { top: 0; left: 100%; }

.bdc-header__actions { display: flex; gap: 10px; align-items: center; flex: none; }

.bdc-burger {
	display: none;
	width: 46px;
	height: 46px;
	border: 1px solid var(--border);
	background: var(--white);
	color: var(--ink-900);
	place-items: center;
	cursor: pointer;
}
.bdc-burger span {
	display: block;
	width: 20px;
	height: 2px;
	background: currentColor;
	position: relative;
	transition: background .2s var(--ease-out);
}
.bdc-burger span::before,
.bdc-burger span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 20px;
	height: 2px;
	background: currentColor;
	transition: transform .25s var(--ease-out);
}
.bdc-burger span::before { top: -6px; }
.bdc-burger span::after { top: 6px; }
.bdc-burger.is-open span { background: transparent; }
.bdc-burger.is-open span::before { transform: translateY(6px) rotate(45deg); }
.bdc-burger.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

/* Hero --------------------------------------------------------------------- */

.bdc-hero {
	position: relative;
	background: var(--ink-900);
	overflow: hidden;
}

.bdc-hero__grid-lines {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
	background-size: 52px 52px;
	pointer-events: none;
}

.bdc-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	align-items: center;
	gap: 48px;
	padding-top: 96px;
	padding-bottom: 96px;
	min-height: 620px;
}

.bdc-hero__title {
	font-size: var(--fs-display);
	font-weight: 700;
	color: var(--white);
	line-height: var(--lh-tight);
	letter-spacing: -.5px;
	margin: 0 0 24px;
	max-width: 14ch;
}

.bdc-hero__text {
	color: rgba(255, 255, 255, .78);
	font-size: var(--fs-lg);
	line-height: 1.75;
	max-width: 52ch;
	margin: 0 0 36px;
}

.bdc-hero__media { position: relative; }
.bdc-hero__media img,
.bdc-hero__placeholder {
	width: 100%;
	aspect-ratio: 4 / 3.4;
	object-fit: cover;
}

.bdc-hero__badge {
	position: absolute;
	left: -40px;
	bottom: -40px;
	background: var(--white);
	padding: 28px 30px;
	max-width: 260px;
	box-shadow: var(--shadow-lg);
	/* Must sit above the active slide, which is raised to z-index 2. */
	z-index: 6;
}
.bdc-hero__badge-num {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 56px;
	line-height: 1;
	color: var(--brand);
	margin: 0;
}
.bdc-hero__badge-label { margin: 8px 0 0; font-size: 14px; color: var(--gray-600); }

/* Stats -------------------------------------------------------------------- */

.bdc-stats { background: var(--brand); }
.bdc-stats__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	padding-top: 56px;
	padding-bottom: 56px;
	text-align: center;
}
.bdc-stat__num {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 52px;
	line-height: 1;
	color: var(--white);
	margin: 0;
}
.bdc-stat__label { margin: 8px 0 0; color: rgba(255, 255, 255, .78); font-size: 14px; }

/* Outlined counter row (as on the reference "4k+ / 15% / 3M" band) ---------- */

.bdc-counters { background: var(--white); }
.bdc-counters__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	padding: 64px 24px;
	text-align: center;
}
.bdc-counter__num {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: var(--fs-stat);
	line-height: 1;
	margin: 0;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--gray-300);
}
.bdc-counter__label { margin: 12px 0 0; font-size: 14px; color: var(--gray-600); }

/* Media panel (about / image + caption card) -------------------------------- */

.bdc-media { position: relative; }
.bdc-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.bdc-media__card {
	position: absolute;
	right: -18px;
	bottom: -18px;
	background: var(--ink-900);
	color: var(--white);
	padding: 22px 26px;
	max-width: 240px;
}
.bdc-media__card p:first-child {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 32px;
	margin: 0;
	line-height: 1;
	color: var(--white);
}
.bdc-media__card p:last-child { margin: 8px 0 0; font-size: 13px; color: var(--text-on-dark-muted); }

.bdc-placeholder {
	background: repeating-linear-gradient(135deg, #e6e6e6 0 16px, #f2f2f2 16px 32px);
	display: grid;
	place-items: center;
	color: var(--gray-400);
	font-family: var(--font-display);
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: 14px;
	aspect-ratio: 4 / 3;
}

.bdc-quote {
	margin: 28px 0;
	padding: 20px 24px;
	border-left: 3px solid var(--brand);
	background: var(--brand-wash);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 20px;
	color: var(--ink-900);
	line-height: 1.4;
}

/* Feature (why choose us) cards -------------------------------------------- */

.bdc-feature {
	background: var(--white);
	padding: 34px 28px;
	border-bottom: 2px solid transparent;
	transition: border-color .25s var(--ease-out), transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.bdc-feature:hover { border-bottom-color: var(--brand); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.bdc-feature__num {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 2px;
	color: var(--gray-300);
	margin: 0 0 18px;
}
.bdc-feature h3 { font-size: 21px; margin: 0 0 10px; }
.bdc-feature p { margin: 0; font-size: 14px; line-height: 1.7; }

/* Service cards ------------------------------------------------------------ */

.bdc-service-card {
	position: relative;
	background: var(--gray-050);
	padding: 34px 28px 28px;
	overflow: hidden;
	transition: background .25s var(--ease-out), box-shadow .25s var(--ease-out);
	display: flex;
	flex-direction: column;
	min-height: 100%;
}
.bdc-service-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid transparent;
	transition: border-color .25s var(--ease-out);
	pointer-events: none;
}
.bdc-service-card:hover { background: var(--white); box-shadow: var(--shadow-md); }
.bdc-service-card:hover::after { border-color: var(--brand); }

.bdc-service-card__index {
	position: absolute;
	left: -6px;
	top: 50%;
	transform: translateY(-50%) rotate(180deg);
	writing-mode: vertical-rl;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 26px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: rgba(20, 20, 20, .06);
	pointer-events: none;
}

.bdc-service-card__icon {
	width: 62px;
	height: 62px;
	border-radius: var(--radius-circle);
	background: var(--brand-wash);
	display: grid;
	place-items: center;
	color: var(--brand);
	margin-bottom: 20px;
}
.bdc-service-card__icon svg { width: 30px; height: 30px; }
.bdc-service-card__icon img { width: 32px; height: 32px; object-fit: contain; }

.bdc-service-card h3 { font-size: 22px; margin: 0 0 10px; }
.bdc-service-card h3 a { color: inherit; }
.bdc-service-card h3 a:hover { color: var(--brand); }
.bdc-service-card p { font-size: 14px; margin: 0 0 22px; }
.bdc-service-card .bdc-arrow-link { margin-top: auto; }

/* Project cards ------------------------------------------------------------ */

.bdc-project-card { background: var(--gray-050); position: relative; overflow: hidden; }
.bdc-project-card__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3.4; }
.bdc-project-card__media img,
.bdc-project-card__media .bdc-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: auto;
	transition: transform .6s var(--ease-out);
}
.bdc-project-card:hover .bdc-project-card__media img { transform: scale(1.06); }

.bdc-project-card__num {
	position: absolute;
	left: 0;
	top: 0;
	background: var(--ink-900);
	color: var(--white);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 14px;
	padding: 8px 14px;
	z-index: 2;
}

.bdc-project-card__tag {
	position: absolute;
	left: 0;
	bottom: 0;
	background: var(--brand);
	color: var(--white);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 7px 14px;
	z-index: 2;
}

.bdc-project-card__zoom {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%) scale(.6);
	width: 44px;
	height: 44px;
	background: var(--white);
	color: var(--brand);
	display: grid;
	place-items: center;
	opacity: 0;
	transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
	z-index: 2;
}
.bdc-project-card:hover .bdc-project-card__zoom { opacity: 1; transform: translateY(-50%) scale(1); }

.bdc-project-card__body { padding: 24px 24px 26px; border-bottom: 1px solid transparent; transition: border-color .25s var(--ease-out); }
.bdc-project-card:hover .bdc-project-card__body { border-bottom-color: var(--brand); }
.bdc-project-card__body h3 {
	font-size: 20px;
	text-transform: uppercase;
	margin: 0 0 6px;
	letter-spacing: .3px;
}
.bdc-project-card__body h3 a { color: inherit; }
.bdc-project-card:hover .bdc-project-card__body h3 a { color: var(--brand); }
.bdc-project-card__meta { font-size: 14px; color: var(--gray-500); margin: 0 0 18px; }

/* Team cards --------------------------------------------------------------- */

.bdc-team-card {
	position: relative;
	background: var(--gray-050);
	overflow: hidden;
	padding-top: 26px;
}
.bdc-team-card__head { padding: 0 26px 14px; }
.bdc-team-card__head h3 { font-size: 24px; margin: 0 0 2px; }
.bdc-team-card__head h3 a { color: inherit; }
.bdc-team-card__head h3 a:hover { color: var(--brand); }
.bdc-team-card__role { font-size: 14px; color: var(--gray-500); margin: 0 0 12px; }

.bdc-team-card__social { display: flex; gap: 8px; }
.bdc-team-card__social a {
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	background: var(--white);
	border: 1px solid var(--border);
	color: var(--gray-600);
}
.bdc-team-card__social a:hover { background: var(--brand); border-color: var(--brand); color: var(--white); }
.bdc-team-card__social svg { width: 14px; height: 14px; }

.bdc-team-card__media { position: relative; aspect-ratio: 1 / 1.05; }
.bdc-team-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.bdc-team-card__media .bdc-placeholder { width: 100%; height: 100%; aspect-ratio: auto; }

.bdc-team-card__call {
	position: absolute;
	left: 22px;
	bottom: 22px;
	width: 44px;
	height: 44px;
	border-radius: var(--radius-circle);
	background: var(--brand);
	color: var(--white);
	display: grid;
	place-items: center;
	z-index: 2;
}
.bdc-team-card__call:hover { background: var(--ink-900); color: var(--white); }

/* Page banner -------------------------------------------------------------- */

.bdc-banner {
	position: relative;
	background: var(--ink-700);
	background-size: cover;
	background-position: center;
	color: var(--white);
	overflow: hidden;
}
.bdc-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 10, 10, .72), rgba(10, 10, 10, .82));
}
.bdc-banner__inner {
	position: relative;
	padding-top: 110px;
	padding-bottom: 110px;
	text-align: center;
}
.bdc-banner__title {
	font-size: 52px;
	font-weight: 700;
	color: var(--white);
	margin: 0;
}
.bdc-breadcrumbs {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--brand);
	color: var(--white);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	padding: 12px 30px 12px 24px;
	margin-top: 30px;
	clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 100%, 0 100%);
}
.bdc-breadcrumbs a { color: var(--white); }
.bdc-breadcrumbs a:hover { color: rgba(255, 255, 255, .75); }
.bdc-breadcrumbs .sep { opacity: .6; }
.bdc-breadcrumbs .current { text-decoration: underline; }

/* Contact / office cards --------------------------------------------------- */

.bdc-office {
	background: var(--gray-050);
	padding: 34px 30px;
	height: 100%;
}
.bdc-office h3 { font-size: 24px; margin: 0 0 18px; }
.bdc-office ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.bdc-office li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.bdc-office li svg { flex: none; margin-top: 4px; color: var(--brand); }
.bdc-office a { color: var(--text-body); }
.bdc-office a:hover { color: var(--brand); }

/* Forms -------------------------------------------------------------------- */

.bdc-form { display: grid; gap: 16px; }
.bdc-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.bdc-form input[type="text"],
.bdc-form input[type="email"],
.bdc-form input[type="tel"],
.bdc-form input[type="url"],
.bdc-form select,
.bdc-form textarea,
.bdc-input {
	width: 100%;
	background: var(--gray-100);
	border: 1px solid transparent;
	padding: 16px 18px;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--ink-900);
	transition: border-color .2s var(--ease-out), background .2s var(--ease-out);
}
.bdc-form textarea { min-height: 150px; resize: vertical; }
.bdc-form input:focus,
.bdc-form select:focus,
.bdc-form textarea:focus { outline: none; border-color: var(--brand); background: var(--white); }
.bdc-form ::placeholder { color: var(--gray-500); }

.bdc-form__hp { position: absolute !important; left: -9999px; }

.bdc-notice { padding: 16px 20px; font-size: 15px; margin-bottom: 20px; }
.bdc-notice--ok { background: var(--brand-wash); border-left: 3px solid var(--brand); color: var(--ink-900); }
.bdc-notice--err { background: #fff4f4; border-left: 3px solid #c41c17; color: #7a0908; }

.bdc-quote-panel { background: var(--white); box-shadow: var(--shadow-md); }
.bdc-quote-panel__inner { display: grid; grid-template-columns: .8fr 1.2fr; align-items: stretch; }
.bdc-quote-panel__media img { width: 100%; height: 100%; object-fit: cover; }
.bdc-quote-panel__media .bdc-placeholder { height: 100%; aspect-ratio: auto; }
.bdc-quote-panel__body { padding: 56px 48px; }

/* CTA band ----------------------------------------------------------------- */

.bdc-cta { background: var(--brand); color: var(--white); }
.bdc-cta__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
	padding-top: 64px;
	padding-bottom: 64px;
	flex-wrap: wrap;
}
.bdc-cta h2 { color: var(--white); margin: 0 0 8px; font-size: 40px; }
.bdc-cta p { margin: 0; color: rgba(255, 255, 255, .82); font-size: var(--fs-lg); }
.bdc-cta .bdc-btn { background: var(--white); color: var(--brand); }
.bdc-cta .bdc-btn:hover { background: var(--ink-900); color: var(--white); }
.bdc-cta .bdc-btn__icon { background: rgba(148, 10, 9, .12); }

/* Accordion (FAQ) ---------------------------------------------------------- */

.bdc-accordion { display: grid; gap: 14px; }
.bdc-accordion__item { background: var(--gray-050); border: 1px solid var(--border); }
.bdc-accordion__btn {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	background: none;
	border: 0;
	padding: 22px 26px;
	text-align: left;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 17px;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: var(--ink-900);
	cursor: pointer;
}
.bdc-accordion__btn::after { content: "+"; font-size: 24px; color: var(--brand); line-height: 1; }
.bdc-accordion__item.is-open .bdc-accordion__btn::after { content: "\2013"; }
.bdc-accordion__item.is-open { background: var(--white); box-shadow: var(--shadow-sm); }
.bdc-accordion__panel { display: none; padding: 0 26px 24px; font-size: 15px; }
.bdc-accordion__item.is-open .bdc-accordion__panel { display: block; }

/* Numbered benefits list --------------------------------------------------- */

.bdc-benefits { display: grid; gap: 26px; }
.bdc-benefit { display: grid; grid-template-columns: 76px 1fr; gap: 18px; align-items: start; }
.bdc-benefit__num {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 42px;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--gray-300);
}
.bdc-benefit h3 {
	font-size: 17px;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 0 0 6px;
}
.bdc-benefit p { margin: 0; font-size: 14px; }

/* Info table (project meta) ------------------------------------------------ */

.bdc-info-card { background: var(--gray-050); padding: 30px 28px; }
.bdc-info-card h3 { font-size: 22px; margin: 0 0 18px; }
.bdc-info-card dl { margin: 0; display: grid; gap: 0; }
.bdc-info-card .row {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
	font-size: 15px;
}
.bdc-info-card .row:last-child { border-bottom: 0; }
.bdc-info-card dt { color: var(--ink-900); font-weight: 500; margin: 0; }
.bdc-info-card dd { margin: 0; color: var(--gray-600); text-align: right; }

/* Project details head — cover image beside the info card ------------------ */

.bdc-project-head {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
	gap: 40px;
	align-items: start;
}

.bdc-project-head > * { min-width: 0; }
.bdc-project-head img { width: 100%; height: auto; }

/* Long button labels must wrap inside the card rather than spill out. */
.bdc-btn { line-height: 1.3; text-align: center; }
.bdc-btn--block { flex-wrap: wrap; }

/* Gallery ------------------------------------------------------------------ */

.bdc-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.bdc-gallery a { display: block; overflow: hidden; position: relative; }
.bdc-gallery img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform .5s var(--ease-out);
}
.bdc-gallery a:hover img { transform: scale(1.05); }

/* Lightbox ----------------------------------------------------------------- */

.bdc-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(10, 10, 10, .92);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 40px 24px;
}
.bdc-lightbox.is-open { display: flex; }
.bdc-lightbox img { max-width: min(1100px, 92vw); max-height: 84vh; object-fit: contain; }
.bdc-lightbox__close,
.bdc-lightbox__prev,
.bdc-lightbox__next {
	position: absolute;
	background: rgba(255, 255, 255, .12);
	color: var(--white);
	border: 0;
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
	transition: background .2s var(--ease-out);
}
.bdc-lightbox__close:hover,
.bdc-lightbox__prev:hover,
.bdc-lightbox__next:hover { background: var(--brand); }
.bdc-lightbox__close { top: 24px; right: 24px; }
.bdc-lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.bdc-lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }
.bdc-lightbox__caption {
	position: absolute;
	bottom: 24px;
	left: 0;
	right: 0;
	text-align: center;
	color: rgba(255, 255, 255, .8);
	font-size: 14px;
}

/* Progress bars ------------------------------------------------------------ */

.bdc-progress { margin-bottom: 22px; }
.bdc-progress__head {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	font-weight: 500;
	color: var(--ink-900);
	margin-bottom: 8px;
}
.bdc-progress__track { height: 6px; background: var(--gray-200); }
.bdc-progress__bar { height: 100%; background: var(--brand); width: 0; transition: width 1.2s var(--ease-out); }

/* Filters ------------------------------------------------------------------ */

.bdc-filters {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 48px;
}
.bdc-filters a {
	padding: 11px 22px;
	border: 1px solid var(--border);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--ink-900);
}
.bdc-filters a:hover,
.bdc-filters a.is-active { background: var(--brand); border-color: var(--brand); color: var(--white); }

/* Pagination --------------------------------------------------------------- */

.bdc-pagination { margin-top: 56px; display: flex; justify-content: center; }

/* paginate_links( type => list ) wraps the links in <ul class="page-numbers">,
   so the button styling has to target the links themselves, not the list. */
.bdc-pagination ul.page-numbers,
.bdc-pagination .page-numbers:where(ul) {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
	background: none;
	min-width: 0;
	height: auto;
}
.bdc-pagination li { list-style: none; margin: 0; padding: 0; }
.bdc-pagination li::marker { content: none; }

.bdc-pagination a.page-numbers,
.bdc-pagination span.page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	background: var(--gray-050);
	color: var(--ink-900);
	font-weight: 600;
	font-size: 14px;
	transition: background .2s var(--ease-out), color .2s var(--ease-out);
}
.bdc-pagination a.page-numbers:hover,
.bdc-pagination span.page-numbers.current { background: var(--brand); color: var(--white); }
.bdc-pagination .page-numbers.dots { background: none; }

/* Entry / single content --------------------------------------------------- */

.bdc-entry { font-size: var(--fs-body); }
.bdc-entry > * { margin-bottom: 1.2em; }
.bdc-entry h2 { font-size: 32px; margin-top: 1.6em; }
.bdc-entry h3 { font-size: 24px; margin-top: 1.4em; }
.bdc-entry ul,
.bdc-entry ol { padding-left: 22px; }
.bdc-entry li { margin-bottom: .5em; }
.bdc-entry blockquote {
	margin: 1.6em 0;
	padding: 22px 26px;
	background: var(--brand-wash);
	border-left: 3px solid var(--brand);
	font-family: var(--font-display);
	font-size: 20px;
	color: var(--ink-900);
}
.bdc-entry img { margin: 1em 0; }
.bdc-entry table { width: 100%; border-collapse: collapse; }
.bdc-entry th,
.bdc-entry td { border: 1px solid var(--border); padding: 12px 14px; text-align: left; }
.bdc-entry th { background: var(--gray-050); color: var(--ink-900); }

.bdc-checklist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.bdc-checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.bdc-checklist li::before {
	content: "";
	width: 8px;
	height: 8px;
	background: var(--brand);
	margin-top: 9px;
	flex: none;
}

/* Layout with sidebar ------------------------------------------------------ */

.bdc-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 48px; align-items: start; }
.bdc-sidebar .widget { background: var(--gray-050); padding: 28px 26px; margin-bottom: 28px; }
.bdc-sidebar .widget-title { font-size: 20px; margin: 0 0 16px; }
.bdc-sidebar ul { list-style: none; margin: 0; padding: 0; }
.bdc-sidebar li { padding: 9px 0; border-bottom: 1px solid var(--border); }
.bdc-sidebar li:last-child { border-bottom: 0; }
.bdc-sidebar a { color: var(--text-body); }
.bdc-sidebar a:hover { color: var(--brand); }

/* Post cards --------------------------------------------------------------- */

.bdc-post-card { background: var(--gray-050); }
.bdc-post-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.bdc-post-card__body { padding: 26px 24px 28px; }
.bdc-post-card__meta {
	font-size: 12px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--brand);
	margin: 0 0 10px;
}
.bdc-post-card h3 { font-size: 21px; margin: 0 0 10px; }
.bdc-post-card h3 a { color: inherit; }
.bdc-post-card h3 a:hover { color: var(--brand); }
.bdc-post-card p { font-size: 14px; margin: 0 0 18px; }

/* Footer ------------------------------------------------------------------- */

.bdc-footer { background: var(--surface-darker); color: var(--text-on-dark-muted); }

.bdc-footer__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
	padding-top: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--border-on-dark);
	flex-wrap: wrap;
}
.bdc-footer__brand { display: flex; align-items: center; gap: 14px; }
.bdc-footer__brand img { height: 48px; width: auto; }
.bdc-footer__brand span {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 1px;
	color: var(--white);
}

.bdc-footer__cols {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 40px;
	padding-top: 64px;
	padding-bottom: 56px;
}
.bdc-footer h4 {
	color: var(--white);
	font-size: 19px;
	margin: 0 0 22px;
	letter-spacing: .5px;
}
.bdc-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.bdc-footer a { color: var(--text-on-dark-muted); }
.bdc-footer a:hover { color: var(--white); }
.bdc-footer p { font-size: 14px; line-height: 1.8; }
.bdc-footer__since {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 26px;
	color: var(--brand-bright);
	margin: 20px 0 6px;
}
.bdc-footer__hours { font-size: 13px; margin: 0; }
.bdc-footer__hours strong { color: var(--brand-bright); font-weight: 600; }

.bdc-footer__contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; }
.bdc-footer__contact svg { flex: none; margin-top: 4px; color: var(--brand-bright); }

.bdc-footer__bottom {
	border-top: 1px solid var(--border-on-dark);
	padding-top: 24px;
	padding-bottom: 24px;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	font-size: 13px;
	flex-wrap: wrap;
}
.bdc-footer__bottom ul { display: flex; gap: 24px; }

.bdc-to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 46px;
	height: 46px;
	border-radius: var(--radius-circle);
	background: var(--brand);
	color: var(--white);
	border: 0;
	display: grid;
	place-items: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), visibility .3s, background .2s;
	z-index: 80;
}
.bdc-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.bdc-to-top:hover { background: var(--ink-900); }

/* Reveal animation --------------------------------------------------------- */

.bdc-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.bdc-reveal.is-in { opacity: 1; transform: none; }

/* Responsive --------------------------------------------------------------- */

@media (max-width: 1100px) {
	:root { --fs-display: 52px; --fs-h2: 34px; --section-y: 76px; }
	.bdc-footer__cols { grid-template-columns: 1fr 1fr; }
	.bdc-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
	.bdc-header__inner { gap: 16px; padding-top: 10px; padding-bottom: 10px; }
	.bdc-brand img { height: 42px; }
	.bdc-brand__text { font-size: 17px; }
	.bdc-brand__text small { font-size: 10px; letter-spacing: 2px; }
	.bdc-burger { display: grid; }
	.bdc-header__actions { margin-left: auto; }
	.bdc-header__actions .bdc-btn { display: none; }

	/* Off-canvas panel ---------------------------------------------------- */
	.bdc-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: auto;
		width: min(330px, 86vw);
		max-width: 100%;
		background: var(--white);
		box-shadow: var(--shadow-lg);
		padding: 24px 24px 40px;
		margin: 0;
		transform: translateX(100%);
		transition: transform .3s var(--ease-out);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		z-index: 1000;
		display: flex;
		flex-direction: column;
	}
	.bdc-nav.is-open { transform: translateX(0); }

	.bdc-nav__head {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 12px;
		padding-bottom: 16px;
		margin-bottom: 8px;
		border-bottom: 1px solid var(--border);
	}
	.bdc-nav__title {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: 15px;
		letter-spacing: 2px;
		text-transform: uppercase;
		color: var(--gray-500);
		margin: 0;
	}
	.bdc-nav__close {
		width: 40px;
		height: 40px;
		border: 1px solid var(--border);
		background: var(--white);
		color: var(--ink-900);
		font-size: 22px;
		line-height: 1;
		display: grid;
		place-items: center;
		cursor: pointer;
		flex: none;
	}
	.bdc-nav__close:hover { background: var(--brand); border-color: var(--brand); color: var(--white); }

	.bdc-nav ul { flex-direction: column; gap: 0; width: 100%; }
	.bdc-nav li { border-bottom: 1px solid var(--border); width: 100%; }
	.bdc-nav > ul > li:last-child { border-bottom: 0; }
	.bdc-nav ul a { padding: 15px 2px; font-size: 17px; }

	.bdc-nav .sub-menu {
		position: static;
		width: auto;
		min-width: 0;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		padding: 0 0 8px 16px;
		background: transparent;
	}
	.bdc-nav .sub-menu a { font-size: 15px; padding: 11px 2px; }

	.bdc-nav__foot {
		display: grid;
		gap: 16px;
		margin-top: auto;
		padding-top: 26px;
		border-top: 1px solid var(--border);
	}

	.bdc-nav__foot .bdc-btn {
		display: flex;
		width: 100%;
		justify-content: center;
		align-items: center;
		gap: 10px;
		padding: 15px 20px;
		font-family: var(--font-body);
		font-size: 13px;
		font-weight: 600;
		letter-spacing: 1.5px;
		text-transform: uppercase;
		color: var(--white);
		background: var(--brand);
	}
	.bdc-nav__foot .bdc-btn:hover { background: var(--brand-strong); color: var(--white); }
	.bdc-nav__foot .bdc-btn__icon {
		width: 22px;
		height: 22px;
		font-size: 12px;
		background: rgba(255, 255, 255, .2);
	}

	a.bdc-nav__phone {
		display: flex;
		gap: 10px;
		align-items: center;
		padding: 0;
		font-family: var(--font-display);
		font-weight: 700;
		font-size: 19px;
		letter-spacing: 0;
		text-transform: none;
		color: var(--ink-900);
	}
	a.bdc-nav__phone:hover { color: var(--brand); }
	a.bdc-nav__phone svg { color: var(--brand); flex: none; }

	.bdc-nav__foot .bdc-social { justify-content: center; }
	.bdc-nav__foot .bdc-social a { width: 38px; height: 38px; }

	/* The top bar duplicates what the panel already shows, so it is hidden
	   on small screens. */
	.bdc-topbar { display: none; }

	.bdc-nav-backdrop {
		position: fixed;
		inset: 0;
		background: rgba(10, 10, 10, .55);
		opacity: 0;
		visibility: hidden;
		transition: opacity .3s var(--ease-out), visibility .3s;
		z-index: 999;
	}
	.bdc-nav-backdrop.is-open { opacity: 1; visibility: visible; }
	.bdc-hero__inner { grid-template-columns: 1fr; gap: 64px; min-height: 0; }
	.bdc-hero__badge { left: auto; right: 16px; bottom: -30px; }
	.bdc-grid--3 { grid-template-columns: repeat(2, 1fr); }
	.bdc-layout { grid-template-columns: 1fr; }
	.bdc-quote-panel__inner { grid-template-columns: 1fr; }
	.bdc-quote-panel__media { max-height: 300px; overflow: hidden; }
	.bdc-project-head { grid-template-columns: 1fr; gap: 28px; }
	.bdc-gallery { grid-template-columns: repeat(2, 1fr); }
}

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

@media (max-width: 720px) {
	:root { --fs-display: 40px; --fs-h1: 34px; --fs-h2: 28px; --fs-h3: 22px; --section-y: 60px; --fs-stat: 52px; }
	.bdc-grid--2,
	.bdc-grid--3,
	.bdc-grid--4 { grid-template-columns: 1fr; }
	.bdc-stats__inner,
	.bdc-counters__inner { grid-template-columns: repeat(2, 1fr); }
	.bdc-form__row { grid-template-columns: 1fr; }
	.bdc-checklist { grid-template-columns: 1fr; }
	.bdc-banner__title { font-size: 34px; }
	.bdc-banner__inner { padding-top: 70px; padding-bottom: 70px; }
	.bdc-footer__cols { grid-template-columns: 1fr; gap: 36px; }
	.bdc-footer__top { justify-content: center; text-align: center; }
	.bdc-cta__inner { flex-direction: column; align-items: flex-start; }
	.bdc-topbar__inner { justify-content: center; }
	.bdc-media__card { position: static; margin-top: -1px; max-width: none; }
	.bdc-hero__badge { position: static; margin-top: 20px; max-width: none; }
	.bdc-quote-panel__body { padding: 36px 24px; }
	.bdc-gallery { grid-template-columns: 1fr; }
	.bdc-benefit { grid-template-columns: 56px 1fr; }
	.bdc-project-head { gap: 22px; }
	.bdc-info-card { padding: 24px 20px; }
	.bdc-info-card .row { flex-wrap: wrap; gap: 4px 16px; }
	.bdc-info-card dd { text-align: left; }
	.bdc-info-card .bdc-btn { font-size: 12px; letter-spacing: 1px; padding: 14px 16px; }
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
	.bdc-reveal { opacity: 1; transform: none; }
}

/* Print -------------------------------------------------------------------- */

@media print {
	.bdc-topbar, .bdc-header, .bdc-footer, .bdc-to-top, .bdc-cta { display: none !important; }
	body { color: #000; }
}

/* ==========================================================================
   About page components
   ========================================================================== */

/* Split intro: copy left, framed image right ------------------------------- */

.bdc-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.bdc-split__title {
	font-size: 40px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.15;
	margin: 0 0 18px;
	max-width: 16ch;
}

/* Arrow bullet list */
.bdc-arrow-list { list-style: none; margin: 24px 0; padding: 0; display: grid; gap: 12px; }
.bdc-arrow-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink-900); }
.bdc-arrow-list li::before {
	content: "";
	flex: none;
	margin-top: 7px;
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 8px solid var(--brand);
}

/* Mission / vision pair */
.bdc-pillars { display: grid; gap: 20px; margin: 28px 0 32px; }
.bdc-pillar { display: grid; grid-template-columns: 62px 1fr; gap: 18px; align-items: start; }
.bdc-pillar__icon {
	width: 62px;
	height: 62px;
	display: grid;
	place-items: center;
	background: var(--brand-wash);
	color: var(--brand);
}
.bdc-pillar h3 { font-size: 19px; margin: 0 0 6px; }
.bdc-pillar p { margin: 0; font-size: 14px; line-height: 1.7; }

/* Framed image with maroon rule and experience badge */
.bdc-frame { position: relative; padding-left: 34px; }
.bdc-frame::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8%;
	width: 10px;
	height: 46%;
	background: var(--brand);
}
.bdc-frame img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; }
.bdc-frame .bdc-placeholder { aspect-ratio: 4 / 4.4; }

.bdc-badge {
	position: absolute;
	left: -26px;
	bottom: 46px;
	background: var(--brand);
	color: var(--white);
	padding: 26px 30px 30px;
	min-width: 230px;
	overflow: hidden;
	z-index: 2;
}
.bdc-badge__icon { color: rgba(255, 255, 255, .9); margin-bottom: 10px; display: block; }
.bdc-badge__num {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 54px;
	line-height: 1;
	margin: 0;
	color: var(--white);
	position: relative;
	z-index: 2;
}
.bdc-badge__label {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 22px;
	line-height: 1.2;
	margin: 6px 0 0;
	color: rgba(255, 255, 255, .34);
	text-transform: capitalize;
}

/* Why choose us — two feature columns flanking a portrait ------------------- */

.bdc-watermark { position: relative; text-align: center; margin-bottom: 40px; }
.bdc-watermark__ghost {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(56px, 9vw, 118px);
	line-height: 1;
	color: var(--gray-100);
	white-space: nowrap;
	user-select: none;
	pointer-events: none;
	margin: 0;
}
.bdc-watermark__inner { position: absolute; inset: 0; display: grid; place-content: center; gap: 8px; }
.bdc-watermark__inner .bdc-eyebrow { justify-self: center; margin-bottom: 4px; }
.bdc-watermark__inner h2 { font-size: var(--fs-h2); margin: 0; }

.bdc-why { display: grid; grid-template-columns: 1fr 1.05fr 1fr; gap: 40px; align-items: center; }

.bdc-why__col { display: grid; gap: 34px; }

.bdc-why__item { display: grid; grid-template-columns: 1fr 58px; gap: 16px; align-items: start; text-align: right; }
.bdc-why__col--right .bdc-why__item { grid-template-columns: 58px 1fr; text-align: left; }
.bdc-why__col--right .bdc-why__item .bdc-why__icon { order: -1; }

.bdc-why__icon {
	width: 58px;
	height: 58px;
	display: grid;
	place-items: center;
	background: var(--brand-wash);
	color: var(--brand);
	transition: background .25s var(--ease-out), color .25s var(--ease-out);
}
.bdc-why__item:hover .bdc-why__icon { background: var(--brand); color: var(--white); }
.bdc-why__item h3 { font-size: 18px; margin: 0 0 6px; }
.bdc-why__item p { margin: 0; font-size: 13.5px; line-height: 1.65; }

.bdc-why__portrait img { width: 100%; aspect-ratio: 3 / 3.6; object-fit: cover; object-position: top center; }
.bdc-why__portrait .bdc-placeholder { aspect-ratio: 3 / 3.6; }

/* Work process — dark band with step cards --------------------------------- */

.bdc-process { position: relative; background: var(--ink-800); background-size: cover; background-position: center; overflow: hidden; }
.bdc-process::before { content: ""; position: absolute; inset: 0; background: rgba(10, 10, 10, .84); }
.bdc-process::after {
	content: "";
	position: absolute;
	top: 0;
	left: 26%;
	width: 40%;
	height: 74px;
	background: var(--brand);
	clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
}
.bdc-process__inner { position: relative; padding-top: 96px; padding-bottom: 96px; }

.bdc-process__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.bdc-process__head h2 { color: var(--white); font-size: var(--fs-h2); margin: 0; max-width: 16ch; }

.bdc-process__play { display: inline-flex; align-items: center; gap: 14px; color: var(--white); font-weight: 600; font-size: 14px; }
.bdc-process__play span {
	width: 52px;
	height: 52px;
	border-radius: var(--radius-circle);
	background: var(--brand);
	display: grid;
	place-items: center;
	flex: none;
	transition: transform .25s var(--ease-out);
}
.bdc-process__play:hover { color: var(--white); }
.bdc-process__play:hover span { transform: scale(1.08); }

.bdc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.bdc-step {
	position: relative;
	background: var(--white);
	padding: 26px 24px 28px;
	border-bottom: 3px solid transparent;
	transition: border-color .25s var(--ease-out), transform .25s var(--ease-out);
}
.bdc-step:hover { border-bottom-color: var(--brand); transform: translateY(-5px); }
.bdc-step__top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.bdc-step__num {
	width: 40px;
	height: 40px;
	background: var(--ink-900);
	color: var(--white);
	display: grid;
	place-items: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 16px;
	flex: none;
}
.bdc-step__word {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gray-200);
}
.bdc-step h3 { font-size: 19px; margin: 0 0 10px; }
.bdc-step p { margin: 0; font-size: 14px; line-height: 1.7; }

/* Testimonials ------------------------------------------------------------- */

.bdc-testimonials {
	position: relative;
	background: var(--gray-050);
	background-image:
		linear-gradient(rgba(148, 10, 9, .05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(148, 10, 9, .05) 1px, transparent 1px);
	background-size: 64px 64px;
}
.bdc-testimonials__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }

.bdc-ask { background: var(--brand); color: var(--white); padding: 40px 36px 44px; position: relative; overflow: hidden; }
.bdc-ask h3 { color: var(--white); font-size: 30px; margin: 0 0 12px; }
.bdc-ask p { color: rgba(255, 255, 255, .82); font-size: 15px; margin: 0 0 26px; }
.bdc-ask .bdc-btn { background: var(--white); color: var(--brand); }
.bdc-ask .bdc-btn:hover { background: var(--ink-900); color: var(--white); }
.bdc-ask .bdc-btn__icon { background: rgba(148, 10, 9, .12); }
.bdc-ask__mark { position: absolute; right: -14px; bottom: -14px; color: rgba(255, 255, 255, .14); }

.bdc-testimonial { background: transparent; }
.bdc-testimonial__quote { font-size: 17px; line-height: 1.8; margin: 0 0 22px; }
.bdc-testimonial__who { display: flex; gap: 14px; align-items: center; }
.bdc-testimonial__who img { width: 54px; height: 54px; border-radius: var(--radius-circle); object-fit: cover; }
.bdc-testimonial__avatar {
	width: 54px;
	height: 54px;
	border-radius: var(--radius-circle);
	background: var(--brand-wash);
	color: var(--brand);
	display: grid;
	place-items: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 20px;
	flex: none;
}
.bdc-testimonial__name { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink-900); margin: 0; }
.bdc-testimonial__role { font-size: 13px; color: var(--gray-500); margin: 2px 0 0; }
.bdc-testimonial__stars { color: var(--brand); letter-spacing: 3px; margin: 0 0 14px; font-size: 15px; }

.bdc-slider__nav { display: flex; gap: 10px; margin-top: 26px; }
.bdc-slider__nav button {
	width: 42px;
	height: 42px;
	border: 1px solid var(--border-strong);
	background: var(--white);
	color: var(--ink-900);
	cursor: pointer;
	display: grid;
	place-items: center;
	font-size: 18px;
	transition: background .2s var(--ease-out), color .2s var(--ease-out), border-color .2s;
}
.bdc-slider__nav button:hover { background: var(--brand); border-color: var(--brand); color: var(--white); }

.bdc-slide { display: none; }
.bdc-slide.is-active { display: block; }

/* Partners ----------------------------------------------------------------- */

.bdc-partners { position: relative; background: var(--ink-900); background-size: cover; background-position: center; }
.bdc-partners::before { content: ""; position: absolute; inset: 0; background: rgba(10, 10, 10, .8); }
.bdc-partners__inner { position: relative; padding-top: 72px; padding-bottom: 72px; }
.bdc-partners__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
	align-items: center;
	margin-top: 40px;
}
.bdc-partner {
	display: grid;
	place-items: center;
	padding: 18px;
	color: rgba(255, 255, 255, .55);
	transition: color .25s var(--ease-out), opacity .25s var(--ease-out);
	text-align: center;
}
.bdc-partner img { max-height: 62px; width: auto; filter: grayscale(1) brightness(2.4); opacity: .55; transition: opacity .25s var(--ease-out), filter .25s var(--ease-out); }
.bdc-partner:hover img { opacity: 1; filter: none; }
.bdc-partner:hover { color: var(--white); }
.bdc-partner__name {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin: 10px 0 0;
}

/* News cards --------------------------------------------------------------- */

.bdc-news-card { background: var(--gray-050); position: relative; overflow: hidden; }
.bdc-news-card__media { position: relative; overflow: hidden; aspect-ratio: 16 / 11; }
.bdc-news-card__media img,
.bdc-news-card__media .bdc-placeholder { width: 100%; height: 100%; object-fit: cover; aspect-ratio: auto; transition: transform .6s var(--ease-out); }
.bdc-news-card:hover .bdc-news-card__media img { transform: scale(1.06); }
.bdc-news-card__date {
	position: absolute;
	left: 16px;
	top: 0;
	background: var(--brand);
	color: var(--white);
	text-align: center;
	padding: 10px 12px 8px;
	z-index: 2;
	line-height: 1.1;
}
.bdc-news-card__date strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.bdc-news-card__date span { display: block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.bdc-news-card__body { padding: 22px 22px 26px; }
.bdc-news-card__meta { font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gray-500); margin: 0 0 10px; }
.bdc-news-card__meta strong { color: var(--brand); font-weight: 600; }
.bdc-news-card h3 { font-size: 19px; margin: 0 0 10px; }
.bdc-news-card h3 a { color: inherit; }
.bdc-news-card h3 a:hover { color: var(--brand); }
.bdc-news-card p { font-size: 14px; margin: 0 0 18px; }

/* Contact page — office cards ---------------------------------------------- */

.bdc-office-card { background: var(--gray-050); display: flex; flex-direction: column; height: 100%; }
.bdc-office-card__body { padding: 34px 30px 26px; }
.bdc-office-card h3 { font-size: 26px; margin: 0 0 20px; }
.bdc-office-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.bdc-office-card li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.bdc-office-card li svg { flex: none; margin-top: 4px; color: var(--brand); }
.bdc-office-card a { color: var(--text-body); }
.bdc-office-card a:hover { color: var(--brand); }
.bdc-office-card__art { margin-top: auto; }
.bdc-office-card__art img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.bdc-office-card__art .bdc-placeholder { aspect-ratio: 16 / 10; }

/* Ruler tick strip used above the quote panel ------------------------------ */

.bdc-ruler {
	height: 26px;
	background-image: repeating-linear-gradient(90deg, var(--gray-300) 0 1px, transparent 1px 14px);
	background-position: bottom;
	background-repeat: repeat-x;
	background-size: 14px 12px;
	opacity: .9;
}

.bdc-quote-panel--ruled { position: relative; background: var(--white); }
.bdc-quote-panel--ruled::after {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(115deg, transparent 0 60px, rgba(148, 10, 9, .035) 60px 96px);
	pointer-events: none;
}
.bdc-quote-panel--ruled .bdc-quote-panel__inner { position: relative; z-index: 2; }

.bdc-map iframe { display: block; width: 100%; border: 0; }

/* Responsive --------------------------------------------------------------- */

@media (max-width: 1100px) {
	.bdc-steps { grid-template-columns: repeat(2, 1fr); }
	.bdc-partners__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
	.bdc-split { grid-template-columns: 1fr; gap: 48px; }
	.bdc-why { grid-template-columns: 1fr 1fr; }
	.bdc-why__portrait { display: none; }
	.bdc-why__item,
	.bdc-why__col--right .bdc-why__item { grid-template-columns: 58px 1fr; text-align: left; }
	.bdc-why__item .bdc-why__icon { order: -1; }
	.bdc-testimonials__inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 720px) {
	.bdc-split__title { font-size: 30px; }
	.bdc-why { grid-template-columns: 1fr; }
	.bdc-steps { grid-template-columns: 1fr; }
	.bdc-partners__grid { grid-template-columns: repeat(2, 1fr); }
	.bdc-frame { padding-left: 18px; }
	.bdc-frame::before { width: 6px; }
	.bdc-badge { position: static; margin-top: 18px; min-width: 0; }
	.bdc-process::after { display: none; }
	.bdc-watermark__ghost { font-size: 46px; }
	.bdc-watermark__inner { position: static; margin-top: -18px; }
}

/* ==========================================================================
   Hero slider + motion effects (reference-style)
   ========================================================================== */

/* Animated ruler tick strip ------------------------------------------------ */

.bdc-ruler {
	height: 26px;
	background-image: repeating-linear-gradient(90deg, var(--gray-300) 0 1px, transparent 1px 14px);
	background-position: bottom left;
	background-repeat: repeat-x;
	background-size: 14px 12px;
	opacity: .9;
}

.bdc-ruler--animated { animation: bdc-ruler-run 12s linear infinite; }

.bdc-ruler--dark {
	background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, .35) 0 1px, transparent 1px 14px);
}

.bdc-ruler--tall { height: 34px; background-size: 14px 18px; }

@keyframes bdc-ruler-run {
	from { background-position-x: 0; }
	to { background-position-x: -280px; }
}

/* Hero --------------------------------------------------------------------- */

.bdc-hero__inner { position: relative; z-index: 2; }

.bdc-hero__stage { position: relative; z-index: 3; }
.bdc-hero__slides { z-index: 1; }

.bdc-hero__slides { position: relative; }
.bdc-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
	transform: scale(1.04);
}
.bdc-hero__slide:first-child { position: relative; }
.bdc-hero__slide.is-active { opacity: 1; visibility: visible; transform: scale(1); z-index: 2; }
.bdc-hero__slide img,
.bdc-hero__slide .bdc-placeholder {
	width: 100%;
	aspect-ratio: 4 / 3.4;
	object-fit: cover;
}

/* Text column: one block per slide, cross-faded in place */
.bdc-hero__copy { position: relative; min-height: 340px; }
.bdc-hero__text-slide {
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transform: translateY(18px);
	transition: opacity .7s var(--ease-out), transform .7s var(--ease-out), visibility .7s;
}
.bdc-hero__text-slide:first-child { position: relative; }
.bdc-hero__text-slide.is-active { opacity: 1; visibility: visible; transform: none; }

/* Slide counter and arrows */
.bdc-hero__controls {
	position: absolute;
	right: 0;
	bottom: -78px;
	display: flex;
	align-items: center;
	gap: 14px;
	z-index: 4;
	color: rgba(255, 255, 255, .7);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 1px;
}
.bdc-hero__controls .is-current { color: var(--white); font-size: 18px; }
.bdc-hero__controls button {
	width: 46px;
	height: 46px;
	border: 0;
	background: rgba(255, 255, 255, .12);
	color: var(--white);
	display: grid;
	place-items: center;
	cursor: pointer;
	font-size: 18px;
	transition: background .2s var(--ease-out), transform .2s var(--ease-out);
}
.bdc-hero__controls button:hover { background: var(--brand); transform: translateY(-2px); }

/* Dots (mobile) */
.bdc-hero__dots { display: none; gap: 8px; margin-top: 22px; }
.bdc-hero__dots button {
	width: 26px;
	height: 4px;
	border: 0;
	padding: 0;
	background: rgba(255, 255, 255, .3);
	cursor: pointer;
	transition: background .2s var(--ease-out), width .2s var(--ease-out);
}
.bdc-hero__dots button.is-active { background: var(--brand-bright); width: 40px; }

/* Ruler strip pinned to the bottom of the hero */
.bdc-hero__ruler { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; }

/* Reveal helpers ----------------------------------------------------------- */

.bdc-fade-up { opacity: 0; transform: translateY(26px); }
.bdc-hero .is-active .bdc-fade-up { animation: bdc-fade-up .8s var(--ease-out) forwards; }
.bdc-hero .is-active .bdc-fade-up:nth-child(2) { animation-delay: .1s; }
.bdc-hero .is-active .bdc-fade-up:nth-child(3) { animation-delay: .2s; }
.bdc-hero .is-active .bdc-fade-up:nth-child(4) { animation-delay: .3s; }

@keyframes bdc-fade-up {
	to { opacity: 1; transform: none; }
}

/* Counting numbers keep their box while animating */
.bdc-stat__num,
.bdc-counter__num { font-variant-numeric: tabular-nums; }

@media (max-width: 992px) {
	.bdc-hero__copy { min-height: 0; }
	.bdc-hero__text-slide { position: absolute; }
	.bdc-hero__text-slide:first-child { position: relative; }
	.bdc-hero__controls { position: static; margin-top: 24px; justify-content: flex-start; }
}

@media (max-width: 720px) {
	.bdc-hero__controls { display: none; }
	.bdc-hero__dots { display: flex; }
	.bdc-hero__slide img,
	.bdc-hero__slide .bdc-placeholder { aspect-ratio: 4 / 3; }
}

@media (prefers-reduced-motion: reduce) {
	.bdc-ruler--animated { animation: none; }
	.bdc-fade-up { opacity: 1; transform: none; animation: none !important; }
	.bdc-hero__slide,
	.bdc-hero__text-slide { transition: none; }
}

/* AJAX loading state for the projects grid --------------------------------- */

#bdc-project-results { position: relative; min-height: 200px; transition: opacity .2s var(--ease-out); }
#bdc-project-results.is-loading { opacity: .45; pointer-events: none; }
#bdc-project-results.is-loading::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 120px;
	width: 40px;
	height: 40px;
	margin-left: -20px;
	border: 3px solid var(--gray-200);
	border-top-color: var(--brand);
	border-radius: var(--radius-circle);
	animation: bdc-spin .8s linear infinite;
}

@keyframes bdc-spin {
	to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
	#bdc-project-results.is-loading::after { animation-duration: 2s; }
}
