/*!
 * Bright Care Dental — site styles
 * Everything is scoped under .bcd-scope so the stylesheet can also be used for
 * shortcodes embedded inside a theme without leaking into the theme's own CSS.
 */

/* ==========================================================================
   1. Tokens
   ========================================================================== */

.bcd-scope {
	/* Brand — taken from the clinic's own signage: deep blue + gold */
	--bcd-navy: #0B3C5D;
	--bcd-navy-deep: #08324F;
	--bcd-blue: #1273BE;
	--bcd-blue-dark: #0E4E78;
	--bcd-blue-soft: #E6F1F9;
	--bcd-gold: #F5AE1E;
	--bcd-gold-bright: #FFC24D;
	--bcd-gold-soft: #FFF4DE;

	/* Neutrals */
	--bcd-ink: #0B3C5D;
	--bcd-body: #3A5060;
	--bcd-muted: #5A7184;
	--bcd-line: #DDE9F1;
	--bcd-line-soft: #EDF4F9;
	--bcd-bg: #FFFFFF;
	--bcd-bg-soft: #F4F9FC;
	--bcd-bg-tint: #EAF3F9;

	/* Status */
	--bcd-ok: #147A52;
	--bcd-ok-soft: #E4F5EC;
	--bcd-warn: #9A4B00;
	--bcd-warn-soft: #FFF1E2;
	--bcd-error: #B3261E;
	--bcd-error-soft: #FDECEA;

	/* Type */
	--bcd-font-head: "Lexend", "Segoe UI", system-ui, -apple-system, sans-serif;
	--bcd-font-body: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;

	/* Spacing scale */
	--bcd-s1: 4px;
	--bcd-s2: 8px;
	--bcd-s3: 12px;
	--bcd-s4: 16px;
	--bcd-s5: 24px;
	--bcd-s6: 32px;
	--bcd-s7: 48px;
	--bcd-s8: 64px;
	--bcd-s9: 80px;
	--bcd-s10: 96px;

	/* Radii */
	--bcd-r-sm: 10px;
	--bcd-r: 14px;
	--bcd-r-lg: 20px;
	--bcd-r-xl: 28px;
	--bcd-pill: 999px;

	/* Elevation */
	--bcd-sh-1: 0 1px 2px rgba(11, 60, 93, .06), 0 2px 8px rgba(11, 60, 93, .05);
	--bcd-sh-2: 0 2px 6px rgba(11, 60, 93, .07), 0 12px 28px rgba(11, 60, 93, .08);
	--bcd-sh-3: 0 4px 12px rgba(11, 60, 93, .09), 0 24px 56px rgba(11, 60, 93, .12);

	--bcd-gutter: 20px;
	--bcd-max: 1200px;
	--bcd-ease: cubic-bezier(.22, .61, .36, 1);
}

/* ==========================================================================
   2. Scoped reset
   Written as `.bcd-scope :where(el)` so the specificity stays at (0,1,0) and
   our own component classes always win.
   ========================================================================== */

.bcd-scope,
.bcd-scope :where(*, *::before, *::after) {
	box-sizing: border-box;
}

.bcd-scope {
	font-family: var(--bcd-font-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--bcd-body);
	background: var(--bcd-bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.bcd-scope :where(h1, h2, h3, h4, h5, h6) {
	font-family: var(--bcd-font-head);
	color: var(--bcd-ink);
	line-height: 1.2;
	margin: 0 0 var(--bcd-s4);
	font-weight: 700;
	letter-spacing: -.015em;
	/* Progressive: browsers that support it avoid a single orphaned word on
	   the last line. Everything else wraps normally. */
	text-wrap: balance;
}

.bcd-scope :where(p, ul, ol, table, figure, blockquote) {
	margin: 0 0 var(--bcd-s4);
}

.bcd-scope :where(ul, ol) {
	padding-left: 1.25em;
}

.bcd-scope :where(li) {
	margin-bottom: var(--bcd-s2);
}

.bcd-scope :where(a) {
	color: var(--bcd-blue);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: color .18s var(--bcd-ease);
}

.bcd-scope :where(a:hover) {
	color: var(--bcd-navy);
}

.bcd-scope :where(img, svg, video, iframe) {
	max-width: 100%;
}

.bcd-scope :where(img) {
	height: auto;
	display: block;
}

.bcd-scope :where(strong, b) {
	font-weight: 600;
	color: var(--bcd-ink);
}

.bcd-scope :where(button, input, select, textarea) {
	font: inherit;
	color: inherit;
}

.bcd-scope :where(table) {
	border-collapse: collapse;
	width: 100%;
}

.bcd-scope :where(hr) {
	border: 0;
	border-top: 1px solid var(--bcd-line);
	margin: var(--bcd-s6) 0;
}

/* Visible focus everywhere — never removed. */
.bcd-scope :where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
	outline: 3px solid var(--bcd-gold);
	outline-offset: 2px;
	border-radius: 4px;
}

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

.bcd-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	background: var(--bcd-navy);
	color: #fff;
	padding: 12px 20px;
	border-radius: 0 0 var(--bcd-r-sm) 0;
	font-weight: 600;
}

.bcd-skip:focus {
	left: 0;
	color: #fff;
}

/* ==========================================================================
   3. Layout primitives
   ========================================================================== */

.bcd-wrap {
	width: 100%;
	max-width: var(--bcd-max);
	margin-inline: auto;
	padding-inline: var(--bcd-gutter);
}

.bcd-wrap--narrow {
	max-width: 820px;
}

.bcd-section {
	padding-block: var(--bcd-s9);
}

.bcd-section--tight {
	padding-block: var(--bcd-s7);
}

.bcd-section--soft {
	background: var(--bcd-bg-soft);
}

.bcd-section--tint {
	background: linear-gradient(180deg, var(--bcd-bg-tint), var(--bcd-bg-soft));
}

.bcd-section--navy {
	background: linear-gradient(140deg, var(--bcd-navy) 0%, var(--bcd-blue-dark) 55%, var(--bcd-navy-deep) 100%);
	color: #D7E8F3;
}

.bcd-section--navy :where(h1, h2, h3, h4) {
	color: #fff;
}

.bcd-grid {
	display: grid;
	gap: var(--bcd-s5);
}

.bcd-grid--2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.bcd-grid--3 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.bcd-grid--4 {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.bcd-split {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bcd-s7);
	align-items: center;
}

@media (min-width: 900px) {
	.bcd-split {
		grid-template-columns: 1.05fr .95fr;
		gap: var(--bcd-s8);
	}

	.bcd-split--wide-left {
		grid-template-columns: 1.3fr .7fr;
	}

	.bcd-split--wide-right {
		grid-template-columns: .8fr 1.2fr;
	}
}

.bcd-stack > * + * {
	margin-top: var(--bcd-s4);
}

/* ==========================================================================
   4. Typography helpers
   ========================================================================== */

.bcd-h1 {
	font-size: clamp(2rem, 1.35rem + 2.7vw, 3.3rem);
	line-height: 1.1;
}

.bcd-h2 {
	font-size: clamp(1.55rem, 1.15rem + 1.65vw, 2.45rem);
	line-height: 1.16;
}

.bcd-h3 {
	font-size: clamp(1.2rem, 1.05rem + .6vw, 1.5rem);
}

.bcd-lead {
	font-size: clamp(1.03rem, .98rem + .3vw, 1.2rem);
	color: var(--bcd-body);
	max-width: 68ch;
}

/*
 * .bcd-lead hard-codes --bcd-body, which is unreadable on any dark surface.
 * The page banner and hero are dark too, so they need the same override —
 * without this the subtitle on every inner page renders at 1.05:1.
 */
.bcd-section--navy .bcd-lead,
.bcd-banner .bcd-lead,
.bcd-hero .bcd-lead,
.bcd-cta .bcd-lead {
	color: #C4DCEC;
}

.bcd-banner .bcd-muted,
.bcd-section--navy .bcd-muted,
.bcd-cta .bcd-muted {
	color: #A8C6DA;
}

.bcd-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--bcd-s2);
	font-family: var(--bcd-font-head);
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	/* blue-dark, not blue: #1273BE on #E6F1F9 is only 4.34:1 */
	color: var(--bcd-blue-dark);
	background: var(--bcd-blue-soft);
	border-radius: var(--bcd-pill);
	padding: 7px 15px;
	margin-bottom: var(--bcd-s4);
}

.bcd-section--navy .bcd-eyebrow {
	/* The white-tinted pill lifts the background, so --bcd-gold-bright drops
	   to 4.24:1 here. This pairing is 4.95:1. */
	color: #FFD68F;
	background: rgba(255, 255, 255, .08);
}

.bcd-eyebrow .bcd-ico {
	width: 15px;
	height: 15px;
}

.bcd-head {
	max-width: 760px;
	margin-bottom: var(--bcd-s7);
}

.bcd-head--center {
	margin-inline: auto;
	text-align: center;
}

.bcd-gold {
	color: var(--bcd-gold);
}

.bcd-section--navy .bcd-gold {
	color: var(--bcd-gold-bright);
}

.bcd-muted {
	color: var(--bcd-muted);
}

.bcd-small {
	font-size: .92rem;
}

/* ==========================================================================
   5. Buttons, badges, chips
   ========================================================================== */

.bcd-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 50px;
	padding: 13px 26px;
	border: 2px solid transparent;
	border-radius: var(--bcd-pill);
	font-family: var(--bcd-font-head);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color .18s var(--bcd-ease), border-color .18s var(--bcd-ease), color .18s var(--bcd-ease), box-shadow .18s var(--bcd-ease), transform .18s var(--bcd-ease);
}

.bcd-btn .bcd-ico {
	width: 19px;
	height: 19px;
	flex: none;
}

/* Gold is the primary call to action. Ink text on gold, never white — white
   on this gold fails contrast badly. */
.bcd-btn--primary {
	background: var(--bcd-gold);
	border-color: var(--bcd-gold);
	color: var(--bcd-navy);
	box-shadow: 0 4px 14px rgba(245, 174, 30, .34);
}

.bcd-btn--primary:hover {
	background: var(--bcd-gold-bright);
	border-color: var(--bcd-gold-bright);
	color: var(--bcd-navy);
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(245, 174, 30, .4);
}

.bcd-btn--blue {
	background: var(--bcd-blue);
	border-color: var(--bcd-blue);
	color: #fff;
	box-shadow: 0 4px 14px rgba(18, 115, 190, .28);
}

.bcd-btn--blue:hover {
	background: var(--bcd-navy);
	border-color: var(--bcd-navy);
	color: #fff;
	transform: translateY(-2px);
}

.bcd-btn--ghost {
	background: transparent;
	border-color: var(--bcd-line);
	color: var(--bcd-ink);
}

.bcd-btn--ghost:hover {
	border-color: var(--bcd-blue);
	background: var(--bcd-blue-soft);
	color: var(--bcd-navy);
}

.bcd-btn--onnavy {
	background: rgba(255, 255, 255, .12);
	border-color: rgba(255, 255, 255, .38);
	color: #fff;
}

.bcd-btn--onnavy:hover {
	background: #fff;
	border-color: #fff;
	color: var(--bcd-navy);
}

/* Darker than WhatsApp's brand green on purpose: white on #25D366 is 1.98:1
   and on #1EA65A only 3.15:1. #157A47 gives white text 5.37:1. */
.bcd-btn--wa {
	background: #157A47;
	border-color: #157A47;
	color: #fff;
}

.bcd-btn--wa:hover {
	background: #0F5D36;
	border-color: #0F5D36;
	color: #fff;
}

.bcd-btn--block {
	width: 100%;
}

.bcd-btn--sm {
	min-height: 42px;
	padding: 9px 18px;
	font-size: .92rem;
}

.bcd-btn[disabled],
.bcd-btn[aria-disabled="true"] {
	opacity: .5;
	cursor: not-allowed;
	transform: none;
}

.bcd-btns {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bcd-s3);
}

.bcd-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--bcd-font-head);
	font-weight: 600;
	text-decoration: none;
	color: var(--bcd-blue);
}

.bcd-link-arrow .bcd-ico {
	width: 18px;
	height: 18px;
	transition: transform .2s var(--bcd-ease);
}

.bcd-link-arrow:hover .bcd-ico {
	transform: translateX(4px);
}

.bcd-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	border-radius: var(--bcd-pill);
	background: var(--bcd-gold-soft);
	color: #7A4E00;
	font-size: .8rem;
	font-weight: 600;
	font-family: var(--bcd-font-head);
	line-height: 1.4;
}

.bcd-badge--blue {
	background: var(--bcd-blue-soft);
	color: var(--bcd-blue-dark);
}

.bcd-badge--ok {
	background: var(--bcd-ok-soft);
	color: var(--bcd-ok);
}

.bcd-badge .bcd-ico {
	width: 14px;
	height: 14px;
}

/* ==========================================================================
   6. Top bar, header, navigation
   ========================================================================== */

.bcd-topbar {
	background: var(--bcd-navy);
	color: #CBE0EE;
	font-size: .88rem;
}

.bcd-topbar__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--bcd-s3);
	min-height: 44px;
	padding-block: 7px;
}

.bcd-topbar__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--bcd-s5);
	list-style: none;
	margin: 0;
	padding: 0;
}

.bcd-topbar__list li {
	margin: 0;
}

.bcd-topbar a,
.bcd-topbar__item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #CBE0EE;
	text-decoration: none;
}

.bcd-topbar a:hover {
	color: var(--bcd-gold-bright);
}

.bcd-topbar .bcd-ico {
	width: 16px;
	height: 16px;
	color: var(--bcd-gold);
	flex: none;
}

.bcd-topbar__social {
	display: flex;
	align-items: center;
	gap: var(--bcd-s1);
}

.bcd-topbar__social a {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
}

.bcd-topbar__social a:hover {
	background: var(--bcd-gold);
	color: var(--bcd-navy);
}

.bcd-topbar__social .bcd-ico {
	width: 16px;
	height: 16px;
	color: inherit;
}

.bcd-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--bcd-line);
	transition: box-shadow .2s var(--bcd-ease);
}

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

.bcd-header.is-stuck {
	box-shadow: var(--bcd-sh-1);
}

.bcd-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--bcd-s4);
	min-height: 74px;
	padding-block: 10px;
}

.bcd-logo {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	text-decoration: none;
	flex: none;
}

.bcd-logo-mark {
	flex: none;
	border-radius: 13px;
}

.bcd-logo__text {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}

.bcd-logo__name {
	font-family: var(--bcd-font-head);
	font-size: 1.28rem;
	font-weight: 700;
	color: var(--bcd-navy);
	letter-spacing: -.02em;
}

.bcd-logo__name em {
	font-style: normal;
	color: var(--bcd-blue);
}

.bcd-logo__sub {
	font-family: var(--bcd-font-head);
	font-size: .62rem;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--bcd-muted);
	margin-top: 3px;
}

.bcd-footer .bcd-logo__name {
	color: #fff;
}

.bcd-footer .bcd-logo__name em {
	color: var(--bcd-gold-bright);
}

.bcd-footer .bcd-logo__sub {
	color: #9FBFD4;
}

.bcd-nav {
	display: none;
}

.bcd-nav__list {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bcd-nav__list li {
	margin: 0;
}

.bcd-nav__link {
	display: block;
	padding: 10px 13px;
	border-radius: var(--bcd-r-sm);
	font-family: var(--bcd-font-head);
	font-size: .95rem;
	font-weight: 500;
	color: var(--bcd-ink);
	text-decoration: none;
	white-space: nowrap;
}

.bcd-nav__link:hover {
	background: var(--bcd-blue-soft);
	color: var(--bcd-blue-dark);
}

.bcd-nav__link[aria-current="page"] {
	/* blue-dark, not blue: #1273BE on #E6F1F9 is only 4.34:1 */
	color: var(--bcd-blue-dark);
	font-weight: 600;
	background: var(--bcd-blue-soft);
}

.bcd-header__actions {
	display: flex;
	align-items: center;
	gap: var(--bcd-s2);
}

.bcd-header__call {
	display: none;
}

.bcd-burger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid var(--bcd-line);
	border-radius: var(--bcd-r-sm);
	background: #fff;
	color: var(--bcd-navy);
	cursor: pointer;
}

.bcd-burger:hover {
	border-color: var(--bcd-blue);
	background: var(--bcd-blue-soft);
}

.bcd-burger .bcd-ico--close,
.bcd-burger[aria-expanded="true"] .bcd-ico--menu {
	display: none;
}

.bcd-burger[aria-expanded="true"] .bcd-ico--close {
	display: block;
}

/* Mobile drawer */
.bcd-drawer {
	position: fixed;
	inset: 0;
	z-index: 120;
	visibility: hidden;
	pointer-events: none;
}

.bcd-drawer.is-open {
	visibility: visible;
	pointer-events: auto;
}

.bcd-drawer__scrim {
	position: absolute;
	inset: 0;
	background: rgba(8, 38, 58, .55);
	opacity: 0;
	transition: opacity .25s var(--bcd-ease);
	border: 0;
	width: 100%;
	cursor: pointer;
}

.bcd-drawer.is-open .bcd-drawer__scrim {
	opacity: 1;
}

.bcd-drawer__panel {
	position: absolute;
	inset-block: 0;
	right: 0;
	width: min(360px, 88vw);
	background: #fff;
	box-shadow: var(--bcd-sh-3);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform .28s var(--bcd-ease);
	overflow-y: auto;
	overscroll-behavior: contain;
}

.bcd-drawer.is-open .bcd-drawer__panel {
	transform: translateX(0);
}

.bcd-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--bcd-s3);
	padding: var(--bcd-s4);
	border-bottom: 1px solid var(--bcd-line);
}

.bcd-drawer__list {
	list-style: none;
	margin: 0;
	padding: var(--bcd-s3) var(--bcd-s4);
	flex: 1;
}

.bcd-drawer__list li {
	margin: 0;
}

.bcd-drawer__list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--bcd-s3);
	padding: 14px 4px;
	min-height: 48px;
	border-bottom: 1px solid var(--bcd-line-soft);
	font-family: var(--bcd-font-head);
	font-size: 1.02rem;
	font-weight: 500;
	color: var(--bcd-ink);
	text-decoration: none;
}

.bcd-drawer__list a[aria-current="page"] {
	color: var(--bcd-blue);
	font-weight: 600;
}

.bcd-drawer__list .bcd-ico {
	width: 17px;
	height: 17px;
	color: var(--bcd-muted);
}

.bcd-drawer__foot {
	padding: var(--bcd-s4);
	border-top: 1px solid var(--bcd-line);
	display: grid;
	gap: var(--bcd-s2);
	background: var(--bcd-bg-soft);
}

@media (min-width: 1060px) {
	.bcd-nav {
		display: block;
	}

	.bcd-burger {
		display: none;
	}

	.bcd-header__call {
		display: inline-flex;
	}
}

/* ==========================================================================
   7. Hero
   ========================================================================== */

.bcd-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(150deg, #0B3C5D 0%, #10557F 52%, #08324F 100%);
	color: #D7E8F3;
	padding-block: var(--bcd-s8) var(--bcd-s9);
}

.bcd-hero::after {
	content: "";
	position: absolute;
	right: -180px;
	top: -180px;
	width: 620px;
	height: 620px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(245, 174, 30, .22), transparent 66%);
	pointer-events: none;
}

.bcd-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bcd-s7);
	align-items: center;
}

.bcd-hero h1 {
	color: #fff;
	font-size: clamp(2.05rem, 1.3rem + 3vw, 3.35rem);
	line-height: 1.08;
	margin-bottom: var(--bcd-s4);
}

.bcd-hero__lead {
	font-size: clamp(1.02rem, .97rem + .35vw, 1.2rem);
	color: #C4DCEC;
	max-width: 58ch;
	margin-bottom: var(--bcd-s5);
}

.bcd-hero__ticks {
	list-style: none;
	margin: 0 0 var(--bcd-s6);
	padding: 0;
	display: grid;
	gap: 10px;
}

.bcd-hero__ticks li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	color: #D7E8F3;
}

.bcd-hero__ticks .bcd-ico {
	width: 21px;
	height: 21px;
	flex: none;
	color: var(--bcd-gold-bright);
	margin-top: 3px;
}

.bcd-hero__media {
	position: relative;
	display: grid;
	gap: var(--bcd-s4);
}

/* The clinic's own signboard: wide and short, shown at its natural ratio so
   the address and phone number on it stay legible. */
.bcd-hero__sign {
	margin: 0;
	border-radius: var(--bcd-r-lg);
	overflow: hidden;
	border: 4px solid rgba(255, 255, 255, .14);
	box-shadow: 0 18px 44px rgba(4, 24, 38, .38);
}

.bcd-hero__sign img {
	width: 100%;
	height: auto;
	display: block;
}

.bcd-hero__photo {
	border-radius: var(--bcd-r-xl);
	overflow: hidden;
	box-shadow: 0 30px 70px rgba(4, 24, 38, .45);
	border: 5px solid rgba(255, 255, 255, .12);
}

.bcd-hero__photo img {
	width: 100%;
	aspect-ratio: 16 / 11;
	object-fit: cover;
	object-position: center 58%;
}

.bcd-hero__card {
	background: #fff;
	color: var(--bcd-ink);
	border-radius: var(--bcd-r-lg);
	padding: var(--bcd-s4) var(--bcd-s5);
	box-shadow: var(--bcd-sh-3);
	display: flex;
	align-items: center;
	gap: var(--bcd-s3);
	max-width: 310px;
}

.bcd-hero__card--float {
	position: absolute;
	left: -16px;
	bottom: -26px;
}

.bcd-hero__card .bcd-ico {
	width: 26px;
	height: 26px;
	color: var(--bcd-blue);
	flex: none;
}

.bcd-hero__card strong {
	display: block;
	font-family: var(--bcd-font-head);
	font-size: 1.02rem;
	line-height: 1.25;
}

.bcd-hero__card span {
	font-size: .86rem;
	color: var(--bcd-muted);
}

@media (min-width: 960px) {
	.bcd-hero__inner {
		grid-template-columns: 1.08fr .92fr;
		gap: var(--bcd-s8);
	}
}

/* Page banner for inner pages */
.bcd-banner {
	background: linear-gradient(140deg, var(--bcd-navy) 0%, var(--bcd-blue-dark) 60%, var(--bcd-navy-deep) 100%);
	color: #C4DCEC;
	padding-block: var(--bcd-s7);
	position: relative;
	overflow: hidden;
}

.bcd-banner::after {
	content: "";
	position: absolute;
	right: -140px;
	top: -140px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(245, 174, 30, .18), transparent 68%);
}

.bcd-banner__inner {
	position: relative;
	z-index: 1;
}

.bcd-banner h1 {
	color: #fff;
	margin-bottom: var(--bcd-s3);
}

.bcd-banner p {
	max-width: 70ch;
	margin: 0;
}

.bcd-crumbs {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin: 0 0 var(--bcd-s4);
	padding: 0;
	font-size: .86rem;
	color: #9FBFD4;
}

.bcd-crumbs li {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.bcd-crumbs a {
	color: #C4DCEC;
	text-decoration: none;
}

.bcd-crumbs a:hover {
	color: var(--bcd-gold-bright);
}

.bcd-crumbs .bcd-ico {
	width: 13px;
	height: 13px;
	opacity: .6;
}

/* ==========================================================================
   8. Cards
   ========================================================================== */

.bcd-card {
	background: #fff;
	border: 1px solid var(--bcd-line);
	border-radius: var(--bcd-r-lg);
	padding: var(--bcd-s5);
	box-shadow: var(--bcd-sh-1);
	transition: transform .2s var(--bcd-ease), box-shadow .2s var(--bcd-ease), border-color .2s var(--bcd-ease);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.bcd-card--link:hover {
	transform: translateY(-4px);
	box-shadow: var(--bcd-sh-2);
	border-color: #BFD9EA;
}

.bcd-card__icon {
	width: 54px;
	height: 54px;
	border-radius: var(--bcd-r);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--bcd-blue-soft);
	color: var(--bcd-blue);
	margin-bottom: var(--bcd-s4);
	flex: none;
}

.bcd-card__icon .bcd-ico {
	width: 28px;
	height: 28px;
}

.bcd-card--gold .bcd-card__icon {
	background: var(--bcd-gold-soft);
	color: #A96B00;
}

.bcd-card h3 {
	font-size: 1.18rem;
	margin-bottom: 9px;
}

.bcd-card p {
	color: var(--bcd-body);
	margin-bottom: var(--bcd-s4);
}

.bcd-card__foot {
	margin-top: auto;
	padding-top: var(--bcd-s3);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--bcd-s3);
	border-top: 1px solid var(--bcd-line-soft);
}

.bcd-card__price {
	font-family: var(--bcd-font-head);
	font-weight: 700;
	color: var(--bcd-navy);
}

.bcd-card__price span {
	display: block;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--bcd-muted);
}

/* Service card with photo */
.bcd-scard {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--bcd-line);
	border-radius: var(--bcd-r-lg);
	overflow: hidden;
	box-shadow: var(--bcd-sh-1);
	height: 100%;
	transition: transform .2s var(--bcd-ease), box-shadow .2s var(--bcd-ease);
}

.bcd-scard:hover {
	transform: translateY(-4px);
	box-shadow: var(--bcd-sh-2);
}

.bcd-scard__media {
	position: relative;
	background: var(--bcd-bg-tint);
}

.bcd-scard__media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

/* Shown instead of a photo so every card in a row keeps the same shape. */
.bcd-scard__ph {
	aspect-ratio: 16 / 10;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(circle at 74% 24%, rgba(245, 174, 30, .16), transparent 58%),
		linear-gradient(145deg, #E6F1F9 0%, #F6FBFD 62%, #DCEBF5 100%);
	color: var(--bcd-blue);
}

.bcd-scard__ph .bcd-ico {
	width: 88px;
	height: 88px;
	opacity: .62;
	stroke-width: 1.3;
	color: var(--bcd-blue-dark);
}

.bcd-scard__chip {
	position: absolute;
	left: 14px;
	bottom: 14px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 14px;
	border-radius: var(--bcd-pill);
	background: rgba(255, 255, 255, .95);
	color: var(--bcd-navy);
	font-family: var(--bcd-font-head);
	font-size: .82rem;
	font-weight: 600;
	box-shadow: var(--bcd-sh-1);
}

.bcd-scard__chip .bcd-ico {
	width: 16px;
	height: 16px;
	color: var(--bcd-blue);
}

.bcd-scard__body {
	padding: var(--bcd-s5);
	display: flex;
	flex-direction: column;
	flex: 1;
}

.bcd-scard__body h3 {
	font-size: 1.16rem;
	margin-bottom: 8px;
}

.bcd-scard__body h3 a {
	color: inherit;
	text-decoration: none;
}

.bcd-scard__body h3 a:hover {
	color: var(--bcd-blue);
}

/* Feature / reason tiles */
.bcd-tile {
	display: flex;
	gap: var(--bcd-s4);
	padding: var(--bcd-s5);
	background: #fff;
	border: 1px solid var(--bcd-line);
	border-radius: var(--bcd-r-lg);
	height: 100%;
}

.bcd-tile__icon {
	width: 46px;
	height: 46px;
	flex: none;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--bcd-gold-soft);
	color: #A96B00;
}

.bcd-tile__icon .bcd-ico {
	width: 24px;
	height: 24px;
}

.bcd-tile h3 {
	font-size: 1.06rem;
	margin-bottom: 6px;
}

.bcd-tile p {
	margin: 0;
	font-size: .97rem;
}

.bcd-section--navy .bcd-tile {
	background: rgba(255, 255, 255, .06);
	border-color: rgba(255, 255, 255, .14);
}

.bcd-section--navy .bcd-tile p {
	color: #C4DCEC;
}

.bcd-section--navy .bcd-tile__icon {
	background: rgba(245, 174, 30, .18);
	color: var(--bcd-gold-bright);
}

/* Stats strip */
.bcd-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: var(--bcd-s4);
}

.bcd-stat {
	text-align: center;
	padding: var(--bcd-s5) var(--bcd-s3);
	background: #fff;
	border: 1px solid var(--bcd-line);
	border-radius: var(--bcd-r-lg);
}

.bcd-stat__num {
	display: block;
	font-family: var(--bcd-font-head);
	font-size: clamp(1.7rem, 1.4rem + 1.1vw, 2.35rem);
	font-weight: 700;
	color: var(--bcd-blue);
	line-height: 1.05;
	font-variant-numeric: tabular-nums;
}

.bcd-stat__label {
	display: block;
	margin-top: 6px;
	font-size: .93rem;
	color: var(--bcd-muted);
}

.bcd-section--navy .bcd-stat {
	background: rgba(255, 255, 255, .07);
	border-color: rgba(255, 255, 255, .15);
}

.bcd-section--navy .bcd-stat__num {
	color: var(--bcd-gold-bright);
}

.bcd-section--navy .bcd-stat__label {
	color: #C4DCEC;
}

/* Doctor card */
.bcd-doctor {
	display: grid;
	gap: var(--bcd-s5);
	background: #fff;
	border: 1px solid var(--bcd-line);
	border-radius: var(--bcd-r-xl);
	padding: var(--bcd-s5);
	box-shadow: var(--bcd-sh-1);
}

@media (min-width: 720px) {
	.bcd-doctor {
		grid-template-columns: 220px 1fr;
		align-items: start;
	}
}

.bcd-doctor__photo {
	border-radius: var(--bcd-r-lg);
	overflow: hidden;
	background: linear-gradient(150deg, var(--bcd-blue-soft), #fff);
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bcd-blue);
}

.bcd-doctor__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bcd-doctor__photo .bcd-ico {
	width: 76px;
	height: 76px;
	opacity: .35;
}

.bcd-doctor h3 {
	margin-bottom: 4px;
}

.bcd-doctor__role {
	font-family: var(--bcd-font-head);
	font-weight: 600;
	color: var(--bcd-blue);
	margin-bottom: var(--bcd-s3);
}

/* Reviews */
.bcd-review {
	background: #fff;
	border: 1px solid var(--bcd-line);
	border-radius: var(--bcd-r-lg);
	padding: var(--bcd-s5);
	box-shadow: var(--bcd-sh-1);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.bcd-review__stars {
	display: flex;
	gap: 2px;
	color: var(--bcd-gold);
	margin-bottom: var(--bcd-s3);
}

.bcd-review__stars .bcd-ico {
	width: 19px;
	height: 19px;
	fill: currentColor;
	stroke-width: 0;
}

.bcd-review blockquote {
	margin: 0 0 var(--bcd-s4);
	font-size: 1.02rem;
	color: var(--bcd-body);
}

.bcd-review__who {
	margin-top: auto;
	padding-top: var(--bcd-s3);
	border-top: 1px solid var(--bcd-line-soft);
	display: flex;
	align-items: center;
	gap: 11px;
}

.bcd-review__avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--bcd-blue-soft);
	color: var(--bcd-blue-dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--bcd-font-head);
	font-weight: 700;
	flex: none;
}

.bcd-review__name {
	display: block;
	font-family: var(--bcd-font-head);
	font-weight: 600;
	color: var(--bcd-ink);
}

.bcd-review__meta {
	display: block;
	font-size: .85rem;
	color: var(--bcd-muted);
}

/* ==========================================================================
   9. Accordion (FAQ)
   ========================================================================== */

.bcd-acc {
	border: 1px solid var(--bcd-line);
	border-radius: var(--bcd-r);
	background: #fff;
	margin-bottom: var(--bcd-s3);
	overflow: hidden;
}

.bcd-acc__btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--bcd-s4);
	width: 100%;
	min-height: 56px;
	padding: var(--bcd-s4) var(--bcd-s5);
	background: none;
	border: 0;
	text-align: left;
	cursor: pointer;
	font-family: var(--bcd-font-head);
	font-size: 1.03rem;
	font-weight: 600;
	color: var(--bcd-ink);
	line-height: 1.35;
}

.bcd-acc__btn:hover {
	background: var(--bcd-bg-soft);
}

.bcd-acc__btn .bcd-ico {
	flex: none;
	width: 22px;
	height: 22px;
	color: var(--bcd-blue);
	transition: transform .2s var(--bcd-ease);
}

.bcd-acc__btn[aria-expanded="true"] .bcd-ico {
	transform: rotate(180deg);
}

.bcd-acc__panel {
	padding: 0 var(--bcd-s5) var(--bcd-s5);
	color: var(--bcd-body);
}

.bcd-acc__panel > :last-child {
	margin-bottom: 0;
}

.bcd-acc__panel[hidden] {
	display: none;
}

.bcd-acc-group + .bcd-acc-group {
	margin-top: var(--bcd-s6);
}

.bcd-acc-group h3 {
	font-size: 1.08rem;
	color: var(--bcd-blue-dark);
	margin-bottom: var(--bcd-s3);
	padding-bottom: var(--bcd-s2);
	border-bottom: 2px solid var(--bcd-line);
}

/* ==========================================================================
   10. Forms
   ========================================================================== */

.bcd-form {
	background: #fff;
	border: 1px solid var(--bcd-line);
	border-radius: var(--bcd-r-xl);
	padding: var(--bcd-s6);
	box-shadow: var(--bcd-sh-2);
}

.bcd-form__head {
	margin-bottom: var(--bcd-s5);
}

.bcd-form__head h2,
.bcd-form__head h3 {
	margin-bottom: 6px;
}

.bcd-form__head p {
	margin: 0;
	color: var(--bcd-muted);
	font-size: .96rem;
}

.bcd-fields {
	display: grid;
	gap: var(--bcd-s4);
}

@media (min-width: 620px) {
	.bcd-fields--2 {
		grid-template-columns: 1fr 1fr;
	}

	.bcd-field--full {
		grid-column: 1 / -1;
	}
}

.bcd-field label {
	display: block;
	font-family: var(--bcd-font-head);
	font-size: .93rem;
	font-weight: 600;
	color: var(--bcd-ink);
	margin-bottom: 7px;
}

.bcd-field .bcd-req {
	color: var(--bcd-error);
	margin-left: 2px;
}

.bcd-field input,
.bcd-field select,
.bcd-field textarea {
	width: 100%;
	min-height: 50px;
	padding: 13px 15px;
	border: 1.5px solid var(--bcd-line);
	border-radius: var(--bcd-r-sm);
	background: #fff;
	color: var(--bcd-ink);
	font-size: 1rem;
	transition: border-color .16s var(--bcd-ease), box-shadow .16s var(--bcd-ease);
}

.bcd-field textarea {
	min-height: 118px;
	resize: vertical;
}

.bcd-field select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A7184' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 19px;
	padding-right: 42px;
}

.bcd-field input:hover,
.bcd-field select:hover,
.bcd-field textarea:hover {
	border-color: #B9D4E6;
}

.bcd-field input:focus,
.bcd-field select:focus,
.bcd-field textarea:focus {
	border-color: var(--bcd-blue);
	box-shadow: 0 0 0 4px rgba(18, 115, 190, .14);
	outline: none;
}

.bcd-field__hint {
	display: block;
	margin-top: 6px;
	font-size: .86rem;
	color: var(--bcd-muted);
}

.bcd-hp {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.bcd-form__foot {
	margin-top: var(--bcd-s5);
	display: grid;
	gap: var(--bcd-s3);
}

.bcd-form__note {
	font-size: .88rem;
	color: var(--bcd-muted);
	margin: 0;
}

.bcd-alert {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	padding: var(--bcd-s4);
	border-radius: var(--bcd-r-sm);
	margin-bottom: var(--bcd-s5);
	font-size: .96rem;
}

.bcd-alert .bcd-ico {
	width: 21px;
	height: 21px;
	flex: none;
	margin-top: 1px;
}

.bcd-alert--error {
	background: var(--bcd-error-soft);
	color: #8A1D17;
	border: 1px solid #F2C9C5;
}

.bcd-alert--ok {
	background: var(--bcd-ok-soft);
	color: #0E5A3C;
	border: 1px solid #BBE3CE;
}

.bcd-alert--warn {
	background: var(--bcd-warn-soft);
	color: var(--bcd-warn);
	border: 1px solid #F5D9BA;
}

/* ==========================================================================
   11. Lists, tables, media
   ========================================================================== */

.bcd-ticks {
	list-style: none;
	margin: 0 0 var(--bcd-s5);
	padding: 0;
	display: grid;
	gap: 11px;
}

.bcd-ticks li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	margin: 0;
}

.bcd-ticks .bcd-ico {
	width: 22px;
	height: 22px;
	flex: none;
	color: var(--bcd-ok);
	margin-top: 2px;
}

.bcd-ticks--gold .bcd-ico {
	color: var(--bcd-gold);
}

.bcd-ticks--2 {
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 11px var(--bcd-s5);
}

.bcd-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--bcd-line);
	border-radius: var(--bcd-r-lg);
	background: #fff;
}

.bcd-table {
	min-width: 520px;
	font-size: .98rem;
}

.bcd-table th,
.bcd-table td {
	padding: 15px var(--bcd-s5);
	text-align: left;
	border-bottom: 1px solid var(--bcd-line-soft);
}

.bcd-table thead th {
	background: var(--bcd-bg-tint);
	font-family: var(--bcd-font-head);
	font-size: .86rem;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--bcd-blue-dark);
	border-bottom: 1px solid var(--bcd-line);
}

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

.bcd-table tbody tr:hover {
	background: var(--bcd-bg-soft);
}

.bcd-table__price {
	font-family: var(--bcd-font-head);
	font-weight: 700;
	color: var(--bcd-navy);
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.bcd-photo {
	border-radius: var(--bcd-r-xl);
	overflow: hidden;
	box-shadow: var(--bcd-sh-2);
}

.bcd-photo img {
	width: 100%;
	object-fit: cover;
}

.bcd-photo--tall img {
	aspect-ratio: 3 / 4;
}

.bcd-photo--wide img {
	aspect-ratio: 16 / 10;
}

.bcd-map {
	--bcd-map-h: 400px;
	border-radius: var(--bcd-r-lg);
	overflow: hidden;
	border: 1px solid var(--bcd-line);
	background: var(--bcd-bg-tint);
}

.bcd-map iframe {
	display: block;
	width: 100%;
	height: var(--bcd-map-h);
	border: 0;
}

/* Gallery */
.bcd-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: var(--bcd-s4);
}

.bcd-gitem {
	position: relative;
	border-radius: var(--bcd-r-lg);
	overflow: hidden;
	border: 1px solid var(--bcd-line);
	background: var(--bcd-bg-tint);
	box-shadow: var(--bcd-sh-1);
}

.bcd-gitem img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform .35s var(--bcd-ease);
}

.bcd-gitem:hover img {
	transform: scale(1.04);
}

.bcd-gitem figcaption {
	padding: 13px var(--bcd-s4);
	font-size: .92rem;
	color: var(--bcd-body);
	background: #fff;
	border-top: 1px solid var(--bcd-line-soft);
}

.bcd-filters {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bcd-s2);
	margin-bottom: var(--bcd-s5);
}

.bcd-filter {
	min-height: 42px;
	padding: 9px 18px;
	border: 1.5px solid var(--bcd-line);
	border-radius: var(--bcd-pill);
	background: #fff;
	color: var(--bcd-ink);
	font-family: var(--bcd-font-head);
	font-size: .93rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color .16s var(--bcd-ease), border-color .16s var(--bcd-ease), color .16s var(--bcd-ease);
}

.bcd-filter:hover {
	border-color: var(--bcd-blue);
	background: var(--bcd-blue-soft);
}

.bcd-filter[aria-pressed="true"] {
	background: var(--bcd-navy);
	border-color: var(--bcd-navy);
	color: #fff;
}

/* Info rows (contact details) */
.bcd-info {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--bcd-s4);
}

.bcd-info li {
	display: flex;
	gap: var(--bcd-s4);
	margin: 0;
}

.bcd-info__icon {
	width: 46px;
	height: 46px;
	flex: none;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--bcd-blue-soft);
	color: var(--bcd-blue);
}

.bcd-info__icon .bcd-ico {
	width: 22px;
	height: 22px;
}

.bcd-info strong {
	display: block;
	font-family: var(--bcd-font-head);
	font-size: .95rem;
	color: var(--bcd-ink);
	margin-bottom: 2px;
}

.bcd-info a {
	text-decoration: none;
}

.bcd-info a:hover {
	text-decoration: underline;
}

.bcd-section--navy .bcd-info__icon {
	background: rgba(255, 255, 255, .1);
	color: var(--bcd-gold-bright);
}

.bcd-section--navy .bcd-info strong {
	color: #fff;
}

.bcd-section--navy .bcd-info a,
.bcd-section--navy .bcd-info li {
	color: #C4DCEC;
}

/* Hours table */
.bcd-hours {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bcd-hours li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--bcd-s4);
	padding: 11px 0;
	border-bottom: 1px dashed var(--bcd-line);
	margin: 0;
}

.bcd-hours li:last-child {
	border-bottom: 0;
}

.bcd-hours__day {
	font-family: var(--bcd-font-head);
	font-weight: 600;
	color: var(--bcd-ink);
}

.bcd-hours__time {
	color: var(--bcd-muted);
	font-variant-numeric: tabular-nums;
	text-align: right;
}

.bcd-hours li.is-today .bcd-hours__day,
.bcd-hours li.is-today .bcd-hours__time {
	color: var(--bcd-blue);
	font-weight: 600;
}

.bcd-section--navy .bcd-hours li {
	border-color: rgba(255, 255, 255, .16);
}

.bcd-section--navy .bcd-hours__day {
	color: #fff;
}

.bcd-section--navy .bcd-hours__time {
	color: #C4DCEC;
}

.bcd-section--navy .bcd-hours li.is-today .bcd-hours__day,
.bcd-section--navy .bcd-hours li.is-today .bcd-hours__time {
	color: var(--bcd-gold-bright);
}

/* ==========================================================================
   12. CTA band
   ========================================================================== */

.bcd-cta {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--bcd-navy) 0%, var(--bcd-blue-dark) 100%);
	color: #D7E8F3;
	border-radius: var(--bcd-r-xl);
	padding: var(--bcd-s7) var(--bcd-s6);
	text-align: center;
}

.bcd-cta::after {
	content: "";
	position: absolute;
	left: 50%;
	top: -180px;
	width: 520px;
	height: 520px;
	transform: translateX(-50%);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(245, 174, 30, .2), transparent 68%);
	pointer-events: none;
}

.bcd-cta > * {
	position: relative;
	z-index: 1;
}

.bcd-cta h2 {
	color: #fff;
	margin-bottom: var(--bcd-s3);
}

.bcd-cta p {
	color: #C4DCEC;
	max-width: 58ch;
	margin-inline: auto;
	margin-bottom: var(--bcd-s5);
}

.bcd-cta .bcd-btns {
	justify-content: center;
}

.bcd-offer {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 9px 20px;
	border-radius: var(--bcd-pill);
	background: rgba(245, 174, 30, .18);
	border: 1px solid rgba(245, 174, 30, .45);
	/* Lighter than --bcd-gold-bright: over the gold wash on navy that token
	   only reaches 4.34:1. This is 5.07:1. */
	color: #FFD68F;
	font-family: var(--bcd-font-head);
	font-weight: 600;
	font-size: .95rem;
	margin-bottom: var(--bcd-s4);
}

.bcd-offer .bcd-ico {
	width: 18px;
	height: 18px;
}

/* ==========================================================================
   13. Footer
   ========================================================================== */

.bcd-footer {
	background: var(--bcd-navy-deep);
	color: #A8C6DA;
	padding-block: var(--bcd-s8) 0;
	font-size: .96rem;
}

.bcd-footer__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: var(--bcd-s6);
	padding-bottom: var(--bcd-s7);
}

.bcd-footer__col > .bcd-logo {
	margin-bottom: var(--bcd-s4);
}

.bcd-footer h3 {
	color: #fff;
	font-size: 1.02rem;
	margin-bottom: var(--bcd-s4);
}

.bcd-footer p {
	color: #A8C6DA;
}

.bcd-footer a {
	color: #A8C6DA;
	text-decoration: none;
}

.bcd-footer a:hover {
	color: var(--bcd-gold-bright);
	text-decoration: underline;
}

.bcd-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.bcd-footer__links li {
	margin: 0;
}

/* A list of links is not "inline in a sentence", so these need the 24px
   minimum target height (WCAG 2.2 target size). */
.bcd-footer__links a {
	display: inline-block;
	padding-block: 3px;
}

.bcd-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bcd-s2);
	margin-top: var(--bcd-s4);
}

.bcd-footer__social a {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .12);
}

.bcd-footer__social a:hover {
	background: var(--bcd-gold);
	border-color: var(--bcd-gold);
	color: var(--bcd-navy);
}

.bcd-footer__social .bcd-ico {
	width: 18px;
	height: 18px;
}

.bcd-footer__bar {
	border-top: 1px solid rgba(255, 255, 255, .12);
	padding-block: var(--bcd-s5);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--bcd-s3);
	font-size: .9rem;
	color: #8FB2C9;
}

.bcd-footer__bar p {
	margin: 0;
	color: inherit;
}

.bcd-footer__areas {
	font-size: .88rem;
	line-height: 1.8;
	color: #8FB2C9;
}

/*
 * The scoped reset paints <strong> in --bcd-ink, which is the same navy as
 * these backgrounds — the text would be invisible. Specificity (0,1,1) so it
 * beats the (0,1,0) `:where()` reset regardless of source order.
 */
.bcd-footer strong,
.bcd-footer b,
.bcd-section--navy strong,
.bcd-section--navy b,
.bcd-cta strong,
.bcd-cta b,
.bcd-banner strong,
.bcd-banner b {
	color: #fff;
}

/* …but light surfaces can sit inside those dark sections, so put the ink back. */
.bcd-footer :where(.bcd-card, .bcd-form, .bcd-aside, .bcd-hero__card) :where(strong, b),
.bcd-section--navy :where(.bcd-card, .bcd-form, .bcd-aside, .bcd-hero__card) :where(strong, b),
.bcd-cta :where(.bcd-card, .bcd-form, .bcd-aside) :where(strong, b),
.bcd-banner :where(.bcd-card, .bcd-form, .bcd-aside) :where(strong, b),
.bcd-hero__card :where(strong, b) {
	color: var(--bcd-ink);
}

/* ==========================================================================
   14. Floating actions
   ========================================================================== */

.bcd-wa-float {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 95;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #157A47;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
	transition: transform .2s var(--bcd-ease);
}

.bcd-wa-float:hover {
	transform: scale(1.07);
	color: #fff;
}

.bcd-wa-float .bcd-ico {
	width: 30px;
	height: 30px;
}

.bcd-stickybar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 96;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	background: #fff;
	border-top: 1px solid var(--bcd-line);
	box-shadow: 0 -4px 20px rgba(11, 60, 93, .13);
	padding-bottom: env(safe-area-inset-bottom);
}

.bcd-stickybar a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	min-height: 60px;
	padding: 8px 6px;
	font-family: var(--bcd-font-head);
	font-size: .78rem;
	font-weight: 600;
	color: var(--bcd-navy);
	text-decoration: none;
	border-right: 1px solid var(--bcd-line-soft);
}

.bcd-stickybar a:last-child {
	border-right: 0;
}

.bcd-stickybar a .bcd-ico {
	width: 21px;
	height: 21px;
	color: var(--bcd-blue);
}

.bcd-stickybar a.is-primary {
	background: var(--bcd-gold);
	color: var(--bcd-navy);
}

.bcd-stickybar a.is-primary .bcd-ico {
	color: var(--bcd-navy);
}

@media (min-width: 860px) {
	.bcd-stickybar {
		display: none;
	}

	.bcd-wa-float {
		right: 26px;
		bottom: 26px;
	}
}

@media (max-width: 859px) {
	.bcd-has-stickybar .bcd-footer {
		padding-bottom: 68px;
	}

	.bcd-has-stickybar .bcd-wa-float {
		bottom: 76px;
	}
}

/* ==========================================================================
   15. Scroll reveal
   Elements are visible by default. They are only hidden once the inline probe
   has confirmed JavaScript is running AND the main script has booted, so a
   failed script can never leave the page blank.
   ========================================================================== */

.bcd-reveal {
	opacity: 1;
	transform: none;
}

html.bcd-js.bcd-ready .bcd-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity .5s var(--bcd-ease), transform .5s var(--bcd-ease);
}

html.bcd-js.bcd-ready .bcd-reveal.is-in {
	opacity: 1;
	transform: none;
}

/* ==========================================================================
   16. Editorial content (single service / blog body)
   ========================================================================== */

.bcd-prose {
	font-size: 1.04rem;
}

.bcd-prose h2 {
	font-size: clamp(1.35rem, 1.2rem + .6vw, 1.7rem);
	margin-top: var(--bcd-s7);
}

.bcd-prose h3 {
	font-size: clamp(1.13rem, 1.05rem + .4vw, 1.32rem);
	margin-top: var(--bcd-s6);
}

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

.bcd-prose ul li::marker {
	color: var(--bcd-blue);
}

.bcd-prose blockquote {
	border-left: 4px solid var(--bcd-gold);
	background: var(--bcd-gold-soft);
	padding: var(--bcd-s4) var(--bcd-s5);
	border-radius: 0 var(--bcd-r-sm) var(--bcd-r-sm) 0;
	color: #5A3D00;
}

.bcd-aside {
	background: var(--bcd-bg-soft);
	border: 1px solid var(--bcd-line);
	border-radius: var(--bcd-r-lg);
	padding: var(--bcd-s5);
	position: sticky;
	top: 100px;
}

.bcd-aside h3 {
	font-size: 1.06rem;
}

.bcd-meta-list {
	list-style: none;
	margin: 0 0 var(--bcd-s4);
	padding: 0;
	display: grid;
	gap: 11px;
}

.bcd-meta-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--bcd-s3);
	margin: 0;
	padding-bottom: 11px;
	border-bottom: 1px dashed var(--bcd-line);
	font-size: .95rem;
}

.bcd-meta-list li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.bcd-meta-list dt,
.bcd-meta-list .k {
	color: var(--bcd-muted);
}

.bcd-meta-list .v {
	font-family: var(--bcd-font-head);
	font-weight: 600;
	color: var(--bcd-ink);
	text-align: right;
}

/* Blog cards */
.bcd-post {
	background: #fff;
	border: 1px solid var(--bcd-line);
	border-radius: var(--bcd-r-lg);
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	box-shadow: var(--bcd-sh-1);
	transition: transform .2s var(--bcd-ease), box-shadow .2s var(--bcd-ease);
}

.bcd-post:hover {
	transform: translateY(-4px);
	box-shadow: var(--bcd-sh-2);
}

.bcd-post img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.bcd-post__body {
	padding: var(--bcd-s5);
	display: flex;
	flex-direction: column;
	flex: 1;
}

.bcd-post__date {
	font-size: .85rem;
	color: var(--bcd-muted);
	margin-bottom: 7px;
}

.bcd-post h3 {
	font-size: 1.1rem;
	margin-bottom: 9px;
}

.bcd-post h3 a {
	color: inherit;
	text-decoration: none;
}

.bcd-post h3 a:hover {
	color: var(--bcd-blue);
}

/* Empty state */
.bcd-empty {
	text-align: center;
	padding: var(--bcd-s7) var(--bcd-s5);
	border: 2px dashed var(--bcd-line);
	border-radius: var(--bcd-r-lg);
	background: var(--bcd-bg-soft);
	color: var(--bcd-muted);
}

.bcd-empty .bcd-ico {
	width: 42px;
	height: 42px;
	color: #B9D4E6;
	margin-bottom: var(--bcd-s3);
}

/* ==========================================================================
   17. Motion & print
   ========================================================================== */

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

	html.bcd-js.bcd-ready .bcd-reveal {
		opacity: 1;
		transform: none;
	}
}

@media print {
	.bcd-header,
	.bcd-topbar,
	.bcd-drawer,
	.bcd-stickybar,
	.bcd-wa-float,
	.bcd-cta,
	.bcd-form {
		display: none !important;
	}

	.bcd-scope {
		font-size: 12pt;
		color: #000;
	}
}

/* ==========================================================================
   18. Small-screen refinements
   ========================================================================== */

@media (max-width: 719px) {
	.bcd-scope {
		font-size: 16px;
	}

	.bcd-section {
		padding-block: var(--bcd-s7);
	}

	.bcd-form {
		padding: var(--bcd-s5) var(--bcd-s4);
	}

	.bcd-cta {
		padding: var(--bcd-s6) var(--bcd-s4);
		border-radius: var(--bcd-r-lg);
	}

	.bcd-hero__card--float {
		position: static;
		margin-top: var(--bcd-s4);
		max-width: none;
	}

	.bcd-btns .bcd-btn {
		flex: 1 1 100%;
	}

	.bcd-topbar__list {
		gap: var(--bcd-s3);
		font-size: .84rem;
	}
}

@media (max-width: 420px) {
	.bcd-scope {
		--bcd-gutter: 16px;
	}

	.bcd-logo__name {
		font-size: 1.1rem;
	}

	.bcd-gallery {
		grid-template-columns: 1fr;
	}
}
