/*
 * Bright Path global components.
 *
 * Design values come from theme.json. This file provides component composition,
 * responsive behavior, and interaction states shared by the editor and front end.
 */

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
	outline: 3px solid var(--wp--preset--color--deep-gold);
	outline-offset: 3px;
}

:where(.wp-element-button, .wp-block-button__link, button, input, select, textarea) {
	transition:
		background-color var(--wp--custom--motion--fast, 150ms) ease,
		border-color var(--wp--custom--motion--fast, 150ms) ease,
		color var(--wp--custom--motion--fast, 150ms) ease,
		box-shadow var(--wp--custom--motion--fast, 150ms) ease,
		transform var(--wp--custom--motion--fast, 150ms) ease;
}

.wp-element-button,
.wp-block-button__link {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	min-height: 44px;
	text-decoration: none;
}

.wp-element-button:hover,
.wp-block-button__link:hover {
	background-color: var(--wp--preset--color--deep-charcoal);
	color: var(--wp--preset--color--white);
	transform: translateY(-1px);
}

.wp-block-button.is-style-brightpath-secondary .wp-block-button__link,
.wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent;
	border: 1px solid var(--wp--preset--color--deep-gold);
	color: var(--wp--preset--color--deep-charcoal);
}

.wp-block-button.is-style-brightpath-secondary .wp-block-button__link:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: var(--wp--preset--color--soft-background);
	border-color: var(--wp--preset--color--deep-charcoal);
	color: var(--wp--preset--color--deep-charcoal);
}

.wp-block-button.is-style-brightpath-icon .wp-block-button__link {
	border-radius: var(--wp--preset--border-radius--pill);
	min-height: 44px;
	min-width: 44px;
	padding: 0.625rem;
}

.brightpath-text-link {
	align-items: center;
	display: inline-flex;
	font-weight: 600;
	gap: 0.4rem;
	min-height: 44px;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.25em;
}

.brightpath-site-shell {
	margin-inline: auto;
	max-width: var(--wp--custom--layout--site-shell-max, 1320px);
	width: 100%;
}

.brightpath-section {
	padding-block: var(--wp--preset--spacing--section);
}

.brightpath-section-heading {
	max-width: 760px;
}

.brightpath-eyebrow {
	color: var(--wp--preset--color--charcoal);
	font-size: var(--wp--preset--font-size--small);
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-bottom: var(--wp--preset--spacing--30);
	text-transform: uppercase;
}

.brightpath-muted {
	color: var(--wp--preset--color--muted-text);
}

.brightpath-whatsapp-float {
	align-items: center;
	background: #168c52;
	border: 2px solid rgba(255, 255, 255, 0.92);
	border-radius: 50%;
	bottom: 1rem;
	box-sizing: border-box;
	box-shadow: 0 12px 34px rgba(10, 72, 42, 0.3);
	color: #fff;
	display: inline-flex;
	height: 48px;
	justify-content: center;
	padding: 0;
	position: fixed;
	right: 1rem;
	text-decoration: none;
	transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
	width: 48px;
	z-index: 99980;
}

.brightpath-whatsapp-float:hover {
	background: #0f7543;
	box-shadow: 0 15px 38px rgba(10, 72, 42, 0.36);
	color: #fff;
	transform: translateY(-2px);
}

.brightpath-whatsapp-float:focus-visible {
	outline: 3px solid var(--wp--preset--color--soft-gold);
	outline-offset: 3px;
}

.brightpath-whatsapp-float__icon {
	align-items: center;
	display: inline-flex;
	height: 28px;
	justify-content: center;
	width: 28px;
}

.brightpath-whatsapp-float__icon svg {
	fill: none;
	height: 26px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
	width: 26px;
}

.brightpath-whatsapp-float__label {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

body:has(.brightpath-consent__panel:not([hidden])) .brightpath-whatsapp-float,
body:has([data-brightpath-flow]) .brightpath-whatsapp-float,
body:has(.wp-block-navigation__responsive-container.is-menu-open) .brightpath-whatsapp-float {
	display: none;
}

body:has(.brightpath-consent__manage:not([hidden])) .brightpath-whatsapp-float {
	bottom: 4.75rem;
}

/* Legal and policy pages */
.brightpath-policy-page {
	background: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--border-neutral);
	border-radius: var(--wp--preset--border-radius--large);
	box-shadow: 0 18px 48px rgba(22, 21, 19, 0.07);
	margin-top: var(--wp--preset--spacing--50);
	padding: clamp(1.5rem, 4vw, 3.75rem);
}

.brightpath-policy-page > :first-child {
	margin-top: 0;
}

.brightpath-policy-page h2 {
	border-top: 1px solid var(--wp--preset--color--border-neutral);
	margin-top: var(--wp--preset--spacing--60);
	padding-top: var(--wp--preset--spacing--50);
}

.brightpath-policy-page :where(p, li) {
	color: var(--wp--preset--color--charcoal);
}

/* Header and navigation */
.wp-block-template-part:has(> .brightpath-header-top) {
	display: contents;
}

.brightpath-header-top {
	margin-block: 0;
	padding-block: 0 !important;
}

.brightpath-site-header {
	background: transparent !important;
	margin-block: 0;
	padding-block: 0 !important;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 100;
}

.brightpath-site-header::before {
	background: rgba(251, 247, 238, 0.97);
	border-bottom: 1px solid var(--wp--preset--color--border-neutral);
	box-shadow: 0 8px 28px rgba(22, 21, 19, 0.05);
	content: "";
	inset-block: 0;
	inset-inline: calc(50% - 50vw);
	pointer-events: none;
	position: absolute;
	z-index: -1;
}

.brightpath-header-contact-block {
	margin-block: 0 !important;
	max-width: none !important;
	width: 100%;
}

.brightpath-contact-strip {
	background: var(--wp--preset--color--deep-charcoal);
	color: var(--wp--preset--color--white);
	font-size: 0.78rem;
	letter-spacing: 0.015em;
	margin-block: 0 !important;
	margin-left: calc(var(--brightpath-site-gutter) * -2) !important;
	max-width: none !important;
	width: calc(100% + (var(--brightpath-site-gutter) * 4));
}

.brightpath-contact-strip__inner {
	align-items: center;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	min-height: 34px;
	padding-inline: calc(var(--brightpath-site-gutter) * 2);
}

.brightpath-contact-strip__status {
	align-items: center;
	display: inline-flex;
	font-weight: 650;
	gap: 0.45rem;
}

.brightpath-contact-strip__status::before {
	background: var(--wp--preset--color--brand-gold);
	border-radius: 50%;
	content: "";
	height: 0.45rem;
	width: 0.45rem;
}

.brightpath-contact-strip__links {
	align-items: center;
	display: flex;
	gap: 1.15rem;
}

.brightpath-contact-strip a {
	color: var(--wp--preset--color--white);
	font-weight: 700;
	text-decoration-color: rgba(255, 255, 255, 0.42);
}

.brightpath-contact-strip a:hover {
	color: var(--wp--preset--color--soft-gold);
}

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

.brightpath-header-inner {
	gap: var(--wp--preset--spacing--30);
	margin-block: 0 !important;
	min-height: 74px;
}

.brightpath-brand {
	align-items: center;
	flex-shrink: 0;
	gap: 0.65rem;
}

.brightpath-logo {
	flex: 0 0 auto;
	line-height: 0;
	margin: 0;
}

.brightpath-logo img {
	display: block;
	height: auto;
	max-height: 58px;
	object-fit: contain;
	width: auto;
}

.brightpath-brand-name {
	font-size: 1rem;
	font-weight: 750;
	letter-spacing: -0.025em;
	line-height: 1.05;
	margin: 0;
	max-width: 145px;
}

.brightpath-brand-name a {
	align-items: center;
	color: var(--wp--preset--color--deep-charcoal);
	display: inline-flex;
	min-height: 44px;
	text-decoration: none;
}

.brightpath-primary-navigation {
	margin-left: auto;
}

.brightpath-mobile-estimate {
	display: none;
}

.brightpath-mobile-contact {
	background: rgba(47, 74, 63, 0.06);
	border: 1px solid rgba(47, 74, 63, 0.34);
	border-radius: var(--wp--preset--border-radius--pill);
	box-shadow: 0 4px 14px rgba(22, 21, 19, 0.06);
	display: none !important;
	flex: 0 0 auto;
	grid-template-columns: repeat(2, auto);
	overflow: hidden;
}

.brightpath-mobile-contact a {
	align-items: center;
	box-sizing: border-box;
	display: inline-flex;
	font-size: 0.72rem;
	gap: 0.32rem;
	justify-content: center;
	min-height: 44px;
	min-width: 44px;
	padding: 0.48rem 0.62rem;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
}

.brightpath-mobile-contact__call {
	background: var(--wp--preset--color--brand-gold);
	color: var(--wp--preset--color--deep-charcoal);
}

.brightpath-mobile-contact__text {
	background: var(--wp--preset--color--warm-cream);
	color: var(--wp--preset--color--deep-sage);
}

.brightpath-mobile-contact a:hover {
	filter: brightness(1.08);
}

.brightpath-mobile-contact a:focus-visible {
	outline: 3px solid var(--wp--preset--color--soft-gold);
	outline-offset: -3px;
}

.brightpath-primary-navigation .wp-block-navigation__container {
	gap: clamp(0.1rem, 0.55vw, 0.55rem);
}

.brightpath-primary-navigation .wp-block-navigation-item__content,
.brightpath-primary-navigation .wp-block-navigation-submenu__toggle,
.brightpath-primary-navigation .wp-block-navigation__responsive-container-open,
.brightpath-primary-navigation .wp-block-navigation__responsive-container-close {
	align-items: center;
	box-sizing: border-box;
	display: inline-flex;
	min-height: 44px;
	padding: 0.5rem 0.4rem;
}

.brightpath-primary-navigation .wp-block-navigation__responsive-container-open,
.brightpath-primary-navigation .wp-block-navigation__responsive-container-close {
	justify-content: center;
	min-width: 44px;
}

.brightpath-primary-navigation .wp-block-navigation-submenu {
	gap: 0 !important;
	position: relative;
}

.brightpath-primary-navigation .wp-block-navigation-submenu__toggle {
	background: transparent;
	border: 0;
	color: var(--wp--preset--color--charcoal);
	font: inherit;
	white-space: nowrap;
}

.brightpath-primary-navigation .wp-block-navigation-submenu > .wp-block-navigation-submenu__toggle svg {
	flex: 0 0 12px;
	height: 12px !important;
	margin-left: auto;
	width: 12px !important;
}

.brightpath-primary-navigation .wp-block-navigation-item__content {
	color: var(--wp--preset--color--charcoal);
	white-space: nowrap;
	text-decoration: none;
}

.brightpath-primary-navigation .current-menu-item > .wp-block-navigation-item__content,
.brightpath-primary-navigation .current-menu-ancestor > .wp-block-navigation-item__content,
.brightpath-primary-navigation .wp-block-navigation-item__content:hover {
	color: var(--wp--preset--color--deep-charcoal);
	text-decoration: underline;
	text-decoration-color: var(--wp--preset--color--brand-gold);
	text-decoration-thickness: 2px;
	text-underline-offset: 0.35em;
}

.brightpath-primary-navigation .wp-block-navigation__submenu-container .current-menu-item > .wp-block-navigation-item__content {
	font-weight: 700;
}

.brightpath-primary-navigation .brightpath-nav-quote > .wp-block-navigation-item__content,
.brightpath-primary-navigation .brightpath-nav-book > .wp-block-navigation-item__content {
	border: 1px solid transparent;
	border-radius: var(--wp--preset--border-radius--medium);
	font-weight: 600;
	justify-content: center;
	padding-inline: 1rem;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.brightpath-primary-navigation .brightpath-nav-quote > .wp-block-navigation-item__content {
	background: var(--wp--preset--color--brand-gold);
	border: 1px solid var(--wp--preset--color--deep-gold);
	color: var(--wp--preset--color--deep-charcoal);
}

.brightpath-primary-navigation .brightpath-nav-book > .wp-block-navigation-item__content {
	background: transparent;
	border-color: rgba(47, 74, 63, 0.48);
	color: var(--wp--preset--color--deep-sage);
}

.brightpath-primary-navigation .brightpath-nav-quote > .wp-block-navigation-item__content:hover,
.brightpath-primary-navigation .brightpath-nav-quote > .wp-block-navigation-item__content:focus-visible {
	background: var(--wp--preset--color--deep-charcoal);
	border-color: var(--wp--preset--color--deep-charcoal);
	color: var(--wp--preset--color--white);
	text-decoration: none;
}

.brightpath-primary-navigation .brightpath-nav-book > .wp-block-navigation-item__content:hover,
.brightpath-primary-navigation .brightpath-nav-book > .wp-block-navigation-item__content:focus-visible {
	background: rgba(47, 74, 63, 0.09);
	border-color: var(--wp--preset--color--deep-sage);
	color: var(--wp--preset--color--deep-charcoal);
	text-decoration: none;
}

.brightpath-primary-navigation .brightpath-nav-quote > .wp-block-navigation-item__content:focus-visible,
.brightpath-primary-navigation .brightpath-nav-book > .wp-block-navigation-item__content:focus-visible {
	outline: 3px solid var(--wp--preset--color--soft-gold);
	outline-offset: 3px;
}

.brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open {
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	background: rgba(251, 247, 238, 0.94) !important;
	color: var(--wp--preset--color--charcoal);
	overflow-y: auto;
	overscroll-behavior-y: contain;
	padding: 1rem var(--brightpath-site-gutter, 20px) 1.25rem;
}

.brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
	right: var(--brightpath-site-gutter, 20px);
	top: 1rem;
}

.brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
	align-items: stretch;
	padding-top: 0;
}

.brightpath-mobile-menu-brand {
	display: none;
}

.brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .brightpath-mobile-menu-brand {
	align-items: center;
	color: var(--wp--preset--color--deep-charcoal);
	display: inline-flex;
	gap: 0.6rem;
	margin-bottom: 0.8rem;
	min-height: 52px;
	text-decoration: none;
	width: fit-content;
}

.brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .brightpath-mobile-menu-brand img {
	display: block;
	height: 50px;
	object-fit: contain;
	width: 36px;
}

.brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .brightpath-mobile-menu-brand span {
	font-size: 1rem;
	font-weight: 750;
	letter-spacing: -0.025em;
	line-height: 1.05;
	max-width: 148px;
}

.brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
	align-items: stretch;
	border-top: 1px solid rgba(22, 21, 19, 0.14);
	gap: 0;
	margin: 0 !important;
	width: 100%;
}

.brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container > .wp-block-navigation-item {
	border-bottom: 1px solid rgba(22, 21, 19, 0.14);
	margin: 0;
	width: 100%;
}

.brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
	font-size: var(--wp--preset--font-size--body-large);
	justify-content: flex-start;
	min-height: 50px;
	padding: 0.65rem 0;
	width: 100%;
}

.brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container {
	background: rgba(197, 149, 43, 0.06);
	border-top: 1px solid rgba(197, 149, 43, 0.22);
	border-left: 0;
	gap: 0;
	margin: 0 0 0.2rem;
	padding: 0 0 0.2rem 0.85rem;
	width: 100%;
}

.brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container > .wp-block-navigation-item {
	border-bottom: 1px solid rgba(22, 21, 19, 0.09);
	margin: 0;
}

.brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container > .wp-block-navigation-item:last-child {
	border-bottom: 0;
}

.brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	font-size: var(--wp--preset--font-size--medium);
	min-height: 44px;
	padding-block: 0.4rem;
}

.brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .brightpath-nav-quote > .wp-block-navigation-item__content,
.brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .brightpath-nav-book > .wp-block-navigation-item__content {
	justify-content: center;
	padding: 0.75rem 1rem;
}

.brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .brightpath-nav-quote > .wp-block-navigation-item__content {
	margin-top: 0.9rem;
}

.brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .brightpath-nav-book > .wp-block-navigation-item__content {
	margin-top: 0.45rem;
}

.brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container > .brightpath-nav-quote,
.brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container > .brightpath-nav-book {
	border-bottom: 0;
}

.js .brightpath-primary-navigation .wp-block-navigation-submenu > .wp-block-navigation-submenu__toggle[aria-expanded="false"] + .wp-block-navigation__submenu-container {
	display: none !important;
}

.js .brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu > .wp-block-navigation-submenu__toggle[aria-expanded="true"] + .wp-block-navigation__submenu-container {
	display: block !important;
	height: auto;
	opacity: 1;
	visibility: visible;
}

/* Cards */
.brightpath-card {
	background: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--border-neutral);
	border-radius: var(--wp--preset--border-radius--large);
	box-shadow: var(--wp--custom--shadow--soft);
	height: 100%;
	overflow: hidden;
	padding: var(--wp--preset--spacing--70);
}

.brightpath-card > :first-child {
	margin-top: 0;
}

.brightpath-card > :last-child {
	margin-bottom: 0;
}

.brightpath-card--service,
.brightpath-card--trust,
.brightpath-card--location {
	box-shadow: none;
}

.brightpath-card--service {
	border-top: 3px solid var(--wp--preset--color--brand-gold);
}

.brightpath-card--testimonial {
	background: var(--wp--preset--color--soft-background);
}

.brightpath-card--testimonial blockquote {
	border: 0;
	margin: 0;
	padding: 0;
}

.brightpath-card--blog,
.brightpath-card--gallery {
	padding: 0;
}

.brightpath-card--blog > :not(.wp-block-post-featured-image),
.brightpath-card--gallery > :not(.wp-block-image) {
	margin-inline: var(--wp--preset--spacing--60);
}

.brightpath-card--blog > :last-child,
.brightpath-card--gallery > :last-child {
	margin-bottom: var(--wp--preset--spacing--60);
}

.brightpath-card--blog img,
.brightpath-card--gallery img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	width: 100%;
}

.brightpath-card--trust {
	background: var(--wp--preset--color--soft-background);
	text-align: center;
}

.brightpath-card--location {
	border-left: 3px solid var(--wp--preset--color--brand-gold);
}

.brightpath-card-grid {
	align-items: stretch;
}

.brightpath-card-grid > .wp-block-column {
	display: flex;
}

.brightpath-card-grid > .wp-block-column > .wp-block-group {
	width: 100%;
}

/* Form controls and notices */
:where(input:not([type="checkbox"], [type="radio"], [type="submit"]), select, textarea) {
	background: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--border-neutral);
	border-radius: var(--wp--preset--border-radius--medium);
	color: var(--wp--preset--color--charcoal);
	font: inherit;
	min-height: 48px;
	padding: 0.75rem 0.875rem;
	width: 100%;
}

textarea {
	min-height: 144px;
	resize: vertical;
}

:where(input, select, textarea)::placeholder {
	color: var(--wp--preset--color--muted-text);
	opacity: 1;
}

:where(input:not([type="checkbox"], [type="radio"]), select, textarea):hover {
	border-color: var(--wp--preset--color--muted-text);
}

:where(input:not([type="checkbox"], [type="radio"]), select, textarea):focus {
	border-color: var(--wp--preset--color--deep-gold);
	box-shadow: 0 0 0 3px rgba(201, 151, 50, 0.22);
	outline: 0;
}

:where(input[type="checkbox"], input[type="radio"]) {
	accent-color: var(--wp--preset--color--deep-gold);
	height: 1.25rem;
	margin: 0;
	min-width: 1.25rem;
	width: 1.25rem;
}

.brightpath-form-demo {
	display: grid;
	gap: var(--wp--preset--spacing--50);
}

.brightpath-form-row {
	display: grid;
	gap: var(--wp--preset--spacing--50);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.brightpath-field {
	display: grid;
	gap: var(--wp--preset--spacing--20);
}

.brightpath-field label,
.brightpath-fieldset legend {
	font-weight: 600;
}

.brightpath-choice {
	align-items: center;
	display: flex;
	gap: var(--wp--preset--spacing--30);
	min-height: 44px;
}

.brightpath-field-error {
	color: var(--wp--preset--color--error);
	font-size: var(--wp--preset--font-size--small);
	font-weight: 500;
	margin: 0;
}

[aria-invalid="true"] {
	border-color: var(--wp--preset--color--error) !important;
}

.brightpath-notice {
	border: 1px solid currentColor;
	border-left-width: 4px;
	border-radius: var(--wp--preset--border-radius--medium);
	padding: var(--wp--preset--spacing--50) var(--wp--preset--spacing--60);
}

.brightpath-notice + .brightpath-notice {
	margin-top: var(--wp--preset--spacing--40);
}

.brightpath-notice--success {
	background: #edf8f1;
	color: var(--wp--preset--color--success);
}

.brightpath-notice--error {
	background: #fff1f0;
	color: var(--wp--preset--color--error);
}

.brightpath-notice--warning {
	background: #fff7e8;
	border-color: var(--wp--preset--color--warning);
	color: var(--wp--preset--color--charcoal);
}

.brightpath-notice--info {
	background: var(--wp--preset--color--soft-background);
	color: var(--wp--preset--color--charcoal);
}

.brightpath-notice__icon {
	align-items: center;
	border: 1px solid currentColor;
	border-radius: var(--wp--preset--border-radius--pill);
	display: inline-flex;
	flex: 0 0 1.5rem;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 700;
	height: 1.5rem;
	justify-content: center;
	line-height: 1;
	margin-right: var(--wp--preset--spacing--20);
	vertical-align: text-bottom;
	width: 1.5rem;
}

.brightpath-estimate-notice {
	align-items: flex-start;
	color: var(--wp--preset--color--muted-text);
	display: flex;
	font-size: var(--wp--preset--font-size--small);
	gap: var(--wp--preset--spacing--20);
	line-height: 1.55;
	margin-top: var(--wp--preset--spacing--20);
}

.brightpath-estimate-notice .brightpath-notice__icon {
	color: var(--wp--preset--color--deep-gold);
	margin-right: 0;
}

/* Patterns and supporting components */
.brightpath-image-placeholder img {
	aspect-ratio: 4 / 3;
	border-radius: var(--wp--preset--border-radius--large);
	object-fit: cover;
	width: 100%;
}

.brightpath-trust-strip {
	border-block: 1px solid var(--wp--preset--color--border-neutral);
}

.brightpath-cta-banner {
	border-radius: var(--wp--preset--border-radius--large);
	overflow: hidden;
}

.brightpath-cta-banner .wp-block-button__link.has-white-background-color:hover {
	background: var(--wp--preset--color--soft-background);
	color: var(--wp--preset--color--deep-charcoal);
}

.brightpath-faq .wp-block-details {
	border-bottom: 1px solid var(--wp--preset--color--border-neutral);
	margin: 0;
	padding-block: var(--wp--preset--spacing--50);
}

.brightpath-faq .wp-block-details summary {
	cursor: pointer;
	font-family: var(--wp--preset--font-family--heading);
	font-size: var(--wp--preset--font-size--h4);
	font-weight: 600;
	min-height: 44px;
	padding-block: 0.4rem;
}

.brightpath-contact-panel {
	border-left: 4px solid var(--wp--preset--color--brand-gold);
}

/* Homepage */
.brightpath-homepage-hero {
	padding-top: clamp(4rem, 3rem + 3vw, 7rem);
}

.brightpath-homepage-hero h1 {
	max-width: 12ch;
}

.brightpath-homepage-media {
	margin-block: 0;
}

.brightpath-homepage-media img {
	box-shadow: var(--wp--custom--shadow--soft);
	min-height: clamp(320px, 42vw, 580px);
}

.brightpath-hero-trust {
	color: var(--wp--preset--color--charcoal);
	font-weight: 500;
	letter-spacing: 0.01em;
	margin-top: var(--wp--preset--spacing--60);
}

.brightpath-hero-trust span {
	color: var(--wp--preset--color--deep-gold);
	padding-inline: 0.35em;
}

.brightpath-service-grid + .brightpath-service-grid {
	margin-top: var(--wp--preset--spacing--60);
}

.brightpath-service-icon,
.brightpath-trust-icon {
	align-items: center;
	background: var(--wp--preset--color--soft-gold);
	border-radius: var(--wp--preset--border-radius--pill);
	color: var(--wp--preset--color--deep-charcoal);
	display: inline-flex;
	font-size: 1.125rem;
	height: 2.75rem;
	justify-content: center;
	margin: 0;
	width: 2.75rem;
}

.brightpath-trust-icon {
	margin-inline: auto;
}

.brightpath-card--trust {
	padding: var(--wp--preset--spacing--50);
}

.brightpath-card--trust .has-h-4-font-size {
	font-size: var(--wp--preset--font-size--body);
	line-height: 1.4;
}

.brightpath-benefit-list {
	display: grid;
	gap: var(--wp--preset--spacing--40);
	list-style: none;
	padding-left: 0;
}

.brightpath-benefit-list li {
	padding-left: 2rem;
	position: relative;
}

.brightpath-benefit-list li::before {
	color: var(--wp--preset--color--deep-gold);
	content: "✓";
	font-weight: 700;
	left: 0;
	position: absolute;
	top: 0;
}

.brightpath-step-card {
	box-shadow: none;
}

.brightpath-step-number {
	align-items: center;
	background: var(--wp--preset--color--brand-gold);
	border-radius: var(--wp--preset--border-radius--pill);
	color: var(--wp--preset--color--deep-charcoal);
	display: inline-flex;
	font-family: var(--wp--preset--font-family--heading);
	font-size: var(--wp--preset--font-size--h4);
	font-weight: 700;
	height: 3rem;
	justify-content: center;
	margin: 0;
	width: 3rem;
}

.brightpath-offer-panel {
	border-radius: var(--wp--preset--border-radius--large);
	overflow: hidden;
	position: relative;
}

.brightpath-offer-panel::before {
	background: var(--wp--preset--color--brand-gold);
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.brightpath-placeholder-label {
	color: var(--wp--preset--color--charcoal);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.brightpath-star-rating {
	color: var(--wp--preset--color--deep-gold);
	letter-spacing: 0.12em;
}

.brightpath-location-list {
	display: grid;
	gap: var(--wp--preset--spacing--30);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.brightpath-location-list li {
	background: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--border-neutral);
	border-radius: var(--wp--preset--border-radius--medium);
	font-weight: 600;
	padding: var(--wp--preset--spacing--40);
}

.brightpath-media-card {
	position: relative;
}

.brightpath-media-card .wp-block-image {
	margin: 0;
}

.brightpath-media-label {
	background: var(--wp--preset--color--deep-charcoal);
	border-radius: var(--wp--preset--border-radius--pill);
	bottom: var(--wp--preset--spacing--40);
	color: var(--wp--preset--color--white);
	font-weight: 600;
	left: var(--wp--preset--spacing--40);
	margin: 0;
	padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--40);
	position: absolute;
}

.brightpath-blog-placeholders {
	background: var(--wp--preset--color--soft-background);
	border: 1px dashed var(--wp--preset--color--border-neutral);
	border-radius: var(--wp--preset--border-radius--large);
	padding: var(--wp--preset--spacing--60);
}

/* Global footer */
.wp-block-template-part:has(.brightpath-footer) {
	margin-block-start: 0 !important;
}

.brightpath-footer {
	margin: 0 calc(-1 * var(--brightpath-site-gutter, 20px)) !important;
	padding:
		clamp(4rem, 7vw, 7rem)
		var(--brightpath-site-gutter, 20px)
		var(--wp--preset--spacing--50) !important;
}

.brightpath-footer .brightpath-site-shell {
	margin-inline: auto !important;
	max-width: 1380px;
	width: calc(100% - 2 * clamp(1.25rem, 4vw, 4rem));
}

.brightpath-footer-columns {
	align-items: flex-start;
	gap: clamp(2.5rem, 5vw, 5rem) !important;
	margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.brightpath-footer a {
	color: var(--wp--preset--color--white);
}

.brightpath-footer a:hover {
	color: var(--wp--preset--color--soft-gold);
}

.brightpath-footer-brand {
	margin-bottom: var(--wp--preset--spacing--70);
}

.brightpath-footer .brightpath-logo {
	margin-bottom: 0;
}

.brightpath-footer .brightpath-logo img {
	max-height: 68px;
}

.brightpath-footer .brightpath-brand-name {
	font-size: 1.2rem;
	letter-spacing: -0.03em;
	max-width: 175px;
}

.brightpath-footer .brightpath-brand-name a {
	color: var(--wp--preset--color--white);
}

.brightpath-footer .brightpath-brand-name a:hover {
	color: var(--wp--preset--color--soft-gold);
}

.brightpath-footer-statement {
	font-size: clamp(2rem, 3.5vw, 3.75rem);
	letter-spacing: -0.045em;
	line-height: 1.02;
	margin-bottom: var(--wp--preset--spacing--50);
	max-width: 9ch;
}

.brightpath-footer-description {
	color: rgba(255, 255, 255, 0.68) !important;
	line-height: 1.65;
	max-width: 520px;
}

.brightpath-footer-actions {
	margin-top: var(--wp--preset--spacing--70);
}

.brightpath-footer .wp-block-button.is-style-brightpath-secondary .wp-block-button__link {
	border-color: rgba(255, 255, 255, 0.55);
	color: var(--wp--preset--color--white);
}

.brightpath-footer .wp-block-button.is-style-brightpath-secondary .wp-block-button__link:hover {
	background: var(--wp--preset--color--white);
	color: var(--wp--preset--color--deep-charcoal);
}

.brightpath-footer-label {
	font-size: var(--wp--preset--font-size--small);
	font-weight: 700;
	letter-spacing: 0.12em;
	margin-bottom: var(--wp--preset--spacing--60);
	text-transform: uppercase;
}

.brightpath-footer-navigation {
	gap: 0 !important;
}

.brightpath-footer .wp-block-navigation-item__content {
	align-items: center;
	color: rgba(255, 255, 255, 0.82);
	display: inline-flex;
	min-height: 44px;
	padding-block: 0.3rem;
	text-decoration: none;
}

.brightpath-footer .wp-block-navigation-item__content:hover {
	color: var(--wp--preset--color--soft-gold);
	text-decoration: underline;
	text-underline-offset: 0.3em;
}

.brightpath-footer-region h2 {
	font-size: clamp(1.65rem, 2.4vw, 2.6rem);
	letter-spacing: -0.035em;
	line-height: 1.1;
	margin-bottom: var(--wp--preset--spacing--50);
}

.brightpath-footer-region > p {
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.65;
}

.brightpath-footer-area-link {
	align-items: center;
	display: inline-flex;
	font-weight: 700;
	gap: 0.5rem;
	min-height: 44px;
	text-decoration-color: var(--wp--preset--color--brand-gold);
	text-underline-offset: 0.3em;
}

.brightpath-footer-help {
	border-left: 2px solid var(--wp--preset--color--brand-gold);
	margin-top: var(--wp--preset--spacing--70);
	padding-left: var(--wp--preset--spacing--50);
}

.brightpath-footer-help p {
	color: rgba(255, 255, 255, 0.72);
	font-size: var(--wp--preset--font-size--small);
	line-height: 1.55;
	margin-bottom: var(--wp--preset--spacing--20);
}

.brightpath-footer-help .wp-block-shortcode,
.brightpath-footer-help .brightpath-public-contact {
	margin: 0;
}

.brightpath-footer-help a {
	font-weight: 700;
}

.brightpath-footer-meta {
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	margin-block: 0 !important;
	padding-top: var(--wp--preset--spacing--60);
}

.brightpath-footer-meta > p {
	color: rgba(255, 255, 255, 0.58) !important;
	margin-bottom: 0;
}

.brightpath-footer-legal .wp-block-navigation-item__content {
	color: rgba(255, 255, 255, 0.7);
}

/* Internal style guide */
.brightpath-style-guide__swatch {
	border: 1px solid var(--wp--preset--color--border-neutral);
	border-radius: var(--wp--preset--border-radius--medium);
	min-height: 96px;
	padding: var(--wp--preset--spacing--40);
}

.brightpath-style-guide__section {
	border-bottom: 1px solid var(--wp--preset--color--border-neutral);
	padding-block: var(--wp--preset--spacing--90);
}

@media (max-width: 1100px) {
	.brightpath-header-top {
		display: none;
	}

	.brightpath-site-header {
		isolation: isolate;
		position: sticky;
		top: 0;
		z-index: 1000;
	}

	.brightpath-header-inner {
		gap: clamp(0.4rem, 2vw, 0.75rem);
		min-height: 64px;
	}

	.brightpath-mobile-contact {
		display: none !important;
		margin: 0 !important;
		max-width: max-content !important;
		width: auto !important;
	}

	.brightpath-mobile-estimate {
		align-items: center;
		background: var(--wp--preset--color--brand-gold);
		border-radius: var(--wp--preset--border-radius--medium);
		color: var(--wp--preset--color--deep-charcoal);
		display: inline-flex;
		font-size: 0.78rem;
		font-weight: 750;
		justify-content: center;
		margin-left: auto;
		min-height: 42px;
		padding: 0.45rem 0.8rem;
		text-decoration: none;
	}

	.brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .brightpath-mobile-menu-contact {
		display: grid !important;
		margin-top: 1rem !important;
		max-width: none !important;
		width: 100% !important;
	}

	.brightpath-primary-navigation {
		margin-left: 0;
	}

	.brightpath-primary-navigation .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
		display: none;
	}

	.brightpath-primary-navigation .wp-block-navigation__responsive-container-open:not(.always-shown) {
		display: flex;
	}

	.js .brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu {
		display: block;
		position: relative;
		width: 100%;
	}

	.js .brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu > .wp-block-navigation-item__content {
		padding-right: 2.5rem;
		pointer-events: none;
		width: 100%;
	}

	.js .brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu > .wp-block-navigation-submenu__toggle {
		display: flex !important;
		height: 52px;
		inset: 0 0 auto;
		justify-content: flex-end;
		padding: 0 0.25rem;
		position: absolute;
		width: 100%;
		z-index: 2;
	}

	.js .brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu > .wp-block-navigation-submenu__toggle[aria-expanded="false"] svg {
		transform: rotate(0);
	}

	.js .brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu > .wp-block-navigation-submenu__toggle[aria-expanded="true"] svg {
		transform: rotate(180deg);
	}

	.js .brightpath-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu > .wp-block-navigation__submenu-container[hidden] {
		display: none !important;
	}
}

@media (min-width: 782px) {
	.brightpath-trust-grid {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.brightpath-trust-grid > .wp-block-column {
		width: auto;
	}
}

@media (min-width: 1101px) {
	.brightpath-primary-navigation .wp-block-navigation__responsive-container-open {
		display: none !important;
	}

	.brightpath-primary-navigation .wp-block-navigation__responsive-container:not(.is-menu-open) {
		display: flex !important;
	}

	.brightpath-primary-navigation .wp-block-navigation-submenu {
		align-self: center;
		height: 44px;
	}

	.brightpath-primary-navigation .wp-block-navigation-submenu > .wp-block-navigation-item__content {
		padding-right: 0.9rem;
		pointer-events: none;
	}

	.brightpath-primary-navigation .wp-block-navigation-submenu > .wp-block-navigation-submenu__toggle {
		height: 44px;
		inset: 50% auto auto 0;
		justify-content: flex-end;
		padding: 0;
		position: absolute;
		transform: translateY(-50%);
		width: 100%;
		z-index: 2;
	}

	.brightpath-primary-navigation .wp-block-navigation-submenu:hover > .wp-block-navigation-item__content,
	.brightpath-primary-navigation .wp-block-navigation-submenu:focus-within > .wp-block-navigation-item__content {
		color: var(--wp--preset--color--deep-charcoal);
		text-decoration: underline;
		text-decoration-color: var(--wp--preset--color--brand-gold);
		text-decoration-thickness: 2px;
		text-underline-offset: 0.35em;
	}

	.brightpath-primary-navigation .wp-block-navigation__submenu-container {
		background-color: var(--wp--preset--color--deep-charcoal) !important;
		border: 0;
		border-top: 3px solid var(--wp--preset--color--brand-gold);
		border-radius: 0 0 6px 6px;
		box-sizing: border-box;
		box-shadow: 0 22px 44px rgba(22, 21, 19, 0.22);
		display: grid !important;
		grid-template-columns: minmax(0, 1fr);
		left: -70px !important;
		max-height: calc(100vh - 9rem);
		max-height: calc(100dvh - 9rem);
		min-width: 300px !important;
		overscroll-behavior: contain;
		overflow-x: hidden;
		overflow-y: auto;
		padding: 0.55rem;
		right: auto !important;
		scrollbar-gutter: stable;
		top: 44px !important;
		z-index: 101;
	}

	.js .brightpath-primary-navigation .wp-block-navigation-submenu > .wp-block-navigation__submenu-container[hidden] {
		display: none !important;
	}

	.js .brightpath-primary-navigation .wp-block-navigation-submenu > .wp-block-navigation-submenu__toggle[aria-expanded="true"] + .wp-block-navigation__submenu-container {
		height: auto;
		opacity: 1;
		overflow-x: hidden;
		overflow-y: auto;
		visibility: visible;
		width: auto;
	}

	.brightpath-primary-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
		color: rgba(255, 255, 255, 0.82);
		border-radius: 0;
		min-height: 44px;
		padding: 0.65rem 0.8rem;
		white-space: normal;
	}

	.brightpath-primary-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover {
		background: rgba(255, 255, 255, 0.07);
		color: var(--wp--preset--color--soft-gold);
		text-decoration: none;
	}

	.brightpath-primary-navigation .wp-block-navigation__submenu-container .current-menu-item > .wp-block-navigation-item__content {
		background: rgba(197, 149, 43, 0.16);
		color: var(--wp--preset--color--soft-gold);
		font-weight: 700;
		text-decoration: none;
	}

	.brightpath-primary-navigation .brightpath-submenu-overview {
		border-bottom: 1px solid rgba(255, 255, 255, 0.14);
		grid-column: 1 / -1;
		margin-bottom: 0.15rem;
		padding-bottom: 0.2rem;
	}

	.brightpath-primary-navigation .brightpath-submenu-overview > .wp-block-navigation-item__content {
		color: var(--wp--preset--color--soft-gold);
		font-weight: 700;
	}

	.brightpath-primary-navigation .brightpath-services-menu > .wp-block-navigation__submenu-container {
		grid-template-columns: minmax(0, 1fr);
		left: -80px !important;
		min-width: 320px !important;
	}
}

@media (max-width: 781px) {
	.brightpath-whatsapp-float {
		bottom: calc(0.8rem + env(safe-area-inset-bottom, 0px));
		height: 46px;
		right: 0.8rem;
		width: 46px;
	}

	body:has(.brightpath-consent__manage:not([hidden])) .brightpath-whatsapp-float {
		bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
	}

	.admin-bar .brightpath-site-header {
		top: 46px;
	}

	.brightpath-header-inner {
		min-height: 64px;
	}

	.brightpath-header-inner {
		gap: 0.42rem;
	}

	.brightpath-logo img {
		max-height: 42px;
		max-width: 40px;
	}

	.brightpath-header-brand {
		gap: 0.5rem;
	}

	.brightpath-header-brand .brightpath-brand-name {
		font-size: 0.9rem;
		max-width: 128px;
	}

	body:has(.brightpath-quote-modal:not([hidden])) .brightpath-mobile-contact {
		visibility: hidden;
	}

	body:has(.brightpath-quote-modal:not([hidden])) .brightpath-mobile-estimate {
		visibility: hidden;
	}

	.bp-flow-errors,
	.brightpath-form-errors,
	.brightpath-quote-modal__errors {
		scroll-margin-top: 5.25rem;
	}

	.brightpath-footer {
		padding-top: var(--wp--preset--spacing--90) !important;
	}

	.brightpath-footer-columns {
		display: grid !important;
		gap: var(--wp--preset--spacing--80) var(--wp--preset--spacing--60) !important;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.brightpath-footer-columns > .wp-block-column {
		width: auto !important;
	}

	.brightpath-footer-intro {
		grid-column: 1 / -1;
	}

	.brightpath-footer-brand {
		margin-bottom: var(--wp--preset--spacing--50);
	}

	.brightpath-footer .brightpath-logo img {
		max-height: 60px;
		max-width: 56px;
	}

	.brightpath-footer-statement {
		font-size: clamp(2.25rem, 10vw, 3.25rem);
		max-width: 11ch;
	}

	.brightpath-footer-description {
		max-width: 560px;
	}

	.brightpath-footer-help {
		margin-top: var(--wp--preset--spacing--50);
	}

	.brightpath-card {
		padding: var(--wp--preset--spacing--60);
	}

	.brightpath-homepage-hero h1 {
		max-width: 14ch;
	}

	.brightpath-homepage-media {
		margin-top: var(--wp--preset--spacing--60);
	}

	.brightpath-homepage-media img {
		min-height: 300px;
	}

	.brightpath-location-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.brightpath-header-brand .brightpath-brand-name {
		display: none;
	}

	.brightpath-contact-strip__inner {
		min-height: 32px;
	}

	.brightpath-contact-strip__email {
		display: none;
	}

	.brightpath-contact-strip__links {
		gap: 0.6rem;
	}

	.brightpath-offer-panel,
	.brightpath-final-cta > .wp-block-group {
		padding-left: var(--wp--custom--layout--gutter-mobile, 20px) !important;
		padding-right: var(--wp--custom--layout--gutter-mobile, 20px) !important;
	}

	.brightpath-homepage .wp-block-buttons {
		align-items: stretch;
		flex-direction: column;
	}

	.brightpath-homepage .wp-block-button,
	.brightpath-homepage .wp-block-button__link {
		width: 100%;
	}

	.brightpath-footer-columns {
		gap: var(--wp--preset--spacing--70) !important;
		grid-template-columns: minmax(0, 1fr);
	}

	.brightpath-footer-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.brightpath-footer-actions .wp-block-button,
	.brightpath-footer-actions .wp-block-button__link {
		width: 100%;
	}

	.brightpath-footer-label {
		margin-bottom: var(--wp--preset--spacing--40);
	}

	.brightpath-footer-region h2 {
		font-size: 1.45rem;
	}

	.brightpath-footer-region > p,
	.brightpath-footer-help {
		font-size: 0.82rem;
	}

	.brightpath-footer-meta {
		align-items: flex-start;
		gap: var(--wp--preset--spacing--30);
	}

	.brightpath-footer-legal .wp-block-navigation__container {
		gap: var(--wp--preset--spacing--40);
	}
}

@media (max-width: 340px) {
	.brightpath-mobile-contact a {
		min-width: 44px;
		padding-inline: 0.4rem;
	}

	.brightpath-mobile-contact a strong {
		display: none;
	}
}

/* Customer protections and the optional owner-approved service guarantee. */
.bp-service-commitment-shortcode {
	margin-block: 0 !important;
	max-width: none !important;
}

.bp-commitment {
	background:
		radial-gradient(circle at 88% 4%, rgb(201 151 50 / 16%), transparent 28rem),
		var(--wp--preset--color--soft-background, #f7f4ed);
	color: var(--wp--preset--color--deep-charcoal, #161513);
	padding: clamp(4.5rem, 8vw, 7.5rem) clamp(1.25rem, 4vw, 3rem);
}

.bp-commitment__shell {
	margin-inline: auto;
	max-width: 1240px;
}

.bp-commitment__heading {
	align-items: end;
	display: grid;
	gap: clamp(1.5rem, 4vw, 4rem);
	grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
	margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.bp-commitment__heading h2 {
	font-size: clamp(2.25rem, 5vw, 4.75rem);
	letter-spacing: -0.045em;
	line-height: 0.98;
	margin: 0;
	max-width: 15ch;
}

.bp-commitment__heading > p {
	color: var(--wp--preset--color--charcoal, #4a463e);
	font-size: clamp(1rem, 1.5vw, 1.18rem);
	line-height: 1.7;
	margin: 0;
}

.bp-commitment__kicker {
	color: var(--wp--preset--color--deep-gold, #966a17);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	margin: 0 0 1rem;
	text-transform: uppercase;
}

.bp-commitment__grid {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	background: rgb(22 21 19 / 14%);
	border: 1px solid rgb(22 21 19 / 14%);
}

.bp-commitment__grid article {
	background: #fff;
	min-width: 0;
	padding: clamp(1.5rem, 3vw, 2.35rem);
}

.bp-commitment__grid article > span {
	color: var(--wp--preset--color--deep-gold, #966a17);
	display: block;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	margin-bottom: clamp(2.75rem, 5vw, 4.75rem);
}

.bp-commitment__grid h3 {
	font-size: clamp(1.2rem, 2vw, 1.55rem);
	line-height: 1.15;
	margin: 0 0 0.85rem;
}

.bp-commitment__grid p {
	color: var(--wp--preset--color--charcoal, #4a463e);
	font-size: 0.94rem;
	line-height: 1.65;
	margin: 0;
}

.bp-commitment__guarantee {
	background: var(--wp--preset--color--deep-sage, #2f4a3f);
	color: #fff;
	display: grid;
	gap: clamp(2rem, 6vw, 6rem);
	grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
	margin-top: clamp(2rem, 4vw, 3rem);
	padding: clamp(2rem, 5vw, 4rem);
}

.bp-commitment__guarantee h3 {
	color: #fff;
	font-size: clamp(1.75rem, 3vw, 3rem);
	margin: 0 0 1rem;
}

.bp-commitment__guarantee .bp-commitment__kicker {
	color: var(--wp--preset--color--soft-gold, #e6c774);
}

.bp-commitment__promise,
.bp-commitment__conditions {
	line-height: 1.7;
	margin: 0;
}

.bp-commitment__conditions {
	color: rgb(255 255 255 / 76%);
	font-size: 0.9rem;
	margin-top: 1rem;
}

.bp-commitment__guarantee dl {
	margin: 0;
}

.bp-commitment__guarantee dl div {
	border-top: 1px solid rgb(255 255 255 / 24%);
	display: grid;
	gap: 1rem;
	grid-template-columns: 8rem minmax(0, 1fr);
	padding: 1rem 0;
}

.bp-commitment__guarantee dt {
	color: var(--wp--preset--color--soft-gold, #e6c774);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bp-commitment__guarantee dd {
	line-height: 1.55;
	margin: 0;
}

.bp-commitment__support {
	align-items: center;
	border-bottom: 1px solid rgb(22 21 19 / 18%);
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	padding: clamp(1.5rem, 3vw, 2.25rem) 0;
}

.bp-commitment__support > div:first-child {
	display: grid;
	gap: 0.3rem;
}

.bp-commitment__support strong {
	font-size: 1.08rem;
}

.bp-commitment__support span {
	color: var(--wp--preset--color--charcoal, #4a463e);
	font-size: 0.92rem;
}

.bp-commitment__support > div:last-child {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	gap: 1.25rem;
}

.bp-commitment__support a {
	color: var(--wp--preset--color--deep-charcoal, #161513);
	font-size: 0.86rem;
	font-weight: 800;
	text-underline-offset: 0.25em;
}

.bp-commitment__support .bp-commitment__button {
	background: var(--wp--preset--color--deep-charcoal, #161513);
	color: #fff;
	padding: 0.9rem 1.2rem;
	text-decoration: none;
}

.bp-commitment__support .bp-commitment__button:hover,
.bp-commitment__support .bp-commitment__button:focus-visible {
	background: var(--wp--preset--color--deep-sage, #2f4a3f);
}

@media (max-width: 960px) {
	.bp-commitment__heading,
	.bp-commitment__guarantee {
		grid-template-columns: 1fr;
	}

	.bp-commitment__heading > p {
		max-width: 44rem;
	}

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

@media (max-width: 640px) {
	.bp-commitment__grid {
		grid-template-columns: 1fr;
	}

	.bp-commitment__grid article > span {
		margin-bottom: 2rem;
	}

	.bp-commitment__guarantee dl div {
		grid-template-columns: 1fr;
		gap: 0.35rem;
	}

	.bp-commitment__support,
	.bp-commitment__support > div:last-child {
		align-items: stretch;
		flex-direction: column;
	}

	.bp-commitment__support .bp-commitment__button {
		text-align: center;
	}
}

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