/**
 * BRO Electrical — "Kitchen Renovations" homepage section.
 * Light, editorial break after the dark Builders & Developers section:
 * one dominant real project photo + text, no boxed cards, no icons.
 */

.bro-kitchen {
	background: var(--bro-offwhite);
	padding: var(--bro-section-spacing) 0;
}

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

.bro-kitchen__media {
	flex: 1 1 480px;
	max-width: 560px;
}

.bro-kitchen__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1086 / 1448;
	object-fit: cover;
	background: var(--bro-white);
}

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

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

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

.bro-kitchen__list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 1.75rem 0 2.25rem;
	padding: 0;
	font-family: var(--bro-font-display);
	font-size: var(--bro-text-xs);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--bro-text-on-light);
}

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

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

.bro-kitchen__cta-prompt {
	font-family: var(--bro-font-display);
	font-size: var(--bro-text-sm);
	font-weight: 600;
	letter-spacing: var(--bro-tracking-label);
	text-transform: uppercase;
	color: var(--bro-text-muted-on-light);
	margin: 0 0 1.25rem;
}

.bro-kitchen__cta .bro-icon-arrow {
	width: 14px;
	height: 14px;
	transition: transform var(--bro-transition-base);
}

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

.bro-kitchen__cta:focus-visible .bro-icon-arrow {
	transform: translateX(4px);
}

/* Reveal stagger, reusing the existing generic .bro-reveal-fade mechanism. */
.bro-kitchen__media.bro-reveal-fade {
	transition-delay: 0ms;
}

.bro-kitchen__eyebrow.bro-reveal-fade {
	transition-delay: 60ms;
}

.bro-kitchen__heading.bro-reveal-fade {
	transition-delay: 140ms;
}

.bro-kitchen__body p:nth-of-type(1).bro-reveal-fade {
	transition-delay: 220ms;
}

.bro-kitchen__body p:nth-of-type(2).bro-reveal-fade {
	transition-delay: 300ms;
}

.bro-kitchen__list.bro-reveal-fade {
	transition-delay: 380ms;
}

.bro-kitchen__cta-prompt.bro-reveal-fade {
	transition-delay: 440ms;
}

.bro-kitchen__cta.bro-reveal-fade {
	transition-delay: 500ms;
}

@media (max-width: 900px) {
	.bro-kitchen__media {
		max-width: 100%;
	}
}
