/*
 * Bosch Los Angeles — site skin
 * Red / white / graphite technical design layer on Repair Fleet Starter.
 */

:root {
	--wolf-iron: #141210;
	--wolf-panel: #1c1b19;
	--wolf-steel: #b9b4aa;
	--wolf-nickel: #e8e6e1;
	--wolf-ember: #c31212;
	--rf-primary: #c31212;
	--rf-secondary: #141210;
	--rf-primary-dark: #8f0d0d;
	--rf-primary-soft: #f8e8e8;
	--rf-primary-tint: #f0d0d0;
	--rf-accent: #c31212;
	--rf-accent-soft: #f8e8e8;
	--rf-accent-tint: #f0d0d0;
	--rf-ink: #1c1b19;
	--rf-ink-2: #3a3834;
	--rf-muted: #6a6660;
	--rf-line: #d8d4cc;
	--rf-line-strong: #c4bfb4;
	--rf-surface-2: #ffffff;
	--rf-surface-3: #f7f7f6;
	--rf-charcoal: #141210;
	--rf-header-h: 72px;
	/* Soft label chips / eyebrows — match hero pink badge (rounded rect). */
	--rf-radius-chip: 4px;
}

/* White technical header */
.rf-header {
	background: #fff;
	backdrop-filter: none;
	border-bottom: 1px solid var(--rf-line);
	box-shadow: 0 1px 0 rgba(26, 29, 33, 0.04);
}
.rf-nav a:hover,
.rf-nav .current-menu-item > a {
	color: var(--rf-primary);
	background: var(--rf-primary-soft);
}
.rf-eyebrow,
.rf-section-heading__eyebrow,
.rf-page-header .rf-eyebrow {
	color: var(--rf-primary);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.72rem;
}

/* Shared chip shape for eyebrows / badges / label pills (not buttons). */
.rf-eyebrow,
.rf-section-heading__eyebrow,
.rf-heading__eyebrow,
.rf-page-header .rf-eyebrow,
.rf-hero__badge,
.rf-expertise__badge,
.rf-badge,
.rf-card__badge,
.rf-chip,
.rf-ec-chip,
.rf-ec-status,
.rf-transform__stage,
.rf-cover__tag,
.rf-single__tags a,
.rf-blog-filter__chip,
.rf-loc-contact .rf-heading__eyebrow,
.rf-city-nearby a {
	border-radius: var(--rf-radius-chip);
}

/* Hero — 45/55 split, red eyebrow */
.rf-hero {
	background-color: var(--rf-surface-2);
}
.rf-hero__inner {
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: clamp(1.5rem, 4vw, 3rem);
}
.rf-hero__badge {
	background: var(--rf-primary-soft);
	border: 1px solid var(--rf-primary-tint);
	color: var(--rf-primary-dark);
	border-radius: var(--rf-radius-chip);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	box-shadow: none;
}
.rf-hero__title {
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--rf-charcoal);
	line-height: 1.08;
}
.rf-hero__title .rf-accent {
	display: block;
	color: var(--rf-primary);
	font-size: 0.92em;
	margin-top: 0.15em;
}
.rf-hero__trust-ico {
	background: #fff;
	border: 1px solid var(--rf-line);
	color: var(--rf-primary);
	border-radius: 4px;
}

/* Numbered service rows on homepage */
#services .rf-grid.rf-grid--3 {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid var(--rf-line-strong);
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
	counter-reset: bosch-service;
}
#services .rf-grid.rf-grid--3 .rf-card {
	display: grid;
	grid-template-columns: 3.5rem minmax(0, 1fr) auto;
	grid-template-rows: auto auto;
	grid-template-areas:
		"num title cta"
		"num text  cta";
	align-items: start;
	gap: 0.35rem 1.25rem;
	height: auto;
	overflow: visible;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 1.15rem 1.35rem;
	counter-increment: bosch-service;
	transform: none;
}
#services .rf-grid.rf-grid--3 .rf-card + .rf-card {
	border-top: 1px solid var(--rf-line-strong);
}
#services .rf-grid.rf-grid--3 .rf-card::after {
	content: none;
	display: none;
}
#services .rf-grid.rf-grid--3 .rf-card:hover,
#services .rf-grid.rf-grid--3 .rf-card.rf-card--hover:hover {
	transform: none;
	box-shadow: none;
	border-color: var(--rf-line-strong);
}
#services .rf-grid.rf-grid--3 .rf-card__icon {
	grid-area: num;
	align-self: center;
	width: 3rem;
	height: 3rem;
	border-radius: 4px;
	background: var(--rf-primary-soft);
	color: var(--rf-primary);
	font-weight: 800;
	font-size: 0.95rem;
	display: grid;
	place-items: center;
}
#services .rf-grid.rf-grid--3 .rf-card__icon .rf-icon {
	display: none;
}
#services .rf-grid.rf-grid--3 .rf-card__icon::before {
	content: counter(bosch-service, decimal-leading-zero);
}
#services .rf-grid.rf-grid--3 .rf-card__title {
	grid-area: title;
	margin: 0;
	font-size: 1.05rem;
}
#services .rf-grid.rf-grid--3 .rf-card__text {
	grid-area: text;
	margin: 0;
	font-size: 0.92rem;
}
#services .rf-grid.rf-grid--3 .rf-card__foot {
	grid-area: cta;
	align-self: center;
	margin: 0;
	max-width: 14rem;
	text-align: right;
}
#services .rf-grid.rf-grid--3 .rf-link-more {
	display: inline-flex;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 0.35rem;
	text-align: right;
	line-height: 1.35;
}
#services .rf-grid.rf-grid--3 .rf-link-more__text {
	white-space: normal;
}

/* Image-led appliance tiles */
.rf-appliances-grid {
	gap: 1rem;
}
.rf-appliance-card {
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid var(--rf-line);
	box-shadow: none;
}
.rf-appliance-card__media img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

/* Graphite footer with red accents */
.rf-footer {
	background: linear-gradient(180deg, #1A1D21 0%, #121518 100%);
}
.rf-footer__col-title {
	color: #fff;
	border-left: 3px solid var(--rf-primary);
	padding-left: 0.65rem;
}
.rf-footer-locs__title {
	border-left: 3px solid var(--rf-primary);
}
.rf-footer-locs__hub-title {
	color: #fff;
}
.rf-footer-locs__hub-title:hover {
	color: color-mix(in srgb, var(--rf-primary) 70%, #fff);
}
.rf-footer-locs__all {
	color: var(--rf-primary);
}
.rf-footer-locs__all:hover {
	color: #fff;
}

/* CTAs — one radius everywhere */
.rf-btn,
.rf-btn--primary,
.rf-btn--secondary,
.rf-btn--ghost,
.rf-btn--onink,
.rf-cookie__btn,
.rf-sticky-bar .rf-btn {
	border-radius: var(--rf-radius);
}
.rf-btn--primary {
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: none;
	box-shadow: none;
}

/* Error code reference typography */
.single-error_code .rf-ec-code,
.rf-ec-hero__code {
	color: var(--rf-primary);
	font-weight: 800;
	letter-spacing: -0.02em;
}

/* Pack photography backgrounds */
.rf-hero {
	position: relative;
	isolation: isolate;
	background-color: var(--rf-surface-2);
	background-image: none;
	overflow: hidden;
}
.rf-hero__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center right;
	z-index: 0;
	pointer-events: none;
}
.rf-hero--la {
	min-height: clamp(460px, 46vw, 640px);
}
.rf-hero--la::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(90deg, rgba(243,245,246,0.97) 0%, rgba(243,245,246,0.88) 42%, rgba(243,245,246,0.35) 68%, rgba(243,245,246,0) 100%);
}
.rf-hero .rf-container {
	position: relative;
	z-index: 2;
}
.rf-cta-banner {
	background-color: var(--rf-secondary);
	background-image:
		radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1.4px),
		linear-gradient(100deg, rgba(47, 62, 82, 0.93) 0%, rgba(63, 81, 101, 0.78) 42%, rgba(90, 112, 138, 0.58) 100%),
		var(--rf-pack-main-cta, none);
	background-size: 22px 22px, auto, cover;
	background-position: 0 0, center, center right;
	background-repeat: repeat, no-repeat, no-repeat;
}
@media (max-width: 640px) {
	.rf-cta-banner {
		background-image:
			radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1.4px),
			linear-gradient(180deg, rgba(47, 62, 82, 0.92) 0%, rgba(63, 81, 101, 0.82) 100%),
			var(--rf-pack-main-cta, none);
		background-size: 22px 22px, auto, cover;
		background-position: 0 0, center, center;
	}
}
.rf-expertise__bg {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.88) 50%, rgba(255, 255, 255, 0.55) 100%),
		var(--rf-pack-home-hero, none) center right / cover no-repeat;
}

/* Expertise — editorial two-column (mockup match) */
.rf-expertise--editorial {
	background: var(--rf-surface-2);
	padding-block: clamp(3rem, 6vw, 4.75rem);
}
.rf-expertise--editorial .rf-expertise__bg {
	opacity: 0.14;
	background:
		radial-gradient(900px 480px at 70% 40%, rgba(226, 0, 21, 0.04), transparent 65%),
		linear-gradient(105deg, rgba(243, 245, 246, 0.98) 0%, rgba(243, 245, 246, 0.9) 42%, rgba(243, 245, 246, 0.55) 72%),
		var(--rf-pack-home-hero, none) right center / cover no-repeat;
}
.rf-expertise--editorial .rf-expertise__grid {
	align-items: center;
	gap: clamp(2rem, 5vw, 4.5rem);
}
.rf-expertise__badge {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.85rem;
	border-radius: var(--rf-radius-chip);
	background: var(--rf-primary-soft);
	border: 1px solid var(--rf-primary-tint);
	color: var(--rf-primary-dark);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.rf-expertise--editorial .rf-expertise__title {
	font-size: clamp(1.85rem, 3.4vw, 2.65rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.12;
	margin: 0.9rem 0 0.85rem;
	max-width: 14ch;
	color: var(--rf-charcoal);
}
.rf-expertise--editorial .rf-text-accent {
	color: var(--rf-primary);
	font-weight: 600;
}
.rf-expertise--editorial .rf-expertise__lead {
	font-size: 1.02rem;
	line-height: 1.65;
	color: var(--rf-ink-2);
	max-width: 40ch;
	margin: 0 0 1.75rem;
}
.rf-expertise--editorial .rf-expertise__features {
	gap: 1.25rem;
}
.rf-expertise--editorial .rf-expertise__fico {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--rf-primary-soft);
	color: var(--rf-primary);
	box-shadow: inset 0 0 0 1.5px var(--rf-primary-tint);
}
.rf-expertise--editorial .rf-expertise__fico .rf-icon {
	width: 22px;
	height: 22px;
}
.rf-expertise--editorial .rf-expertise__fbody strong {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.2rem;
}
.rf-expertise--editorial .rf-expertise__fbody span {
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--rf-muted);
}
.rf-expertise--editorial .rf-expertise__card {
	border: 1px solid var(--rf-line);
	border-radius: 12px;
	box-shadow:
		0 1px 0 rgba(26, 29, 33, 0.04),
		0 18px 40px rgba(26, 29, 33, 0.08);
	padding: clamp(1.5rem, 3vw, 2.15rem) clamp(1.35rem, 2.5vw, 2rem);
	background: #fff;
}
.rf-expertise--editorial .rf-expertise__card-title {
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	padding-bottom: 0.85rem;
	margin: 0;
}
.rf-expertise--editorial .rf-expertise__card-title::after {
	width: 40px;
	height: 3px;
	border-radius: 2px;
	background: var(--rf-primary);
}
.rf-expertise--editorial .rf-proclist {
	margin: 0.35rem 0 0;
}
.rf-expertise--editorial .rf-proc {
	gap: 0.9rem;
	padding: 1rem 0;
	align-items: center;
}
.rf-expertise--editorial .rf-proc:last-child {
	border-bottom: 0;
	padding-bottom: 0.35rem;
}
.rf-expertise--editorial .rf-proc__ico {
	width: auto;
	height: auto;
	background: transparent;
	box-shadow: none;
	border-radius: 0;
	color: var(--rf-primary);
	place-items: center;
}
.rf-expertise--editorial .rf-proc__ico .rf-icon {
	width: 22px;
	height: 22px;
	stroke-width: 1.75;
}
.rf-expertise--editorial .rf-proc__body strong {
	font-size: 1rem;
	font-weight: 600;
}
.rf-expertise--editorial .rf-proc__body span {
	font-size: 0.9rem;
	line-height: 1.5;
}
.rf-expertise--editorial .rf-proc__num {
	font-size: 1.75rem;
	font-weight: 600;
	letter-spacing: -0.03em;
	color: color-mix(in srgb, var(--rf-secondary) 52%, var(--rf-muted));
}
.rf-expertise--editorial .rf-expertise__author {
	margin-top: 1.15rem;
	padding-top: 1.25rem;
}
.rf-expertise--editorial .rf-expert {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.95rem;
	align-items: start;
}
.rf-expertise--editorial .rf-expert__avatar img,
.rf-expertise--editorial .rf-expert--linked .rf-expert__avatar img {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #fff;
	box-shadow: 0 0 0 1px var(--rf-line);
}
.rf-expertise--editorial .rf-expert__role {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--rf-primary);
	margin-bottom: 0.15rem;
}
.rf-expertise--editorial .rf-expert__name {
	display: block;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--rf-charcoal);
}
.rf-expertise--editorial .rf-expert__text {
	font-size: 0.9rem;
	line-height: 1.55;
	margin: 0.35rem 0 0;
	color: var(--rf-muted);
}
.rf-expertise--editorial .rf-expert__links {
	margin-top: 0.55rem;
}
.rf-expertise--editorial .rf-expert__links .rf-link-more {
	color: var(--rf-primary);
	font-weight: 600;
	font-size: 0.9rem;
}

@media (max-width: 900px) {
	.rf-expertise--editorial .rf-expertise__title {
		max-width: none;
	}
	.rf-expertise--editorial .rf-expertise__bg {
		opacity: 0.08;
	}
}
.rf-process__bg {
	background: var(--rf-pack-home-hero, none) top right / cover no-repeat;
}
.rf-ec-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.5) 72%, rgba(255, 255, 255, 0.15) 100%),
		var(--rf-ec-hero-image, var(--rf-pack-error-codes-hub, var(--rf-pack-locations-hub, none))) center right / cover no-repeat,
		var(--rf-surface-2);
	border-bottom: 1px solid var(--rf-line);
	padding-block: clamp(2.25rem, 5vw, 3.5rem);
}
.rf-ec-hero__title {
	font-weight: 600;
	font-size: clamp(1.85rem, 3.5vw, 2.65rem);
	max-width: 18ch;
}
.rf-ec-hero__lead {
	max-width: 42ch;
}

/* Lighter editorial typography */
.rf-hero__title,
.rf-process__title,
.rf-locations__title,
.rf-expertise__title,
.rf-section-heading__title,
.rf-page-header__title,
.rf-ec-hero__title {
	font-weight: 600;
	letter-spacing: -0.025em;
}

.rf-pcard__title,
.rf-pcard__num,
.rf-location__name,
.rf-card__title,
.rf-post-card__title,
.rf-appliance__title {
	font-weight: 600;
}

/* Process — align header + 3-column step grid */
.rf-process .rf-container {
	position: relative;
	z-index: 1;
}
.rf-process__head {
	max-width: 52rem;
	margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.rf-process__title {
	font-size: clamp(1.75rem, 3.2vw, 2.35rem);
	line-height: 1.12;
	margin: 0.5rem 0 0.75rem;
}
.rf-process__lead {
	max-width: 48ch;
}
.rf-process__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.15rem;
}
.rf-pcard {
	padding: 1.35rem 1.35rem 2rem;
}
.rf-pcard__num {
	font-weight: 700;
	font-size: 1.35rem;
}

@media (max-width: 1080px) {
	.rf-process__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 640px) {
	.rf-process__grid {
		grid-template-columns: 1fr;
	}
}

/* Hero / CPT / archive CTAs — mobile full width of content column */
.rf-hero--la .rf-hero__actions {
	flex-wrap: wrap;
}
@media (max-width: 640px) {
	.rf-hero--la .rf-hero__actions,
	.rf-cpt-hero__actions,
	.rf-page-header__cta,
	.rf-about-intro__actions,
	.rf-about-start__cta {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}
	.rf-hero--la .rf-hero__actions .rf-btn,
	.rf-cpt-hero__actions .rf-btn,
	.rf-page-header__cta .rf-btn,
	.rf-about-intro__actions .rf-btn,
	.rf-about-start__cta .rf-btn {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		justify-content: center;
	}
}
.rf-hero__zones {
	margin-top: 1.35rem;
	padding-top: 1.15rem;
	border-top: 1px solid var(--rf-line);
}
.rf-hero__zones-label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rf-muted);
	margin-bottom: 0.65rem;
}
.rf-hero__zones-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.rf-hero__zone {
	display: inline-flex;
	align-items: center;
	padding: 0.38rem 0.75rem;
	border: 1px solid var(--rf-line);
	border-radius: 999px;
	background: #fff;
	color: var(--rf-ink);
	font-size: 0.84rem;
	font-weight: 600;
	text-decoration: none;
	transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.rf-hero__zone:hover,
.rf-hero__zone:focus-visible {
	border-color: var(--rf-primary);
	color: var(--rf-primary-dark);
	background: var(--rf-primary-soft);
}
.rf-hero__zone--all {
	border-color: var(--rf-primary-tint);
	background: var(--rf-primary-soft);
	color: var(--rf-primary-dark);
}

/* Locations hub — flagship section (differs from nationwide metro list) */
.rf-locations--hub {
	position: relative;
	padding-top: clamp(2.5rem, 5vw, 3.75rem);
	padding-bottom: clamp(2.75rem, 5vw, 4rem);
	background: linear-gradient(180deg, #fff 0%, var(--rf-surface-2) 100%);
	border-top: 3px solid var(--rf-primary);
	overflow: hidden;
}
.rf-locations--hub > .rf-container {
	position: relative;
	z-index: 1;
}
.rf-locations-hub__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.25rem 2rem;
	margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.rf-locations-hub__title {
	font-size: clamp(1.65rem, 2.8vw, 2.35rem);
	line-height: 1.12;
	margin: 0.55rem 0 0.75rem;
	max-width: 22ch;
	font-weight: 600;
}
.rf-locations-hub__lead {
	max-width: 52ch;
	font-size: 1.02rem;
	line-height: 1.65;
	color: var(--rf-ink-2);
	margin: 0;
}
.rf-locations-hub__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	align-items: center;
}
.rf-locations-hub__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 1rem;
}
.rf-locations-hub__grid > * {
	flex: 0 1 calc(33.333% - 0.67rem);
	max-width: calc(33.333% - 0.67rem);
	min-width: min(100%, 240px);
}
.rf-location-card {
	border: 1px solid var(--rf-line);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 1px 0 rgba(26, 29, 33, 0.04);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.rf-location-card:hover {
	border-color: var(--rf-primary-tint);
	box-shadow: 0 10px 28px rgba(26, 29, 33, 0.08);
	transform: translateY(-2px);
}
.rf-location-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}
.rf-location-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--rf-surface-3);
}
.rf-location-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.rf-location-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: var(--rf-primary);
	background: var(--rf-primary-soft);
}
.rf-location-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1rem 1.05rem 1.1rem;
	gap: 0.35rem;
}
.rf-location-card__title {
	margin: 0;
	font-size: 1rem;
	line-height: 1.35;
	font-weight: 600;
	color: var(--rf-charcoal);
}
.rf-location-card__region {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--rf-primary-dark);
}
.rf-location-card__text {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.55;
	color: var(--rf-muted);
	flex: 1;
}
.rf-location-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: 0.45rem;
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--rf-primary);
}

/* Homepage text-only location cards */
.rf-location-card--text .rf-location-card__body {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.85rem;
	align-items: flex-start;
	padding: 1.1rem 1.15rem 1.2rem;
}
.rf-location-card__pin {
	display: grid;
	place-items: center;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 6px;
	background: var(--rf-primary-soft);
	color: var(--rf-primary);
	flex-shrink: 0;
}
.rf-location-card__pin .rf-icon {
	width: 1.15rem;
	height: 1.15rem;
}
.rf-location-card--text .rf-location-card__copy {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	min-width: 0;
}
.rf-location-card--text .rf-location-card__title {
	font-size: 0.98rem;
	line-height: 1.35;
}
.rf-location-card--text .rf-location-card__text {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (max-width: 1080px) {
	.rf-locations-hub__grid > * {
		flex-basis: calc(50% - 0.5rem);
		max-width: calc(50% - 0.5rem);
	}
}
@media (max-width: 640px) {
	.rf-locations-hub__head {
		flex-direction: column;
		align-items: flex-start;
	}
	.rf-locations-hub__grid > * {
		flex-basis: 100%;
		max-width: 100%;
	}
	.rf-locations-hub__actions {
		width: 100%;
	}
	.rf-locations-hub__actions .rf-btn {
		flex: 1 1 auto;
		justify-content: center;
	}
}

/* Legacy compact location cards (footer / other templates) */
.rf-locations__layout {
	align-items: center;
	gap: clamp(2rem, 4vw, 3rem);
}
.rf-locations__title {
	font-size: clamp(1.55rem, 2.4vw, 2rem);
	margin: 0.65rem 0 0.75rem;
}
.rf-locations__lead {
	font-size: 1rem;
	line-height: 1.6;
	max-width: 34ch;
}
.rf-locations__grid {
	gap: 0.85rem;
}
.rf-locations .rf-location {
	padding: 1rem 1.1rem;
	box-shadow: none;
	border: 1px solid var(--rf-line);
	border-radius: 6px;
	flex-direction: column;
	align-items: flex-start;
}
.rf-location__top {
	width: 100%;
	align-items: flex-start;
}
.rf-location__name {
	font-size: 0.98rem;
	line-height: 1.4;
	font-weight: 600;
}
.rf-location__pin {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 6px;
	flex-shrink: 0;
}

/* Error-code filters — left-aligned controls */
.rf-ec-search {
	max-width: 920px;
	margin-inline: 0;
	overflow: visible;
	min-width: 0;
}
.rf-ec-filters {
	max-width: none;
	width: 100%;
	margin-inline: 0;
	padding: 1.35rem 1.5rem;
	background: var(--rf-surface);
	border: 1px solid var(--rf-line);
	border-radius: 6px;
}
.rf-ec-filters__row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: flex-start;
	gap: 1rem 1.35rem;
	width: 100%;
	max-width: 100%;
}
.rf-ec-field select {
	min-width: 0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0.62rem 2.35rem 0.62rem 0.85rem;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235C6570' d='M1.4.6 6 5.2 10.6.6 12 2l-6 6-6-6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.85rem center;
	background-size: 12px 8px;
}
.rf-ec-field--check {
	flex-direction: row;
	align-items: center;
	align-self: flex-end;
	gap: 0.55rem;
	min-height: 2.65rem; /* match select control height */
	padding: 0 0.15rem;
	margin: 0;
	white-space: normal;
	flex: 0 1 auto;
}
.rf-ec-field--check input[type='checkbox'] {
	width: 1.05rem;
	height: 1.05rem;
	margin: 0;
	flex: none;
	accent-color: var(--rf-primary);
}
.rf-ec-field--check > span {
	line-height: 1.2;
}
.rf-ec-filters__actions {
	justify-content: flex-start;
}
.rf-ec-index {
	justify-content: flex-start;
}

/* Author byline — keep author visible */
.rf-byline {
	align-items: center;
}
.rf-byline__author {
	flex: 1 1 220px;
	min-width: 0;
}
.rf-byline__dates {
	margin-left: auto;
}
.rf-author-photo,
.rf-byline__avatar {
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.rf-expert__avatar .rf-author-photo,
.rf-expert__avatar img {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
}

/* Blog archive — left-aligned hero on site grid (matches CPT hubs) */
.rf-page-header.rf-blog-header {
	text-align: left;
}
.rf-page-header.rf-blog-header .rf-container {
	max-width: var(--rf-container);
}
.rf-page-header.rf-blog-header .rf-page-header__title,
.rf-page-header.rf-blog-header .rf-page-header__sub {
	margin-inline: 0;
	text-align: left;
}
.rf-page-header.rf-blog-header .rf-page-header__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
	justify-content: flex-start;
}
/* Blog filter: wrap into rows on desktop, one-row side-scroll on mobile */
.rf-section > .rf-container:has(> .rf-blog-filter-wrap) {
	min-width: 0;
}
.rf-section > .rf-container > .rf-blog-filter-wrap,
.rf-blog-filter-wrap {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	box-sizing: border-box;
	margin-bottom: 2rem;
	overflow: visible !important;
}
.rf-section > .rf-container > .rf-blog-filter-wrap > .rf-blog-filter,
.rf-blog-filter-wrap > .rf-blog-filter,
.rf-blog-filter {
	display: flex !important;
	flex-wrap: wrap !important;
	flex-direction: row !important;
	justify-content: flex-start;
	align-items: center;
	gap: 0.45rem;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0;
	padding: 0;
}
.rf-section > .rf-container > .rf-blog-filter-wrap .rf-blog-filter__chip,
.rf-blog-filter-wrap .rf-blog-filter__chip,
.rf-blog-filter__chip {
	display: inline-flex !important;
	flex: 0 0 auto !important;
	width: auto !important;
	white-space: nowrap !important;
}
@media (max-width: 900px) {
	.rf-section > .rf-container > .rf-blog-filter-wrap,
	.rf-blog-filter-wrap {
		overflow-x: auto !important;
		overflow-y: hidden !important;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-x: contain;
		scrollbar-width: none;
		touch-action: pan-x;
	}
	.rf-section > .rf-container > .rf-blog-filter-wrap::-webkit-scrollbar,
	.rf-blog-filter-wrap::-webkit-scrollbar {
		display: none;
	}
	.rf-section > .rf-container > .rf-blog-filter-wrap > .rf-blog-filter,
	.rf-blog-filter-wrap > .rf-blog-filter,
	.rf-blog-filter {
		display: inline-flex !important;
		flex-wrap: nowrap !important;
		width: max-content !important;
		max-width: none !important;
		gap: 0.5rem;
		overflow: visible !important;
	}
	.rf-blog-filter__chip {
		flex-shrink: 0 !important;
		max-width: none !important;
	}
}
/* Error-code quick filter chips — one-row horizontal swipe (matches blog) */
.rf-ec-app .rf-ec-quick-filter-wrap,
.rf-ec-quick-filter-wrap {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	box-sizing: border-box;
	margin: 0 !important;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	touch-action: pan-x;
	--rf-hscroll-fade-bg: var(--rf-surface);
}
.rf-ec-app .rf-ec-quick-filter-shell,
.rf-ec-quick-filter-shell {
	margin: 0.75rem 0 0 !important;
}
.rf-ec-app .rf-ec-quick-filter-shell--prefix,
.rf-ec-quick-filter-shell--prefix {
	margin-top: 0.5rem !important;
}
.rf-ec-app .rf-ec-quick-filter-wrap > .rf-ec-quick-filter,
.rf-ec-quick-filter-wrap > .rf-ec-quick-filter,
.rf-ec-quick-filter {
	display: inline-flex !important;
	flex-wrap: nowrap !important;
	flex-direction: row !important;
	align-items: center;
	gap: 0.6rem;
	width: max-content !important;
	max-width: none !important;
	margin: 0;
	padding: 0;
}
.rf-ec-app .rf-ec-quick-filter__chip,
.rf-ec-quick-filter__chip {
	display: inline-flex !important;
	align-items: center;
	flex: 0 0 auto !important;
	flex-shrink: 0 !important;
	width: auto !important;
	max-width: none !important;
	white-space: nowrap !important;
}
/* Error-code advanced filters — fit panel width (no horizontal scroll) */
.rf-ec-app .rf-container {
	min-width: 0;
}
.rf-ec-app .rf-ec-filter-wrap,
.rf-ec-filter-wrap {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	box-sizing: border-box;
	overflow: visible !important;
}
.rf-ec-app .rf-ec-filter-wrap > .rf-ec-filters__row,
.rf-ec-filter-wrap > .rf-ec-filters__row,
.rf-ec-filters__row {
	display: flex !important;
	flex-wrap: wrap !important;
	flex-direction: row !important;
	align-items: flex-end;
	justify-content: flex-start;
	gap: 1rem 1.35rem;
	width: 100% !important;
	max-width: 100% !important;
}
.rf-ec-app .rf-ec-filter-wrap .rf-ec-field,
.rf-ec-filter-wrap .rf-ec-field {
	flex: 1 1 auto !important;
	min-width: 0 !important;
	max-width: 100% !important;
}
.rf-ec-app .rf-ec-filter-wrap .rf-ec-field:not(.rf-sr-only):not(.rf-ec-field--check),
.rf-ec-filter-wrap .rf-ec-field:not(.rf-sr-only):not(.rf-ec-field--check) {
	flex: 1 1 210px !important;
}
.rf-ec-app .rf-ec-filter-wrap .rf-ec-field--check,
.rf-ec-filter-wrap .rf-ec-field--check {
	flex: 0 1 auto !important;
}
@media (max-width: 782px) {
	.rf-ec-app .rf-ec-filter-wrap > .rf-ec-filters__row,
	.rf-ec-filter-wrap > .rf-ec-filters__row {
		flex-direction: column !important;
		align-items: stretch !important;
	}
	.rf-ec-app .rf-ec-filter-wrap .rf-ec-field,
	.rf-ec-filter-wrap .rf-ec-field,
	.rf-ec-app .rf-ec-filter-wrap .rf-ec-field:not(.rf-sr-only):not(.rf-ec-field--check),
	.rf-ec-filter-wrap .rf-ec-field:not(.rf-sr-only):not(.rf-ec-field--check) {
		flex: 1 1 100% !important;
		width: 100% !important;
	}
	.rf-ec-app .rf-ec-filter-wrap .rf-ec-field--check,
	.rf-ec-filter-wrap .rf-ec-field--check {
		flex: 1 1 100% !important;
		width: 100% !important;
		align-self: stretch;
		min-height: auto;
	}
}
.rf-ec-app .rf-ec-chips-shell,
.rf-ec-chips-shell {
	margin: 0.75rem 0 0 !important;
}
.rf-ec-app .rf-ec-chips-shell:has(> .rf-ec-chips-wrap > .rf-ec-chips:empty),
.rf-ec-chips-shell:has(> .rf-ec-chips-wrap > .rf-ec-chips:empty) {
	margin: 0 !important;
}
.rf-ec-app .rf-ec-chips-wrap,
.rf-ec-chips-wrap {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	box-sizing: border-box;
	margin: 0 !important;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	touch-action: pan-x;
	--rf-hscroll-fade-bg: var(--rf-surface);
}
.rf-ec-app .rf-ec-chips-wrap > .rf-ec-chips,
.rf-ec-chips-wrap > .rf-ec-chips,
.rf-ec-chips {
	display: inline-flex !important;
	flex-wrap: nowrap !important;
	flex-direction: row !important;
	align-items: center;
	gap: 0.5rem;
	width: max-content !important;
	max-width: none !important;
	margin: 0;
}
.rf-ec-app .rf-ec-chips-wrap .rf-ec-chip,
.rf-ec-chips-wrap .rf-ec-chip,
.rf-ec-chip {
	flex: 0 0 auto !important;
	flex-shrink: 0 !important;
	white-space: nowrap !important;
}
.rf-posts {
	gap: 1.5rem;
}
.rf-post-card__meta {
	align-items: center;
}
.rf-post-card__author {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-weight: 600;
	color: var(--rf-ink-2);
}
.rf-post-card__author a {
	color: inherit;
	text-decoration: none;
}
.rf-post-card__author a:hover {
	color: var(--rf-primary);
}
.rf-post-card__author-photo {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	object-fit: cover;
}

/* Archive headers */
.rf-page-header--media {
	background: var(--rf-surface-2);
	border-bottom: 1px solid var(--rf-line);
}

@media (max-width: 900px) {
	.rf-hero__inner {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	/* Stack Learn more below title/text — desktop "cta" area must not keep spanning both rows. */
	#services .rf-grid.rf-grid--3 .rf-card {
		grid-template-columns: 2.75rem minmax(0, 1fr);
		grid-template-rows: auto auto auto;
		grid-template-areas:
			"num title"
			"num text"
			".   cta";
		gap: 0.25rem 0.9rem;
		padding: 1rem 1.1rem;
	}
	#services .rf-grid.rf-grid--3 .rf-card__icon {
		align-self: start;
		width: 2.5rem;
		height: 2.5rem;
		font-size: 0.85rem;
	}
	#services .rf-grid.rf-grid--3 .rf-card__foot {
		align-self: start;
		margin-top: 0.15rem;
		white-space: normal;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rf-nav a::after {
		transition: none;
	}
}

/* ---- ProLead booking embed — 800px min so Continue/submit stays visible ---- */
.rf-booking-embed {
	width: 100%;
	min-height: 800px;
	background: #fff;
	border: 0;
	border-radius: 0;
	overflow: hidden;
}

.rf-booking-embed__frame,
iframe.schedule.rf-booking-embed__frame {
	display: block;
	width: 100%;
	height: 800px;
	min-height: 800px;
	margin-top: -10px;
	border: 0;
	border-radius: 0;
	background: #fff;
	overflow: auto;
	scrollbar-width: thin;
}

.rf-booking-embed__frame::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.rf-panel .rf-booking-embed,
.rf-contact-panel .rf-booking-embed,
.rf-modal__body .rf-booking-embed,
#booking .rf-booking-embed {
	height: 800px;
	min-height: 800px;
	margin: 0;
	overflow: hidden;
	background: #fff;
}

.rf-panel .rf-booking-embed__frame,
.rf-contact-panel .rf-booking-embed__frame,
.rf-modal__body .rf-booking-embed__frame,
#booking .rf-booking-embed__frame {
	height: 800px !important;
	min-height: 800px !important;
	margin: -10px 0 0;
	overflow: auto;
	scrollbar-width: thin;
}

#booking .rf-panel {
	padding: 1rem 1.1rem 0.85rem;
}

#booking .rf-panel h3 {
	margin-bottom: 0.35rem;
}

#booking .rf-hero__form-sub {
	margin-bottom: 0.65rem;
}

/* Modal: fit the ProLead shell */
.rf-modal__panel:has(.rf-booking-embed) {
	width: min(640px, 100%);
	max-height: min(94vh, 880px);
}

.rf-modal__body .rf-booking-embed {
	height: 800px;
	min-height: 800px;
	padding-bottom: 0;
}

.rf-modal__body .rf-booking-embed__frame {
	margin: -10px 0 0;
	height: 800px !important;
	min-height: 800px !important;
}

.rf-modal__body:has(.rf-booking-embed) {
	margin: 0 -0.35rem;
	padding-bottom: 0.5rem;
}

/* Contact: top-align copy with form (center made left column look “floated”) */
@media (min-width: 901px) {
	.rf-contact-main__split,
	#contact .rf-split.rf-contact-main__split {
		align-items: start;
	}
}
.rf-contact-panel.rf-panel,
#booking .rf-contact-panel {
	background: #fff;
	border: 1px solid rgba(20, 18, 16, 0.12) !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 1.15rem 1.25rem 0.5rem !important;
}
.rf-contact-panel__title {
	margin: 0 0 0.25rem;
	font-size: 1.25rem;
	letter-spacing: -0.02em;
}
.rf-contact-panel__sub {
	margin: 0 0 0.65rem;
	font-size: 0.9rem;
	color: #5c574f;
}

/* NAP: stacked label → value (stable alignment with icons) */
.rf-contact-main .rf-nap__item {
	align-items: flex-start;
}
.rf-contact-main .rf-nap__item > span:last-child {
	display: grid;
	gap: 0.12rem;
	min-width: 0;
}
.rf-contact-main .rf-nap__label {
	display: block;
	line-height: 1.2;
}
.rf-contact-main .rf-nap__value {
	display: block;
	line-height: 1.35;
	overflow-wrap: anywhere;
	word-break: normal;
}

/* Footer contact: icon + text on one row (email included) */
.rf-footer__contact > div {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	min-width: 0;
}
.rf-footer__contact .rf-icon {
	flex: none;
	margin-right: 0;
}
.rf-footer__contact a,
.rf-footer__contact span {
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.rf-footer__contact a[href^="mailto"] {
	overflow-wrap: normal;
	word-break: normal;
}

/* Footer brand — white lockup; same display size as header (.rf-brand__img). */
.rf-footer__brand.rf-brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	margin-bottom: 0.85rem;
}
.rf-footer__brand .rf-brand__img {
	object-position: left center;
}

/* Location singles — Local contact & hours (from main Bosch) */
.rf-loc-contact .rf-heading--center {
	margin-inline: auto;
	margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.rf-loc-contact .rf-heading__eyebrow {
	display: inline-flex;
	padding: 0.34rem 0.85rem;
	border-radius: var(--rf-radius-chip);
	background: var(--rf-primary-soft);
	border: 1px solid var(--rf-primary-tint);
	color: var(--rf-primary-dark);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.rf-loc-contact .rf-heading__title {
	font-weight: 600;
	letter-spacing: -0.025em;
}
.rf-loc-contact__grid {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	max-width: 720px;
	margin-inline: auto;
	gap: 1rem;
}
.rf-loc-card {
	border-radius: 12px;
	border: 1px solid var(--rf-line);
	box-shadow: 0 1px 0 rgba(26, 29, 33, 0.04);
	padding: 1.35rem 1.25rem;
}
.rf-loc-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: var(--rf-primary-soft);
	box-shadow: inset 0 0 0 1px var(--rf-primary-tint);
	color: var(--rf-primary);
}
.rf-loc-card__title {
	font-weight: 600;
	font-size: 1.05rem;
}
.rf-loc-card__text a {
	color: var(--rf-primary);
	font-weight: 700;
}

/* Header service-areas shortcut */
.rf-header__areas {
	display: none;
	align-items: center;
	font-size: 0.84rem;
	font-weight: 700;
	color: var(--rf-ink-2);
	text-decoration: none;
	white-space: nowrap;
	padding: 0.35rem 0.55rem;
	border-radius: 4px;
}
.rf-header__areas:hover,
.rf-header__areas:focus-visible {
	color: var(--rf-primary);
	background: var(--rf-primary-soft);
}
@media (min-width: 1100px) {
	.rf-header__areas {
		display: inline-flex;
	}
}

/* Sticky bar — Call + Book on mobile */
.rf-sticky-bar {
	gap: 0.55rem;
}
.rf-sticky-bar .rf-btn {
	flex: 1 1 0;
	min-width: 0;
	justify-content: center;
	padding-inline: 0.55rem;
	font-size: 0.85rem;
	gap: 0.35rem;
	white-space: nowrap;
	overflow: hidden;
}

/* Footer: no empty twin-column gap on phones */
@media (max-width: 640px) {
	.rf-footer__top {
		grid-template-columns: 1fr;
	}
}

/* content-visibility:auto + guessed contain-intrinsic-size caused CLS when sections painted. */

/* In-article blog internal links */
.rf-related-reads {
	margin: 1.5rem 0;
	padding: 1rem 1.15rem;
	border: 1px solid var(--rf-line-strong);
	border-left: 3px solid var(--rf-primary);
	border-radius: var(--rf-radius);
	background: var(--rf-surface-2);
}
.rf-related-reads__label {
	margin: 0 0 0.55rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rf-muted);
}
.rf-related-reads__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
}
.rf-related-reads__list a {
	color: var(--rf-primary-dark);
	font-weight: 600;
	text-decoration: none;
}
.rf-related-reads__list a:hover {
	text-decoration: underline;
}

/* Classic Bosch top strip — desktop: tagline only; mobile: hidden */
.rf-announce {
	background: #1A1D21;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.rf-announce__tagline {
	color: #b8c0c8;
	font-weight: 600;
}
.rf-announce__phone {
	color: #fff;
}
.rf-announce__phone .rf-icon {
	display: none;
}
@media (max-width: 640px) {
	.rf-announce {
		display: none;
	}
}

/* —— City location landings (139) —— */
.rf-city-hero {
	padding-bottom: 2.5rem;
	background: var(--rf-surface-2);
}
.rf-city-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: clamp(1.5rem, 4vw, 2.75rem);
	align-items: start;
}
.rf-city-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.25rem;
}
.rf-city-hero__hub {
	margin: 1rem 0 0;
	font-size: 0.92rem;
	color: var(--rf-muted);
}
.rf-city-hero__hub a {
	color: var(--rf-primary-dark);
	font-weight: 600;
	text-decoration: none;
}
.rf-city-hero__hub a:hover {
	text-decoration: underline;
}
.rf-city-hero__panel {
	background: #fff;
	border: 1px solid var(--rf-line-strong);
	border-radius: 8px;
	padding: 1.1rem 1.1rem 0.4rem;
	box-shadow: 0 8px 28px rgba(26, 29, 33, 0.06);
}
.rf-city-hero__form-title {
	margin: 0 0 0.35rem;
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--rf-ink);
}
.rf-city-hero #book-service {
	scroll-margin-top: calc(var(--rf-header-h) + 12px);
}

/* One content width on location landings — no narrow jump. */
body.single-location .rf-container--narrow {
	max-width: var(--rf-container);
}
body.single-location .rf-faq {
	max-width: none;
	margin-inline: 0;
}
body.single-location .rf-city-prose,
body.single-location .rf-city-disclaimer {
	max-width: none;
}
body.single-location .rf-city-disclaimer {
	margin-top: 1.5rem;
	font-size: 0.82rem;
	line-height: 1.5;
	color: var(--rf-muted);
	text-align: center;
}
body.single-location .rf-city-final-cta__actions {
	justify-content: center;
}

.rf-city-services__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}
.rf-city-service-card {
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: 8px;
	padding: 1.1rem 1.15rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}
.rf-city-service-card__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 800;
}
.rf-city-service-card__title a {
	color: var(--rf-ink);
	text-decoration: none;
}
.rf-city-service-card__title a:hover {
	color: var(--rf-primary);
}
.rf-city-service-card__text {
	margin: 0;
	color: var(--rf-ink-2);
	font-size: 0.95rem;
	line-height: 1.55;
	flex: 1;
}
.rf-city-service-card__cta {
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--rf-primary);
	text-decoration: none;
}
.rf-city-service-card__cta:hover {
	text-decoration: underline;
}
.rf-city-nearby-label {
	margin: 1.25rem 0 0.5rem;
	font-weight: 700;
}
.rf-city-nearby {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.85rem;
}
.rf-city-nearby a {
	display: inline-block;
	padding: 0.35rem 0.7rem;
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius-chip);
	background: #fff;
	color: var(--rf-ink);
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
}
.rf-city-nearby a:hover {
	border-color: var(--rf-primary);
	color: var(--rf-primary);
}

/* Hub city directory — full-width card on the site grid */
.rf-loc-city-dir__list {
	list-style: none;
	margin: 0;
	padding: 1.25rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.65rem 0.85rem;
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: 10px;
	box-shadow: 0 1px 2px rgba(26, 29, 33, 0.04);
}
.rf-loc-city-dir__list a {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	min-height: 2.6rem;
	padding: 0.55rem 0.75rem;
	border: 1px solid var(--rf-line);
	border-radius: 6px;
	background: var(--rf-surface-2);
	color: var(--rf-ink);
	font-weight: 600;
	text-decoration: none;
	line-height: 1.25;
	cursor: pointer;
	transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.rf-loc-city-dir__name {
	flex: 1;
	min-width: 0;
}
.rf-loc-city-dir__list a .rf-icon {
	flex: none;
	width: 1rem;
	height: 1rem;
	color: var(--rf-primary);
}
.rf-loc-city-dir__chevron {
	flex: none;
	margin-left: auto;
	display: inline-grid !important;
	place-items: center;
	color: var(--rf-primary);
	opacity: 1;
	visibility: visible;
	transition: transform 0.15s ease, opacity 0.15s ease;
}
.rf-loc-city-dir__chevron .rf-icon {
	width: 1.1rem;
	height: 1.1rem;
	display: block;
	stroke: currentColor;
}
.rf-loc-city-dir__list a:hover,
.rf-loc-city-dir__list a:focus-visible {
	border-color: var(--rf-primary);
	color: var(--rf-primary);
	background: var(--rf-primary-soft);
}
.rf-loc-city-dir__list a:hover .rf-loc-city-dir__chevron,
.rf-loc-city-dir__list a:focus-visible .rf-loc-city-dir__chevron {
	opacity: 1;
	transform: translateX(2px);
}
.rf-loc-city-dir__list a:focus-visible {
	outline: 2px solid var(--rf-primary);
	outline-offset: 2px;
}
.rf-loc-city-dir__list a:active {
	border-color: var(--rf-primary);
	background: var(--rf-primary-soft);
	color: var(--rf-primary);
}

/* Coverage panels: one card must span full container width */
.rf-loc-coverage--single,
.rf-loc-coverage:has(> :only-child) {
	grid-template-columns: 1fr;
}
.rf-loc-coverage--single .rf-checklist--cols-2,
.rf-loc-coverage:has(> :only-child) .rf-checklist--cols-2 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 960px) {
	.rf-city-hero__grid {
		grid-template-columns: 1fr;
	}
	.rf-city-services__grid,
	.rf-loc-city-dir__list {
		grid-template-columns: 1fr 1fr;
	}
	.rf-loc-coverage--single .rf-checklist--cols-2,
	.rf-loc-coverage:has(> :only-child) .rf-checklist--cols-2,
	.rf-loc-coverage--single .rf-checklist--cols-3,
	.rf-loc-coverage:has(> :only-child) .rf-checklist--cols-3 {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 640px) {
	.rf-city-services__grid,
	.rf-loc-city-dir__list,
	.rf-loc-coverage--single .rf-checklist--cols-2,
	.rf-loc-coverage:has(> :only-child) .rf-checklist--cols-2,
	.rf-loc-coverage--single .rf-checklist--cols-3,
	.rf-loc-coverage:has(> :only-child) .rf-checklist--cols-3 {
		grid-template-columns: 1fr;
	}
	.rf-city-hero__actions .rf-btn {
		width: 100%;
		justify-content: center;
	}
}

/* ------------------------------------------------------------------ */
/* CPT landing (service + appliance singles)                           */
/* ------------------------------------------------------------------ */
.rf-cpt-landing__lead-prose {
	font-size: 1.05rem;
	color: var(--rf-ink-2);
}
.rf-cpt-tiles {
	margin-top: 0.25rem;
}
.rf-cpt-tile {
	background: #fff;
	border: 1px solid var(--rf-line-strong);
	border-radius: 6px;
	padding: 1.25rem 1.15rem 1.35rem;
	height: 100%;
}
.rf-cpt-tile__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 999px;
	background: var(--rf-primary-soft);
	border: 1px solid var(--rf-primary-tint);
	color: var(--rf-primary);
	margin-bottom: 0.85rem;
}
.rf-cpt-tile__ico .rf-icon {
	width: 1.35rem;
	height: 1.35rem;
}
.rf-cpt-tile__title {
	margin: 0 0 0.4rem;
	font-size: 1.05rem;
	color: var(--rf-charcoal);
}
.rf-cpt-tile__text {
	margin: 0;
	color: var(--rf-muted);
	font-size: 0.94rem;
	line-height: 1.45;
}
.rf-cpt-table thead th {
	background: var(--rf-primary-soft);
	color: var(--rf-primary-dark);
}
.rf-cpt-table th[scope="row"] {
	font-weight: 700;
	color: var(--rf-charcoal);
	width: 34%;
	white-space: nowrap;
}
/* Trust strip — equal card heights; title areas align so copy starts on one line */
.rf-cpt-landing__trust .rf-cpt-trust {
	align-items: stretch;
}
.rf-cpt-landing__trust .rf-guarantee {
	height: 100%;
	box-sizing: border-box;
}
.rf-cpt-landing__trust .rf-guarantee__head {
	align-items: center;
}
/* Fallback when subgrid is unavailable: reserve ~2 title lines so bodies line up */
@supports not (grid-template-rows: subgrid) {
	@media (min-width: 641px) {
		.rf-cpt-landing__trust .rf-guarantee__head {
			min-height: calc(2 * 1.3em);
		}
	}
}
body.single-service .rf-cpt-hero__actions,
body.single-appliance .rf-cpt-hero__actions,
body.single-appliance_model .rf-cpt-hero__actions {
	margin-top: 1.35rem;
}
body.single-service .rf-page-header__sub,
body.single-appliance .rf-page-header__sub,
body.single-appliance_model .rf-page-header__sub {
	max-width: 52ch;
	color: var(--rf-ink-2);
}
@media (max-width: 960px) {
	.rf-cpt-tiles.rf-grid--4,
	.rf-cpt-trust.rf-grid--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.rf-cpt-table th[scope="row"] {
		white-space: normal;
		width: auto;
	}
}
@media (max-width: 640px) {
	.rf-cpt-tiles.rf-grid--4,
	.rf-cpt-trust.rf-grid--4 {
		grid-template-columns: 1fr;
	}

	/* Final CTA — stack buttons full width (kill side-by-side squash) */
	.rf-section .rf-cta-banner,
	.rf-cta-banner {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box;
		padding: 1.5rem 1.15rem;
	}
	.rf-cta-banner__inner {
		flex-direction: column !important;
		align-items: stretch !important;
		width: 100%;
		gap: 1.25rem;
	}
	.rf-cta-banner__actions {
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;
		width: 100% !important;
		gap: 0.85rem !important;
	}
	.rf-cta-banner__actions .rf-btn {
		flex: none !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		box-sizing: border-box;
		justify-content: center;
	}

	/* Hero / archive / CPT CTAs — full content width */
	.rf-hero__actions,
	.rf-hero--la .rf-hero__actions,
	.rf-cpt-hero__actions,
	.rf-page-header__cta,
	.rf-about-intro__actions,
	.rf-about-start__cta {
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;
		width: 100% !important;
		gap: 0.75rem;
	}
	.rf-hero__actions .rf-btn,
	.rf-hero--la .rf-hero__actions .rf-btn,
	.rf-cpt-hero__actions .rf-btn,
	.rf-page-header__cta .rf-btn,
	.rf-about-intro__actions .rf-btn,
	.rf-about-start__cta .rf-btn {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box;
		justify-content: center;
	}

	/* Similar articles: View all sits with heading, above cards */
	.rf-similar__head {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 0.65rem;
	}
	.rf-similar__all {
		align-self: flex-start !important;
	}
}

/* =========================================================================
   Blog single — TOC + similar articles (fix sidebar card stretch / overlap)
   ========================================================================= */
.rf-posts--similar {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.rf-post-page .rf-posts--similar .rf-post-card {
	min-height: 0;
}

.rf-post-page .rf-byline {
	background: var(--rf-surface);
	border-color: var(--rf-line);
	border-radius: 3px;
}

.rf-toc {
	border-radius: 3px;
	box-shadow: none;
}

/* Fixed thumb box — without this, flex stretch + height:100% images balloon ~1500px */
.rf-similar--sidebar .rf-post-card {
	align-items: flex-start;
}

.rf-similar--sidebar .rf-post-card__thumb {
	flex: 0 0 88px;
	width: 88px;
	height: 88px;
	min-height: 0;
	align-self: flex-start;
	overflow: hidden;
}

.rf-similar--sidebar .rf-post-card__thumb img,
.rf-similar--sidebar .rf-post-card__thumb .rf-cover {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	aspect-ratio: auto;
}

@media (max-width: 1100px) {
	.rf-post-page__aside {
		position: static;
	}
}

/* Blog single: never pin Similar articles beside TOC (overlap on sticky sidebars) */
.rf-post-page .rf-ec-page__grid--with-aside {
	display: grid;
	gap: clamp(1.5rem, 3vw, 2rem);
	grid-template-columns: 1fr;
	grid-template-areas:
		"toc"
		"main"
		"similar";
}

.rf-post-page .rf-toc {
	grid-area: toc;
	width: 100%;
	max-width: 100%;
}

.rf-post-page .rf-ec-page__main {
	grid-area: main;
	min-width: 0;
}

.rf-post-page .rf-post-page__aside {
	grid-area: similar;
	position: static;
	width: 100%;
	max-width: 100%;
	margin-top: 0.25rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--rf-line);
}

@media (min-width: 901px) {
	.rf-post-page .rf-ec-page__grid--with-aside {
		grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
		grid-template-areas:
			"toc main"
			"toc similar";
	}

	.rf-post-page .rf-toc {
		position: sticky;
		top: calc(var(--rf-header-h) + 1rem);
		align-self: start;
	}

	.rf-post-page .rf-post-page__aside {
		align-self: start;
	}

	.rf-post-page .rf-similar--sidebar .rf-posts--similar {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.25rem;
	}

	.rf-post-page .rf-similar--sidebar .rf-post-card {
		flex-direction: column;
	}

	.rf-post-page .rf-similar--sidebar .rf-post-card__thumb {
		flex: none;
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
	}

	.rf-post-page .rf-similar--sidebar .rf-post-card__thumb img,
	.rf-post-page .rf-similar--sidebar .rf-post-card__thumb .rf-cover {
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
		object-fit: cover;
		min-height: 0;
	}

	.rf-post-page .rf-similar--sidebar .rf-post-card__excerpt,
	.rf-post-page .rf-similar--sidebar .rf-post-card__foot {
		display: block;
	}
}

@media (max-width: 900px) {
	.rf-similar--sidebar .rf-post-card {
		flex-direction: column;
	}

	.rf-similar--sidebar .rf-post-card__thumb {
		flex: none;
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
	}

	.rf-similar--sidebar .rf-post-card__thumb img,
	.rf-similar--sidebar .rf-post-card__thumb .rf-cover {
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
		object-fit: cover;
	}
}

/* Wolf design overlay — iron header / ember accent on Bosch LA layout */
.rf-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #141210;
	border-bottom: 1px solid rgba(185, 180, 170, 0.16);
	box-shadow: none;
}
.rf-header .rf-nav a { color: #e8e6e1; }
.rf-header .rf-nav a:hover,
.rf-header .rf-nav a:focus-visible,
.rf-header .rf-nav .current-menu-item > a,
.rf-header .rf-nav .current_page_item > a {
	color: #fff;
	background: transparent;
	box-shadow: none;
}
.rf-announce {
	background: #1c1b19;
	border-bottom: 1px solid rgba(185, 180, 170, 0.16);
}
.rf-announce__tagline,
.rf-announce__note { color: #b9b4aa; }
.rf-hero--la::before {
	background: linear-gradient(90deg, rgba(20,18,16,0.92) 0%, rgba(20,18,16,0.72) 42%, rgba(20,18,16,0.28) 68%, rgba(20,18,16,0) 100%);
}
.rf-hero--la .rf-hero__title,
.rf-hero--la .rf-hero__lead { color: #e8e6e1; }
.rf-hero--la .rf-hero__badge {
	background: rgba(195, 18, 18, 0.16);
	color: #e8e6e1;
	border: 1px solid rgba(195, 18, 18, 0.35);
}
.rf-footer { background: #141210; color: #b9b4aa; }

/* ---- Wolf redesign pass: contrast, grids, fewer Bosch cards ---- */

/* Header phone must read on iron background */
.rf-header .rf-header__actions .rf-phone-btn,
.rf-header .rf-header__actions .rf-phone-btn__number,
.rf-header a.rf-phone-btn,
.rf-header a.rf-phone-btn .rf-phone-btn__number {
	color: #f4f2ee !important;
	opacity: 1 !important;
}
.rf-header .rf-header__actions .rf-phone-btn .rf-icon,
.rf-header a.rf-phone-btn .rf-icon,
.rf-header a.rf-phone-btn svg {
	color: #ff4d4d !important;
	stroke: #ff4d4d !important;
	fill: none !important;
	opacity: 1 !important;
}
.rf-header .rf-phone-btn:hover,
.rf-header .rf-phone-btn:focus-visible {
	color: #fff !important;
	background: rgba(195, 18, 18, 0.22) !important;
}
.rf-header .rf-phone-btn--inline .rf-phone-btn__number {
	display: inline !important;
	font-weight: 700;
	letter-spacing: 0.01em;
	font-size: 0.95rem !important;
}
@media (max-width: 900px) {
	.rf-header .rf-phone-btn--inline .rf-phone-btn__number {
		display: none !important;
	}
	.rf-header .rf-phone-btn {
		display: inline-flex !important;
		color: #e8e6e1 !important;
	}
	.rf-header .rf-phone-btn .rf-icon {
		color: #ff4d4d !important;
	}
}

/* Unify content width with hero / sections */
.rf-section > .rf-container,
.rf-page-header .rf-container,
.rf-locations--hub > .rf-container,
.rf-process .rf-container,
.rf-footer > .rf-container.rf-container--wide {
	max-width: var(--rf-container);
	width: 100%;
	margin-inline: auto;
}
.rf-header .rf-container--wide {
	max-width: var(--rf-container-wide);
}

/* Header: prevent nav from colliding with logo */
.rf-header .rf-header__inner {
	gap: 0.75rem;
}
.rf-header .rf-brand,
.rf-header .rf-brand__logo {
	flex: 0 0 auto !important;
	flex-shrink: 0 !important;
	min-width: auto !important;
	position: relative;
	z-index: 2;
}
.rf-header .rf-brand__img,
.rf-header .rf-brand__logo img {
	max-width: 148px;
	height: 36px;
}
.rf-header .rf-nav {
	flex: 1 1 auto;
	min-width: 0;
	margin-inline: 0.25rem auto;
	overflow: hidden;
}
.rf-header .rf-nav__list {
	flex-wrap: wrap;
	justify-content: center;
	row-gap: 0.2rem;
	column-gap: 0.85rem;
}
.rf-header .rf-nav a {
	position: relative;
	padding: 0.48rem 0.2rem 0.62rem;
	font-size: 0.86rem;
	border-radius: 0;
	background: transparent !important;
	border-bottom: 0 !important;
	box-shadow: none !important;
}
.rf-header .rf-nav a::after {
	content: "" !important;
	display: block !important;
	position: absolute;
	left: 50%;
	bottom: 0.18rem;
	width: 0.7rem;
	height: 2px;
	margin: 0;
	right: auto;
	background: #c31212;
	border-radius: 1px;
	transform: translateX(-50%) scaleX(0);
	transform-origin: center;
	transition: transform 0.15s ease;
}
.rf-header .rf-nav a:hover,
.rf-header .rf-nav a:focus-visible {
	color: #fff !important;
	background: transparent !important;
	box-shadow: none !important;
	border-bottom: 0 !important;
}
.rf-header .rf-nav a:hover::after,
.rf-header .rf-nav a:focus-visible::after,
.rf-header .rf-nav .current-menu-item > a::after,
.rf-header .rf-nav .current_page_item > a::after {
	transform: translateX(-50%) scaleX(1);
}
.rf-header .rf-nav .current-menu-item > a,
.rf-header .rf-nav .current_page_item > a {
	color: #fff !important;
	background: transparent !important;
	box-shadow: none !important;
	border-bottom: 0 !important;
}
.rf-header .rf-header__actions {
	flex: 0 0 auto;
	margin-left: auto;
}

/* Blog filter stays one row — swipe sideways (do not wrap) */

/* Archive cards: sharper thumbs, even 4-col fill */
.post-type-archive-appliance .rf-card__media img,
.post-type-archive-service .rf-card__media img,
.archive .rf-card__media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	object-position: center;
	image-rendering: auto;
}
.rf-grid.rf-grid--auto,
.rf-models-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) {
	.rf-grid.rf-grid--auto,
	.rf-models-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 560px) {
	.rf-grid.rf-grid--auto,
	.rf-models-grid {
		grid-template-columns: 1fr;
	}
}

/* Locations intro full-width with actions below — matches grid edge */
.rf-locations-hub__head {
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	justify-content: flex-start !important;
	gap: 1.1rem !important;
}
.rf-locations-hub__title {
	max-width: none !important;
}
.rf-locations-hub__lead {
	max-width: 46rem !important;
}

/* LA hero: single content column aligned to same container as sections */
.rf-hero--la .rf-hero__inner {
	display: block !important;
	grid-template-columns: none !important;
	max-width: 40rem;
}

/* Centered section heads use full container width (no narrow ch boxes) */
#appliances .rf-heading--center,
#services .rf-heading--center,
.rf-heading--center {
	max-width: none;
	width: 100%;
}
#appliances .rf-heading--center .rf-heading__text,
#services .rf-heading--center .rf-heading__text,
.rf-heading--center p {
	max-width: 46rem;
	margin-left: auto;
	margin-right: auto;
}

/* Services list: short Learn more, not title dump */
#services .rf-grid.rf-grid--3 {
	counter-reset: wolf-service;
}
#services .rf-grid.rf-grid--3 .rf-card {
	counter-increment: wolf-service;
}
#services .rf-grid.rf-grid--3 .rf-card__icon::before {
	content: counter(wolf-service, decimal-leading-zero);
}
#services .rf-grid.rf-grid--3 .rf-card__foot {
	max-width: 8rem;
}
#services .rf-grid.rf-grid--3 .rf-link-more__text {
	white-space: nowrap;
}

/* Appliances: full-width rows (no narrow 3-col title wrapping) */
#appliances .rf-appliances-grid.rf-appliances-grid--compact {
	display: flex !important;
	flex-direction: column !important;
	gap: 0 !important;
	grid-template-columns: none !important;
	border: 1px solid var(--rf-line);
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
}
#appliances .rf-appliances-grid--compact > *,
#appliances .rf-appliances-grid--compact > :nth-child(5),
#appliances .rf-appliances-grid--compact > :nth-child(6),
#appliances .rf-appliances-grid--compact > :nth-child(7) {
	grid-column: auto !important;
}
#appliances .rf-appliance.rf-appliance--compact {
	display: grid !important;
	grid-template-columns: minmax(9.5rem, 13.5rem) minmax(0, 1fr) auto;
	grid-template-areas: "title text link";
	gap: 0.45rem 1.15rem;
	align-items: center;
	padding: 0.72rem 1rem;
	border: 0 !important;
	border-bottom: 1px solid var(--rf-line) !important;
	border-radius: 0 !important;
	background: #fff;
	box-shadow: none !important;
	transform: none !important;
	min-height: 0;
}
#appliances .rf-appliance.rf-appliance--compact:last-child {
	border-bottom: 0 !important;
}
#appliances .rf-appliance.rf-appliance--compact:hover {
	background: color-mix(in srgb, var(--rf-surface-2) 65%, #fff);
	transform: none !important;
	box-shadow: none !important;
	border-color: var(--rf-line) !important;
}
#appliances .rf-appliance--compact .rf-appliance__title {
	grid-area: title;
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.28;
}
#appliances .rf-appliance--compact .rf-appliance__title a {
	color: inherit;
	text-decoration: none;
}
#appliances .rf-appliance--compact .rf-appliance__title a:hover {
	color: var(--rf-primary);
}
#appliances .rf-appliance--compact .rf-appliance__text {
	grid-area: text;
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.45;
	color: var(--rf-muted);
}
#appliances .rf-appliance--compact .rf-link-more {
	grid-area: link;
	margin: 0;
	font-size: 0.86rem;
	white-space: nowrap;
	justify-self: end;
}
@media (max-width: 760px) {
	#appliances .rf-appliance.rf-appliance--compact {
		grid-template-columns: 1fr;
		grid-template-areas:
			"title"
			"text"
			"link";
		gap: 0.3rem;
		align-items: start;
		padding: 0.85rem 0.95rem;
	}
	#appliances .rf-appliance--compact .rf-link-more {
		justify-self: start;
	}
}

#appliances .rf-heading--center {
	margin-bottom: clamp(0.85rem, 2vw, 1.25rem) !important;
}
#appliances .rf-heading--center::after {
	display: none !important;
}

/* Locations hub: text tiles only */
.rf-locations-hub__grid--text {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.75rem;
}
.rf-locations-hub__grid--text .rf-location-card--text {
	border: 1px solid var(--rf-line);
	border-radius: 4px;
	background: #fff;
	box-shadow: none;
	min-height: 0;
}
.rf-locations-hub__grid--text .rf-location-card__pin,
.rf-locations-hub__grid--text .rf-location-card__region,
.rf-locations-hub__grid--text .rf-location-card__text {
	display: none;
}
.rf-locations-hub__grid--text .rf-location-card__body {
	padding: 1rem 0.9rem;
}
.rf-locations-hub__grid--text .rf-location-card__title {
	font-size: 0.92rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 0.5rem;
}
.rf-locations-hub__grid--text .rf-location-card__cta {
	font-size: 0.85rem;
	color: var(--rf-primary);
}
@media (max-width: 1000px) {
	.rf-locations-hub__grid--text {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media (max-width: 640px) {
	.rf-locations-hub__grid--text {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Parts: editorial split without muted card panel */
.rf-parts__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
	gap: 2.5rem;
	align-items: start;
}
.rf-parts__list {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}
.rf-parts__list li {
	display: grid;
	gap: 0.2rem;
	padding-left: 0.9rem;
	border-left: 3px solid var(--rf-primary);
}
.rf-parts__list strong {
	color: var(--rf-ink);
}
.rf-parts__list span {
	color: var(--rf-muted);
	font-size: 0.95rem;
}
.rf-parts__aside {
	padding: 1.5rem 0 0;
	border-top: 1px solid var(--rf-line-strong);
}
.rf-parts__aside h3 {
	margin: 0 0 1rem;
	font-size: 1.25rem;
}
.rf-parts__cta {
	margin-top: 1.25rem;
}
@media (max-width: 800px) {
	.rf-parts__layout {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}
}

/* Footer locations: use main.css accordion (details hubs); Wolf link tone only */
.rf-footer-locs__cities a {
	color: #b9b4aa;
}
.rf-footer-locs__cities a:hover {
	color: #fff;
}
.rf-footer-locs__count {
	color: #7a746a;
}
/* Desktop: keep accordion (main.css forces cities always open ≥768) */
@media (min-width: 768px) {
	.rf-footer-locs__hub-head {
		pointer-events: auto !important;
		cursor: pointer;
		margin-bottom: 0.35rem;
	}
	.rf-footer-locs__hub .rf-footer-locs__cities {
		display: none !important;
	}
	.rf-footer-locs__hub[open] .rf-footer-locs__cities {
		display: grid !important;
	}
	.rf-footer-locs__hub[open] .rf-footer-locs__hub-head {
		margin-bottom: 0.55rem;
	}
	.rf-footer-locs__hub-meta {
		display: inline-flex !important;
	}
	.rf-footer-locs__chevron {
		display: inline-flex !important;
		align-items: center;
		transition: transform 0.2s ease;
	}
	.rf-footer-locs__hub[open] .rf-footer-locs__chevron {
		transform: rotate(180deg);
	}
	.rf-footer-locs__hub-title {
		pointer-events: auto !important;
		flex: 1 1 auto !important;
	}
}

/* Archive grids: 3 columns so 12/page fills evenly */
.rf-grid.rf-grid--auto,
.rf-models-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 1rem;
}
@media (max-width: 900px) {
	.rf-grid.rf-grid--auto,
	.rf-models-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}
@media (max-width: 560px) {
	.rf-grid.rf-grid--auto,
	.rf-models-grid {
		grid-template-columns: 1fr !important;
	}
}
.archive .rf-card--link,
.post-type-archive-service .rf-card--link,
.post-type-archive-appliance .rf-card--link,
.post-type-archive-appliance_model .rf-card--link {
	height: 100%;
	border-radius: 4px;
	box-shadow: none;
	border: 1px solid var(--rf-line);
	background: #fff;
	color: var(--rf-ink);
}
.post-type-archive-appliance .rf-card__title,
.post-type-archive-appliance .rf-card__title a,
.post-type-archive-service .rf-card__title,
.post-type-archive-service .rf-card__title a,
.post-type-archive-appliance_model .rf-card__title,
.post-type-archive-appliance_model .rf-card__title a {
	color: var(--rf-ink) !important;
}
.post-type-archive-appliance .rf-card__text,
.post-type-archive-service .rf-card__text,
.post-type-archive-appliance_model .rf-card__text {
	color: var(--rf-muted) !important;
}
.post-type-archive-appliance .rf-card__media,
.post-type-archive-service .rf-card__media {
	display: block;
	overflow: hidden;
	background: var(--rf-surface-2);
}
.post-type-archive-appliance .rf-card__media img,
.post-type-archive-service .rf-card__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	opacity: 1;
}
.post-type-archive-appliance_model .rf-card__text {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Booking form: same footprint, iron/ember chrome (not Bosch white card) */
.rf-form,
#booking .rf-form,
.rf-modal__body .rf-form {
	background: #fff;
	border: 1px solid var(--rf-line-strong);
	border-radius: 2px;
	box-shadow: none;
	padding: 1.25rem 1.35rem 1.4rem;
}
.rf-form .rf-field,
.rf-form input,
.rf-form select,
.rf-form textarea {
	border-radius: 2px;
}
.rf-form .rf-btn--primary,
.rf-form button[type="submit"] {
	border-radius: 2px;
	background: var(--wolf-iron, #141210);
	border-color: var(--wolf-iron, #141210);
}
.rf-form .rf-btn--primary:hover,
.rf-form button[type="submit"]:hover {
	background: var(--rf-primary);
	border-color: var(--rf-primary);
}

/* About “How to get started” — balanced equal-height steps */
.rf-about-start__panel {
	border-radius: 4px;
	box-shadow: none;
	border: 1px solid var(--rf-line-strong);
	padding: clamp(1.5rem, 3.5vw, 2.25rem);
}
.rf-about-start__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.25rem 2rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1.35rem;
	border-bottom: 1px solid var(--rf-line);
}
.rf-about-start__copy {
	max-width: 38rem;
	margin-bottom: 0;
}
.rf-about-start__copy h2 {
	margin: 0.4rem 0 0.65rem;
	font-size: clamp(1.45rem, 2.6vw, 1.9rem);
	line-height: 1.15;
}
.rf-about-start__copy p {
	margin: 0;
	color: var(--rf-muted);
	font-size: 0.98rem;
	line-height: 1.55;
	max-width: 36rem;
}
.rf-about-start__cta {
	margin: 0;
	flex: 0 0 auto;
}
.rf-about-start__steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	border: 1px solid var(--rf-line-strong);
	border-radius: 4px;
	overflow: hidden;
	background: #fff;
}
.rf-about-step {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	height: 100%;
	min-height: 8.5rem;
	padding: 1.15rem 1.2rem 1.25rem;
	background: transparent;
	border: 0;
	border-radius: 0;
	border-right: 1px solid var(--rf-line-strong);
}
.rf-about-step:last-child {
	border-right: 0;
}
.rf-about-step__num {
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: var(--rf-primary);
}
.rf-about-step__title {
	display: block;
	margin: 0;
	color: var(--rf-ink);
	font-size: 1.02rem;
	line-height: 1.25;
}
.rf-about-step__text {
	display: block;
	margin: 0;
	color: var(--rf-muted);
	font-size: 0.9rem;
	line-height: 1.45;
	flex: 1;
}
@media (max-width: 900px) {
	.rf-about-start__head {
		flex-direction: column;
		align-items: flex-start;
	}
	.rf-about-start__steps {
		grid-template-columns: 1fr;
	}
	.rf-about-step {
		min-height: 0;
		border-right: 0;
		border-bottom: 1px solid var(--rf-line-strong);
	}
	.rf-about-step:last-child {
		border-bottom: 0;
	}
}

/* =========================================================================
   White site canvas + closeout alignment (no beige banding)
   ========================================================================= */
body,
.rf-section,
.rf-section--alt,
.rf-section--tight,
.rf-section:has(.rf-cta-banner),
#booking-section,
.rf-page-header,
.rf-hero,
.rf-expertise--editorial,
.rf-locations--hub {
	background: #fff !important;
	background-image: none !important;
	box-shadow: none !important;
}

.rf-section:has(.rf-cta-banner) {
	padding-block: clamp(1.25rem, 2.5vw, 2rem);
}

.rf-section--alt + .rf-section--alt,
.rf-section--alt + .rf-section:has(.rf-cta-banner),
.rf-section:has(.rf-cta-banner) + .rf-section--alt,
.rf-section:has(.rf-cta-banner) + #booking-section {
	padding-top: 0;
}

.rf-section--tight + .rf-section--tight {
	padding-top: clamp(0.65rem, 1.5vw, 1rem);
}

/* Tighter vertical rhythm site-wide */
.rf-section {
	padding-block: clamp(2rem, 4vw, 3.25rem) !important;
}

.rf-section--tight {
	padding-block: clamp(1.15rem, 2.5vw, 1.85rem) !important;
}

#booking-section.rf-section {
	padding-block: clamp(1.75rem, 3.5vw, 2.75rem) !important;
}

.rf-heading {
	margin-bottom: clamp(1.15rem, 2.5vw, 1.85rem) !important;
}

.rf-heading--center {
	margin-bottom: clamp(1.15rem, 2.5vw, 1.75rem) !important;
}

.rf-page-header {
	padding-block: clamp(1.5rem, 3.5vw, 2.35rem) !important;
}

.rf-hero--la {
	min-height: clamp(380px, 38vw, 520px);
}

.rf-split {
	gap: clamp(1.35rem, 3vw, 2.25rem);
}

.rf-cta-banner {
	padding: clamp(1.35rem, 3vw, 2rem);
}

.rf-section:has(.rf-cta-banner) > .rf-container,
#booking-section > .rf-container {
	max-width: min(var(--rf-container), 960px);
}

#booking-section .rf-split {
	align-items: start;
}

.rf-cta-banner__actions .rf-btn {
	gap: 0.55rem;
}

/* Mobile drawer — dark lockup on white panel */
.rf-drawer .rf-brand {
	flex: 1 1 auto;
	min-width: 0;
}
.rf-drawer .rf-brand__img,
.rf-drawer .rf-brand__img--drawer,
.rf-drawer .rf-brand__logo img {
	display: block;
	height: 36px;
	width: auto;
	max-width: min(148px, 58vw);
	object-fit: contain;
}
/* Model / error-code — two fact cards fill the column (no auto-fit leftover) */
body.single-appliance_model .rf-section--tight:has(.rf-byline) {
	padding-bottom: clamp(1rem, 2vw, 1.35rem);
}

body.single-appliance_model .rf-section--tight:has(.rf-factgrid) {
	padding-top: 0;
}

body.single-appliance_model .rf-factgrid,
body.single-error_code .rf-factgrid,
.rf-ec-block .rf-factgrid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	width: 100%;
	max-width: none;
}

body.single-appliance_model .rf-fact,
body.single-error_code .rf-fact,
.rf-ec-block .rf-fact {
	min-width: 0;
	padding: 1.05rem 1.25rem 1.05rem 1.45rem;
}

@media (max-width: 640px) {
	body.single-appliance_model .rf-factgrid,
	body.single-error_code .rf-factgrid,
	.rf-ec-block .rf-factgrid {
		grid-template-columns: 1fr;
	}
}



