/**
 * BRO Electrical — Garden & Outdoor Electrics (page-garden-outdoor-electrics.php).
 * New page. Five genuine photographs, used deliberately and not evenly
 * — the outside-socket photo is intentionally a smaller supporting
 * visual, not a major section image. No reviews section (no verified,
 * genuinely on-topic garden/outdoor review currently exists in the
 * shared testimonial source — see PHP comment).
 */

.bro-goe-page section {
	padding: var(--bro-section-spacing) 0;
}

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

.bro-goe-hero {
	position: relative;
	min-height: calc(100svh - var(--bro-header-height));
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: var(--bro-charcoal);
	padding: 0;
}

.bro-goe-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.bro-goe-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Y biased to 57% — measured from the actual source photo's
	   luminance profile: the illuminated building/lighting band peaks
	   at roughly 46-62% of the frame height (dark sky above, patio
	   shadow below), not visually centred at 50% as first assumed. */
	object-position: 50% 57%;
	display: block;
}

.bro-goe-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(20, 23, 26, 0.74) 0%, rgba(20, 23, 26, 0.34) 48%, rgba(20, 23, 26, 0.1) 78%),
		linear-gradient(0deg, rgba(20, 23, 26, 0.82) 0%, rgba(20, 23, 26, 0.24) 42%, rgba(20, 23, 26, 0.06) 65%);
}

.bro-goe-hero__content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--bro-max-width);
	margin: 0 auto;
	padding: calc(var(--bro-section-spacing) * 0.6) var(--bro-gutter) var(--bro-section-spacing);
}

.bro-goe-hero__heading {
	font-size: var(--bro-text-hero);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--bro-white);
	margin: 0 0 1.5rem;
	max-width: 18ch;
}

.bro-goe-hero__lead {
	font-size: var(--bro-text-lg);
	font-weight: 600;
	line-height: 1.5;
	color: var(--bro-white);
	max-width: 48ch;
	margin: 0 0 1rem;
}

.bro-goe-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.75rem;
}

.bro-goe-hero__actions .bro-btn--ghost {
	color: var(--bro-text-muted-on-dark);
	border-color: rgba(245, 242, 236, 0.35);
}

@media (hover: hover) and (pointer: fine) {
	.bro-goe-hero__actions .bro-btn--ghost:hover,
	.bro-goe-hero__actions .bro-btn--ghost:focus-visible {
		color: var(--bro-white);
	}
}

@media (max-width: 640px) {
	.bro-goe-hero {
		min-height: 100svh;
	}

	.bro-goe-hero__media img {
		object-position: 50% 57%;
	}

	.bro-goe-hero__overlay {
		background:
			linear-gradient(0deg, rgba(20, 23, 26, 0.9) 0%, rgba(20, 23, 26, 0.5) 32%, rgba(20, 23, 26, 0.12) 60%),
			linear-gradient(180deg, rgba(20, 23, 26, 0.3) 0%, rgba(20, 23, 26, 0) 25%);
	}

	.bro-goe-hero__content {
		padding: 2rem var(--bro-gutter) 2.75rem;
	}

	.bro-goe-hero__heading {
		max-width: none;
	}

	.bro-goe-hero__actions {
		flex-direction: column;
	}

	.bro-goe-hero__actions .bro-btn {
		width: 100%;
		white-space: normal;
		text-align: center;
	}
}

/* ---- Shared reveal stagger ---- */

.bro-goe-page .bro-eyebrow.bro-reveal-fade {
	transition-delay: 0ms;
}

.bro-goe-page h2.bro-reveal-fade {
	transition-delay: 90ms;
}

.bro-goe-page .bro-reveal-fade[data-reveal="body"] {
	transition-delay: 170ms;
}

.bro-goe-page .bro-reveal-fade[data-reveal="extra"] {
	transition-delay: 240ms;
}

/* ---- Introduction ---- */

.bro-goe-intro {
	background: var(--bro-offwhite);
}

.bro-goe-intro__inner {
	max-width: 52rem;
}

.bro-goe-intro__inner h2 {
	font-size: var(--bro-text-h1);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--bro-text-on-light);
	margin: 1rem 0 1.5rem;
}

.bro-goe-intro__inner p {
	font-size: var(--bro-text-base);
	line-height: 1.65;
	color: var(--bro-text-muted-on-light);
	max-width: 58ch;
	margin: 0 0 1.25rem;
}

.bro-goe-intro__note {
	font-family: var(--bro-font-display);
	font-size: var(--bro-text-h3);
	font-weight: 700;
	line-height: 1.35;
	color: var(--bro-text-on-light);
	max-width: 36ch;
	margin: 1.75rem 0 0;
	padding-left: 1.25rem;
	border-left: 3px solid var(--bro-orange);
}

/* ---- Shared editorial image + text grid (major-visual sections) ---- */

.bro-goe-grid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(2.5rem, 6vw, 5.5rem);
}

.bro-goe-grid--reverse {
	flex-direction: row-reverse;
}

.bro-goe-grid__media {
	flex: 1 1 460px;
}

.bro-goe-grid__media img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	background: var(--bro-white);
}

.bro-goe-grid__body {
	flex: 1 1 400px;
	max-width: 34rem;
}

.bro-goe-grid__body h2 {
	font-size: var(--bro-text-h1);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--bro-text-on-light);
	margin: 1rem 0 1.5rem;
}

.bro-goe-grid__body > p {
	font-size: var(--bro-text-base);
	line-height: 1.65;
	color: var(--bro-text-muted-on-light);
	max-width: 54ch;
	margin: 0 0 1.25rem;
}

/* Below 900px, media and text simply stack. Previously used
   flex-direction: column, which left .bro-goe-grid__media's
   flex-basis: 460px (written for the row-direction desktop layout,
   where the main axis is horizontal/width) being read as a fixed
   HEIGHT once the main axis turns vertical -- combined with the
   container's own align-items: center (a cross-axis/width rule in row
   mode, sizing the item to fit-content once column), 4 of this page's
   5 image rows collapsed to near-zero width. Switched to plain block
   stacking, which needs no flex axis-reinterpretation at all -- proven
   fix, same technique used for the equivalent bug on the Builders &
   Developers page. */
@media (max-width: 900px) {
	.bro-goe-grid,
	.bro-goe-grid--reverse {
		display: block;
	}

	.bro-goe-grid__media {
		width: 100%;
		max-width: 100%;
		margin: 0 0 clamp(2rem, 4vw, 2.5rem);
	}

	.bro-goe-grid__body {
		max-width: 100%;
	}
}

/* ---- Architectural & garden lighting ---- */

.bro-goe-lighting {
	background: var(--bro-white);
}

.bro-goe-lighting__media img {
	aspect-ratio: 3 / 4;
}

.bro-goe-lighting__list {
	list-style: none;
	margin: 1.5rem 0;
	padding: 1.25rem 0;
	border-top: 1px solid var(--bro-border-on-light);
	border-bottom: 1px solid var(--bro-border-on-light);
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	font-family: var(--bro-font-display);
	font-size: var(--bro-text-sm);
	font-weight: 600;
	color: var(--bro-text-on-light);
}

.bro-goe-lighting__list li {
	display: flex;
	align-items: center;
}

.bro-goe-lighting__list li:not(:last-child)::after {
	content: '\00b7';
	color: var(--bro-orange);
	margin: 0 0 0 1.5rem;
	font-weight: 700;
}

/* ---- Lighting integrated into the landscape ---- */

.bro-goe-landscape {
	background: var(--bro-offwhite);
}

.bro-goe-landscape__media img {
	aspect-ratio: 4 / 3;
}

.bro-goe-landscape__list {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
}

.bro-goe-landscape__list li {
	position: relative;
	padding-left: 1.2rem;
	font-size: var(--bro-text-base);
	line-height: 1.55;
	color: var(--bro-text-on-light);
	margin-bottom: 0.55rem;
}

.bro-goe-landscape__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 8px;
	height: 1px;
	background: var(--bro-orange);
}

/* ---- Outdoor power — smaller supporting image, not a major visual ---- */

.bro-goe-power {
	background: var(--bro-white);
}

.bro-goe-power__grid {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: clamp(2.5rem, 6vw, 4rem);
}

.bro-goe-power__body {
	flex: 1 1 460px;
	max-width: 40rem;
}

.bro-goe-power__body h2 {
	font-size: var(--bro-text-h1);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--bro-text-on-light);
	margin: 1rem 0 1.5rem;
}

.bro-goe-power__body > p {
	font-size: var(--bro-text-base);
	line-height: 1.65;
	color: var(--bro-text-muted-on-light);
	max-width: 56ch;
	margin: 0 0 1.25rem;
}

.bro-goe-power__list {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 1.25rem 0 0;
	border-top: 1px solid var(--bro-border-on-light);
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	font-family: var(--bro-font-display);
	font-size: var(--bro-text-sm);
	font-weight: 600;
	color: var(--bro-text-on-light);
}

.bro-goe-power__list li {
	display: flex;
	align-items: center;
}

.bro-goe-power__list li:not(:last-child)::after {
	content: '\00b7';
	color: var(--bro-orange);
	margin: 0 0 0 1.5rem;
	font-weight: 700;
}

.bro-goe-power__note {
	font-size: var(--bro-text-sm);
	line-height: 1.6;
	color: var(--bro-text-muted-on-light);
	max-width: 54ch;
	margin: 0;
}

.bro-goe-power__media {
	flex: 0 1 260px;
	align-self: center;
}

.bro-goe-power__media img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 3 / 4;
	border-radius: var(--bro-radius-sm);
}

@media (max-width: 780px) {
	.bro-goe-power__media {
		flex: 1 1 100%;
		max-width: 220px;
		margin: 0 auto;
	}
}

/* ---- Dedicated supplies — hot tub section ---- */

.bro-goe-hottub {
	background: var(--bro-offwhite);
}

.bro-goe-hottub__media img {
	aspect-ratio: 3 / 4;
}

.bro-goe-hottub__list {
	list-style: none;
	margin: 1.5rem 0;
	padding: 1.25rem 0 0;
	border-top: 1px solid var(--bro-border-on-light);
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	font-family: var(--bro-font-display);
	font-size: var(--bro-text-sm);
	font-weight: 600;
	color: var(--bro-text-on-light);
}

.bro-goe-hottub__list li {
	display: flex;
	align-items: center;
}

.bro-goe-hottub__list li:not(:last-child)::after {
	content: '\00b7';
	color: var(--bro-orange);
	margin: 0 0 0 1.5rem;
	font-weight: 700;
}

.bro-goe-hottub__note {
	font-family: var(--bro-font-display);
	font-size: var(--bro-text-base);
	font-weight: 600;
	color: var(--bro-text-on-light);
	max-width: 54ch;
	margin: 0;
	padding-left: 1.25rem;
	border-left: 3px solid var(--bro-orange);
}

/* ---- Garden rooms, summer houses & outbuildings (text-only) ---- */

.bro-goe-outbuildings {
	background: var(--bro-white);
}

.bro-goe-outbuildings__media img {
	aspect-ratio: 284 / 237;
}

.bro-goe-outbuildings__types {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0 0 1.75rem;
	padding: 1.25rem 0 0;
	border-top: 1px solid var(--bro-border-on-light);
	font-family: var(--bro-font-display);
	font-size: var(--bro-text-sm);
	font-weight: 600;
	color: var(--bro-text-on-light);
}

.bro-goe-outbuildings__types li {
	display: flex;
	align-items: center;
}

.bro-goe-outbuildings__types li:not(:last-child)::after {
	content: '\00b7';
	color: var(--bro-orange);
	margin: 0 0.6em;
	font-weight: 700;
}

.bro-goe-outbuildings__list {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
}

.bro-goe-outbuildings__list li {
	position: relative;
	padding-left: 1.2rem;
	font-size: var(--bro-text-base);
	line-height: 1.55;
	color: var(--bro-text-on-light);
	margin-bottom: 0.55rem;
}

.bro-goe-outbuildings__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 8px;
	height: 1px;
	background: var(--bro-orange);
}

.bro-goe-outbuildings__note {
	font-size: var(--bro-text-base);
	line-height: 1.65;
	color: var(--bro-text-muted-on-light);
	max-width: 58ch;
	margin: 0;
}

/* ---- Security & practical exterior lighting (typographic, no photo) ---- */

.bro-goe-security {
	background: var(--bro-charcoal);
}

.bro-goe-security__media img {
	aspect-ratio: 3 / 4;
}

.bro-goe-security__inner {
	flex: 1 1 400px;
	max-width: 34rem;
}

.bro-goe-security__inner h2 {
	font-size: var(--bro-text-h1);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.005em;
	text-transform: uppercase;
	color: var(--bro-white);
	margin: 1rem 0 1.5rem;
}

.bro-goe-security__inner > p {
	font-size: var(--bro-text-base);
	line-height: 1.65;
	color: var(--bro-text-muted-on-dark);
	max-width: 58ch;
	margin: 0 0 1.5rem;
}

.bro-goe-security__list {
	list-style: none;
	margin: 0;
	padding: 1.25rem 0 0;
	border-top: 1px solid var(--bro-border-on-dark);
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	font-family: var(--bro-font-display);
	font-size: var(--bro-text-sm);
	font-weight: 600;
	color: var(--bro-white);
}

.bro-goe-security__list li {
	display: flex;
	align-items: center;
}

.bro-goe-security__list li:not(:last-child)::after {
	content: '\00b7';
	color: var(--bro-orange);
	margin: 0 0 0 1.5rem;
	font-weight: 700;
}

/* ---- Planning during a renovation or extension ---- */

.bro-goe-planning {
	background: var(--bro-offwhite);
}

.bro-goe-planning__inner {
	max-width: 52rem;
}

.bro-goe-planning__inner h2 {
	font-size: var(--bro-text-h1);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--bro-text-on-light);
	margin: 1rem 0 1.5rem;
}

.bro-goe-planning__inner p {
	font-size: var(--bro-text-base);
	line-height: 1.65;
	color: var(--bro-text-muted-on-light);
	max-width: 58ch;
	margin: 0 0 1.25rem;
}

.bro-goe-planning__list {
	list-style: none;
	margin: 1.5rem 0 1.75rem;
	padding: 1.25rem 0 0;
	border-top: 1px solid var(--bro-border-on-light);
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	font-family: var(--bro-font-display);
	font-size: var(--bro-text-sm);
	font-weight: 600;
	color: var(--bro-text-on-light);
}

.bro-goe-planning__list li {
	display: flex;
	align-items: center;
}

.bro-goe-planning__list li:not(:last-child)::after {
	content: '\00b7';
	color: var(--bro-orange);
	margin: 0 0 0 1.5rem;
	font-weight: 700;
}

.bro-goe-planning__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bro-goe-planning__links a {
	font-family: var(--bro-font-display);
	font-size: var(--bro-text-sm);
	font-weight: 700;
	letter-spacing: var(--bro-tracking-label);
	text-transform: uppercase;
	color: var(--bro-text-on-light);
	text-decoration: none;
	border-bottom: 1px solid var(--bro-border-on-light);
	padding-bottom: 0.2em;
	transition: color var(--bro-transition-base), border-color var(--bro-transition-base);
}

.bro-goe-planning__links a:hover,
.bro-goe-planning__links a:focus-visible {
	color: var(--bro-orange);
	border-color: var(--bro-orange);
}

/* ---- Working with builders & landscapers ---- */

.bro-goe-trades {
	background: var(--bro-charcoal);
}

.bro-goe-trades__intro {
	max-width: 46rem;
	margin: 0 0 clamp(2.5rem, 5vw, 4rem);
}

.bro-goe-trades__intro h2 {
	font-size: var(--bro-text-h1);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.005em;
	text-transform: uppercase;
	color: var(--bro-white);
	margin: 1rem 0 1.5rem;
}

.bro-goe-trades__intro p {
	font-size: var(--bro-text-base);
	line-height: 1.65;
	color: var(--bro-text-muted-on-dark);
	max-width: 58ch;
	margin: 0 0 1.1rem;
}

.bro-goe-practices {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	list-style: none;
	margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
	padding: 0;
	border-top: 1px solid var(--bro-border-on-dark);
}

.bro-goe-practice {
	padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 2.5vw, 2rem);
	border-bottom: 1px solid var(--bro-border-on-dark);
	border-right: 1px solid var(--bro-border-on-dark);
}

.bro-goe-practices > .bro-goe-practice:nth-child(3n) {
	border-right: none;
}

.bro-goe-practices > .bro-goe-practice:last-child {
	border-right: none;
}

.bro-goe-practice__title {
	font-family: var(--bro-font-display);
	font-size: var(--bro-text-sm);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--bro-white);
	margin: 0 0 0.6rem;
}

.bro-goe-practice__text {
	font-size: var(--bro-text-sm);
	line-height: 1.55;
	color: var(--bro-text-muted-on-dark);
	margin: 0;
}

.bro-goe-trades .bro-icon-arrow {
	transition: transform var(--bro-transition-base);
}

@media (hover: hover) and (pointer: fine) {
	.bro-goe-trades .bro-btn:hover .bro-icon-arrow,
	.bro-goe-trades .bro-btn:focus-visible .bro-icon-arrow {
		transform: translateX(4px);
	}
}

@media (max-width: 767px) {
	.bro-goe-practices {
		grid-template-columns: 1fr;
	}

	.bro-goe-practice {
		border-right: none;
	}
}

/* ---- Our approach (text-only process) ---- */

.bro-goe-process {
	background: var(--bro-white);
}

.bro-goe-process__intro {
	max-width: 40rem;
	margin: 0 0 clamp(3rem, 6vw, 4.5rem);
}

.bro-goe-process__intro h2 {
	font-size: var(--bro-text-h1);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--bro-text-on-light);
	margin: 1rem 0 0;
}

.bro-goe-process__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bro-goe-process__step {
	padding: clamp(1.75rem, 3.5vw, 2.75rem) 0;
	border-top: 1px solid var(--bro-border-on-light);
}

.bro-goe-process__list > .bro-goe-process__step:last-child {
	border-bottom: 1px solid var(--bro-border-on-light);
}

.bro-goe-process__step-inner {
	display: flex;
	align-items: flex-start;
	gap: clamp(1.5rem, 4vw, 3rem);
}

.bro-goe-process__index {
	flex: 0 0 auto;
	font-family: var(--bro-font-display);
	font-size: var(--bro-text-h2);
	font-weight: 700;
	line-height: 1;
	color: var(--bro-border-on-light);
}

.bro-goe-process__body {
	flex: 1 1 auto;
	max-width: 34rem;
}

.bro-goe-process__title {
	font-family: var(--bro-font-display);
	font-size: var(--bro-text-sm);
	font-weight: 700;
	letter-spacing: var(--bro-tracking-label);
	text-transform: uppercase;
	color: var(--bro-text-on-light);
	margin: 0 0 0.65rem;
}

.bro-goe-process__text {
	font-size: var(--bro-text-base);
	line-height: 1.6;
	color: var(--bro-text-muted-on-light);
	margin: 0;
}

@media (max-width: 780px) {
	.bro-goe-process__step-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.25rem;
	}
}

/* ---- What the customer gains ---- */

.bro-goe-benefits {
	background: var(--bro-offwhite);
}

.bro-goe-benefits__intro {
	max-width: 46rem;
	margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}

.bro-goe-benefits__intro h2 {
	font-size: var(--bro-text-h1);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--bro-text-on-light);
	margin: 1rem 0 0;
}

.bro-goe-benefits__list {
	border-top: 1px solid var(--bro-border-on-light);
}

.bro-goe-benefit {
	display: grid;
	grid-template-columns: 4.5rem 1fr;
	gap: clamp(1.25rem, 3vw, 2.5rem);
	padding: clamp(1.5rem, 3vw, 2.25rem) 0;
	border-bottom: 1px solid var(--bro-border-on-light);
}

.bro-goe-benefit__index {
	font-family: var(--bro-font-display);
	font-size: var(--bro-text-h2);
	font-weight: 700;
	line-height: 1;
	color: var(--bro-border-on-light);
}

.bro-goe-benefit__title {
	font-family: var(--bro-font-display);
	font-size: var(--bro-text-sm);
	font-weight: 700;
	letter-spacing: var(--bro-tracking-label);
	text-transform: uppercase;
	color: var(--bro-orange-burnt);
	margin: 0.35rem 0 0.65rem;
}

.bro-goe-benefit__text {
	font-size: var(--bro-text-base);
	line-height: 1.65;
	color: var(--bro-text-muted-on-light);
	max-width: 56ch;
	margin: 0;
}

@media (max-width: 620px) {
	.bro-goe-benefit {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}
}

/* ---- FAQs ---- */

.bro-goe-faq {
	background: var(--bro-white);
}

.bro-goe-faq__inner {
	max-width: 52rem;
}

.bro-goe-faq__inner h2 {
	font-size: var(--bro-text-h1);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--bro-text-on-light);
	margin: 1rem 0 clamp(2rem, 4vw, 3rem);
}

.bro-goe-faq__list {
	border-top: 1px solid var(--bro-border-on-light);
}

.bro-goe-faq__item {
	border-bottom: 1px solid var(--bro-border-on-light);
}

.bro-goe-faq__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.5rem 0;
	font-family: var(--bro-font-display);
	font-size: var(--bro-text-base);
	font-weight: 700;
	color: var(--bro-text-on-light);
	cursor: pointer;
	list-style: none;
}

.bro-goe-faq__item summary::-webkit-details-marker {
	display: none;
}

.bro-goe-faq__item summary::after {
	content: '+';
	flex: 0 0 auto;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--bro-orange);
	line-height: 1;
	transition: transform var(--bro-transition-base);
}

.bro-goe-faq__item[open] summary::after {
	transform: rotate(45deg);
}

.bro-goe-faq__item summary:focus-visible {
	outline: 2px solid var(--bro-orange);
	outline-offset: 3px;
}

.bro-goe-faq__answer {
	margin: 0 0 1.75rem;
	font-size: var(--bro-text-base);
	line-height: 1.65;
	color: var(--bro-text-muted-on-light);
	max-width: 58ch;
}

/* ---- Final CTA ---- */

.bro-goe-cta {
	background: var(--bro-charcoal);
	text-align: center;
}

.bro-goe-cta__inner {
	max-width: 46rem;
	margin: 0 auto;
}

.bro-goe-cta__eyebrow {
	justify-content: center;
}

.bro-goe-cta__heading {
	font-size: var(--bro-text-h1);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.005em;
	text-transform: uppercase;
	color: var(--bro-white);
	margin: 0 0 1.5rem;
}

.bro-goe-cta__text {
	font-size: var(--bro-text-base);
	line-height: 1.65;
	color: var(--bro-text-muted-on-dark);
	max-width: 54ch;
	margin: 0 auto 2.25rem;
}

.bro-goe-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1.25rem;
}

.bro-goe-cta__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	font-family: var(--bro-font-display);
	font-size: var(--bro-text-sm);
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--bro-white);
	text-decoration: none;
}

.bro-goe-cta__phone svg {
	width: 18px;
	height: 18px;
}

.bro-goe-cta__phone:hover,
.bro-goe-cta__phone:focus-visible {
	color: var(--bro-orange);
}

@media (max-width: 480px) {
	.bro-goe-cta__actions {
		flex-direction: column;
	}

	.bro-goe-cta__actions .bro-btn {
		width: 100%;
	}
}
