/*
 * KitchenAid brand visual language — Manrope brand type, soft radii, black/white/gray.
 * Overrides main.css for homepage and global brand presentation.
 */

/* =========================================================================
   Design tokens (KitchenAid reference palette)
   ========================================================================= */
:root {
	/* KitchenAid Appliance Repair — mirrors main.css tokens for overlay sheet. */
	--rf-ka-red: #C41230;
	--rf-ka-red-hover: #9E0E27;
	--rf-ka-red-soft: #C0343B;
	--rf-ka-black: #000000;
	--rf-ka-charcoal: #3F3F40;
	--rf-ka-gray: #696969;
	--rf-ka-gray-2: #727273;
	--rf-ka-section: #F0F0F0;
	--rf-ka-border: #E3E4E6;
	--rf-ka-white: #FFFFFF;

	--rf-black: var(--rf-ka-black);
	--rf-deep-black: var(--rf-ka-black);
	--rf-white: var(--rf-ka-white);
	--rf-warm-white: var(--rf-ka-white);
	--rf-soft-gray: var(--rf-ka-section);
	--rf-border: var(--rf-ka-border);
	--rf-text-dark: var(--rf-ka-charcoal);
	--rf-muted: var(--rf-ka-gray);
	--rf-brass: var(--rf-ka-red); /* legacy accent token → KitchenAid red */

	--rf-ink: var(--rf-text-dark);
	/* Keep --rf-charcoal as black for dark chrome (header/footer); body text uses --rf-text-dark / --rf-ink. */
	--rf-charcoal: var(--rf-ka-black);
	--rf-surface: var(--rf-warm-white);
	--rf-surface-2: var(--rf-soft-gray);
	--rf-line: var(--rf-border);
	--rf-bg-dark: var(--rf-black);
	--rf-bg-deep: var(--rf-deep-black);
	--rf-text-on-dark: var(--rf-white);
	--rf-text-on-dark-muted: rgba(255, 255, 255, 0.78);
	--rf-border-dark: rgba(255, 255, 255, 0.22);
	--rf-primary: var(--rf-ka-red);
	--rf-primary-dark: var(--rf-ka-red-hover);
	--rf-accent: var(--rf-ka-red);
	--rf-accent-dark: var(--rf-ka-red-hover);

	--font-brand: "Avenir Next", "Avenir", "Manrope", "Helvetica Neue", Arial, sans-serif;
	--rf-font: var(--font-brand);
	--rf-font-body: var(--font-brand);
	--rf-font-display: var(--font-brand);
	--rf-font-serif: var(--font-brand);
	--rf-fs-base: 16px;
	--rf-lh-base: 1.55;

	--radius-xs: 6px;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 20px;
	--radius-pill: 999px;
	--rf-radius-xs: var(--radius-xs);
	--rf-radius-sm: var(--radius-sm);
	--rf-radius: var(--radius-md);
	--rf-radius-md: var(--radius-md);
	--rf-radius-lg: var(--radius-lg);
	--rf-radius-xl: var(--radius-xl);
	--rf-radius-pill: var(--radius-pill);
	--rf-radius-btn: 999px; /* KitchenAid pill / stadium buttons */

	--rf-shadow-sm: none;
	--rf-shadow: none;
	--rf-shadow-lg: none;

	--rf-header-h: 64px;
}

@media (min-width: 901px) {
	.rf-header .rf-header__inner {
		min-height: 56px;
		gap: 1rem;
	}

	.rf-header .rf-brand__img--header,
	.rf-header .rf-brand__img {
		height: 32px;
		max-width: min(168px, 28vw);
	}

	.rf-header .rf-nav a {
		padding: 0.4rem 0.6rem;
		font-size: 0.9rem;
	}

	.rf-header .rf-header__actions .rf-btn--primary {
		min-height: 36px;
		padding-inline: 1.1rem;
	}

	.rf-header .rf-phone-btn {
		padding: 0.35rem 0.5rem;
	}
}

/* =========================================================================
   Typography — Manrope / Avenir-adjacent brand system
   ========================================================================= */
body,
button,
input,
select,
textarea {
	font-family: var(--font-brand);
}

body {
	color: var(--rf-text-dark);
	background: var(--rf-warm-white);
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.55;
}

h1, h2, h3, h4, h5, h6,
.rf-display,
.rf-heading__title,
.rf-editorial__title,
.rf-cat-tile__label,
.rf-feature-banner__title {
	font-family: var(--font-brand);
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: var(--rf-text-dark);
}

h1, .rf-display, .rf-hero__title {
	font-size: clamp(42px, 5vw, 66px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.025em;
}

h2, .rf-heading__title, .rf-editorial__title {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

h3 {
	font-size: clamp(24px, 2.4vw, 30px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.015em;
}

.rf-eyebrow,
.rf-heading__eyebrow,
.rf-hero__badge,
.rf-editorial__eyebrow {
	font-family: var(--font-brand);
	font-size: 13px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--rf-ka-charcoal, #3F3F40);
	background: var(--rf-soft-gray, #F5F5F5);
	border: 1px solid var(--rf-border, #E5E5E5);
}

.rf-heading__text,
.rf-hero__lead,
.rf-editorial__text,
p {
	font-family: var(--font-brand);
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 1.55;
}

.rf-serif-accent {
	font-family: var(--font-brand);
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.55;
	color: var(--rf-text-on-dark-muted);
}

a {
	color: inherit;
	text-decoration-color: var(--rf-border);
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--rf-text-dark);
}

/* =========================================================================
   Layout & sections
   ========================================================================= */
body.rf-front .rf-section {
	padding-block: clamp(5rem, 8vw, 8.125rem);
}

body.rf-interior .rf-section {
	padding-block: clamp(2rem, 4vw, 3.25rem);
}

body.rf-interior .rf-section--tight {
	padding-block: clamp(1.25rem, 2.5vw, 2rem);
}

/* Fallback when body class missing (legacy markup). */
.rf-section {
	padding-block: clamp(5rem, 8vw, 8.125rem);
}

.rf-section--alt,
.rf-section--editorial {
	background: var(--rf-warm-white);
}

.rf-section--ink {
	background: var(--rf-black);
	color: var(--rf-white);
}

.rf-section--ink .rf-heading__title,
.rf-section--ink h2,
.rf-section--ink h3 {
	color: var(--rf-white);
}

.rf-section--ink .rf-heading__text {
	color: var(--rf-text-on-dark-muted);
}

/* =========================================================================
   Buttons — KitchenAid pill / stadium style
   ========================================================================= */
.rf-btn {
	border-radius: var(--rf-radius-btn);
	font-family: var(--font-brand);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	box-shadow: none;
	transform: none;
	padding: 0 1.65rem;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.rf-btn:hover,
.rf-btn:active {
	transform: none;
	box-shadow: none;
}

.rf-btn--primary {
	background: var(--rf-ka-red);
	color: var(--rf-white);
	border: 1px solid var(--rf-ka-red);
	box-shadow: none;
}

.rf-btn--secondary {
	background: var(--rf-white);
	color: var(--rf-ka-black);
	border: 1px solid var(--rf-ka-black);
}

.rf-btn--outline-light,
.rf-btn--onink,
.rf-btn--ghost-light {
	background: transparent;
	color: var(--rf-white);
	border: 1px solid var(--rf-border);
}

.rf-btn--ghost {
	background: transparent;
	border: 1px solid var(--rf-border);
	color: var(--rf-text-dark);
}

/* Light-surface button hovers */
@media (hover: hover) {
	.rf-btn--primary:hover,
	.rf-btn--primary:focus-visible {
		background: var(--rf-ka-red-hover);
		color: var(--rf-white);
		border-color: var(--rf-ka-red-hover);
	}

	.rf-btn--secondary:hover,
	.rf-btn--secondary:focus-visible {
		background: var(--rf-ka-black);
		color: var(--rf-white);
		border-color: var(--rf-ka-black);
	}
}

/* Dark-surface outline buttons — inverted on hover */
@media (hover: hover) {
	.rf-section--ink .rf-btn--outline-light:hover,
	.rf-section--ink .rf-btn--outline-light:focus-visible,
	.rf-section--ink .rf-btn--onink:hover,
	.rf-section--ink .rf-btn--onink:focus-visible,
	.rf-section--ink .rf-btn--ghost-light:hover,
	.rf-section--ink .rf-btn--ghost-light:focus-visible {
		background: var(--rf-white);
		color: var(--rf-text-dark);
		border-color: var(--rf-white);
	}

	.rf-section--ink .rf-btn--outline-light:hover .rf-icon,
	.rf-section--ink .rf-btn--outline-light:focus-visible .rf-icon,
	.rf-section--ink .rf-btn--onink:hover .rf-icon,
	.rf-section--ink .rf-btn--onink:focus-visible .rf-icon {
		color: var(--rf-text-dark);
	}

	.rf-section--ink .rf-btn--primary:hover,
	.rf-section--ink .rf-btn--primary:focus-visible,
	.rf-section--ink .rf-btn--secondary:hover,
	.rf-section--ink .rf-btn--secondary:focus-visible {
		background: var(--rf-white);
		color: var(--rf-text-dark);
		border-color: var(--rf-white);
	}
}

/* =========================================================================
   Announcement bar
   ========================================================================= */
.rf-announce {
	background: var(--rf-deep-black);
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.3;
	border-bottom: 1px solid var(--rf-border-dark);
}

.rf-announce__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.35rem 1rem;
	flex-wrap: wrap;
	padding-block: 0.3rem;
}

.rf-announce__note {
	font-size: 0.6875rem;
	line-height: 1.25;
	color: rgba(255, 255, 255, 0.5);
}

.rf-announce a {
	color: var(--rf-white);
	font-weight: 500;
	text-decoration: none;
}

.rf-announce a:hover {
	color: var(--rf-ka-red);
	opacity: 1;
}

.rf-announce__dot {
	background: var(--rf-brass);
	width: 4px;
	height: 4px;
}

.rf-announce__item .rf-icon {
	color: var(--rf-white);
	opacity: 0.85;
}

/* =========================================================================
   Header — white bar (official KitchenAid store pattern)
   ========================================================================= */
.rf-header--luxury {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid var(--rf-border, #e6e6e6);
	backdrop-filter: none;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.rf-header--luxury .rf-header__inner {
	min-height: 76px;
}

.rf-header--luxury .rf-brand {
	flex-shrink: 0;
	min-width: 0;
}

/* PNG lockups — explicit height preserves 1024×210 artboard aspect. */
.rf-header--luxury .rf-brand__img--header,
.rf-header--luxury .rf-brand__img--drawer,
.rf-brand__img--footer {
	display: block;
	flex: none;
	width: auto;
	object-fit: contain;
	object-position: left center;
	filter: none;
}

.rf-header--luxury .rf-brand__img--header,
.rf-header--luxury .rf-brand__img--drawer {
	height: 44px;
	max-width: min(220px, 48vw);
}

.rf-brand__img--footer {
	height: 40px;
	max-width: min(200px, 48vw);
}

.rf-header--luxury .rf-header__actions {
	position: static;
	margin-left: auto;
	gap: 0.75rem;
}

.rf-header--luxury .rf-header__actions .rf-btn--primary {
	min-height: 42px;
	padding-inline: 1.35rem;
}

.rf-header--luxury .rf-phone-btn {
	color: var(--rf-ka-charcoal, #3F3F40);
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.01em;
	border-radius: var(--rf-radius-btn);
}

.rf-header--luxury .rf-phone-btn .rf-icon {
	color: var(--rf-ka-red);
	opacity: 1;
}

@media (hover: hover) {
	.rf-header--luxury .rf-phone-btn:hover,
	.rf-header--luxury .rf-phone-btn:focus-visible {
		color: var(--rf-ka-red);
		background: color-mix(in srgb, var(--rf-ka-red) 8%, #fff);
	}
}

.rf-nav__list {
	gap: 0 1.5rem;
}

.rf-nav a {
	color: var(--rf-ka-charcoal, #3F3F40);
	font-family: var(--font-brand);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.02em;
	text-transform: none;
	padding: 0.25rem 0;
}

.rf-nav a:hover,
.rf-nav .current-menu-item > a,
.rf-nav .current_page_item > a {
	color: var(--rf-ka-red);
}

.rf-nav a::after {
	background: var(--rf-ka-red);
	height: 1px;
}

.rf-nav-toggle {
	color: var(--rf-ka-charcoal, #3F3F40);
	border: 1px solid var(--rf-border, #e6e6e6);
	border-radius: var(--rf-radius-btn);
	background: transparent;
}

@media (hover: hover) {
	.rf-nav-toggle:hover,
	.rf-nav-toggle:focus-visible {
		color: var(--rf-ka-red);
		border-color: color-mix(in srgb, var(--rf-ka-red) 35%, #e6e6e6);
		background: color-mix(in srgb, var(--rf-ka-red) 6%, #fff);
	}
}

/* =========================================================================
   Hero — full-width campaign photography
   ========================================================================= */
.rf-hero--campaign {
	position: relative;
	isolation: isolate;
	color: var(--rf-white);
	background: var(--rf-deep-black);
	min-height: clamp(500px, 54vh, 600px);
	overflow: hidden;
}

.rf-hero--campaign .rf-hero__media {
	position: absolute;
	inset: 0;
	background-image: var(--rf-hero-image);
	background-size: cover;
	background-position: 42% center;
	background-repeat: no-repeat;
}

.rf-hero--campaign .rf-hero__gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.88) 0%,
		rgba(0, 0, 0, 0.68) 30%,
		rgba(0, 0, 0, 0.28) 56%,
		rgba(0, 0, 0, 0) 75%
	);
	pointer-events: none;
}

.rf-hero--campaign .rf-hero__container {
	position: relative;
	z-index: 1;
	min-height: clamp(500px, 54vh, 600px);
	display: flex;
	align-items: center;
	padding-block: clamp(2.5rem, 4vw, 3.5rem);
}

.rf-hero--campaign .rf-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(480px, 580px);
	gap: clamp(2.5rem, 5vw, 4.5rem);
	align-items: center;
	width: 100%;
}

.rf-hero--campaign .rf-hero__content {
	max-width: none;
}

.rf-hero--campaign .rf-hero__badge {
	display: block;
	margin-bottom: 1.5rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	letter-spacing: 0.12em;
	font-family: var(--font-brand);
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	border-radius: 0 !important;
	font-weight: 700 !important;
}

.rf-hero--campaign .rf-hero__title {
	color: var(--rf-white);
	margin-bottom: 1rem;
	font-family: var(--font-brand);
	font-weight: 700;
	font-size: clamp(42px, 5vw, 66px);
	line-height: 1.05;
	letter-spacing: -0.025em;
	text-shadow: none;
	max-width: 12em;
}

.rf-hero--campaign .rf-hero__title-line {
	display: inline;
}

.rf-hero--campaign .rf-hero__lead {
	color: rgba(255, 255, 255, 0.88);
	max-width: 38rem;
	margin-bottom: 1.25rem;
	font-size: 1.0625rem;
	line-height: 1.55;
}

.rf-hero--campaign .rf-hero__card {
	display: block !important;
	position: relative;
	background: var(--rf-white);
	color: var(--rf-text-dark);
	border: 1px solid rgba(255, 255, 255, 0.12);
	/* Red top accent on the border itself — avoids ::before subpixel gap vs white fill */
	border-top: 3px solid var(--rf-ka-red, #c41230);
	border-radius: 14px;
	box-shadow: 0 28px 72px rgba(0, 0, 0, 0.38);
	padding: 1.45rem 1.45rem 1.2rem;
	overflow: hidden;
}

/* Shared-template floating flag — hide if leftover markup appears */
.rf-hero--campaign .rf-hero__flag {
	display: none !important;
}

.rf-hero--campaign .rf-hero__card-head {
	margin: 0 0 1.05rem;
	padding: 0 0 0.95rem;
	border-bottom: 1px solid rgba(63, 63, 64, 0.12);
}

.rf-hero--campaign .rf-hero__card-eyebrow {
	margin: 0 0 0.35rem;
	font-family: var(--font-brand);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--rf-ka-red, #c41230);
}

.rf-hero--campaign .rf-hero__form-title {
	font-family: var(--font-brand);
	font-size: clamp(1.35rem, 2.2vw, 1.6rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	text-transform: none;
	color: var(--rf-text-dark);
	margin: 0 0 0.45rem;
	line-height: 1.15;
}

.rf-hero--campaign .rf-hero__card-promise {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem 0.55rem;
	margin: 0;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--rf-ka-charcoal, #3f3f40);
}

.rf-hero--campaign .rf-hero__card-promise span[aria-hidden="true"] {
	color: rgba(63, 63, 64, 0.4);
	font-weight: 400;
}

.rf-hero--campaign .rf-hero__card .rf-form {
	gap: 0.7rem;
}

.rf-hero--campaign .rf-hero__card .rf-form__row {
	gap: 0.75rem;
}

.rf-form--hero .rf-field--full input {
	min-height: 48px;
}

.rf-hero--campaign .rf-hero__card .rf-field label {
	color: var(--rf-ka-charcoal, #3f3f40);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rf-hero--campaign .rf-hero__card .rf-field input,
.rf-hero--campaign .rf-hero__card .rf-field select {
	padding: 0.7rem 0.85rem;
	font-size: 0.95rem;
	min-height: 2.85rem;
	border: 1px solid rgba(63, 63, 64, 0.18);
	border-radius: var(--radius-sm, 8px);
	background-color: rgba(63, 63, 64, 0.04);
	box-shadow: none;
}

.rf-hero--campaign .rf-hero__card .rf-field select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 2.5rem;
	background-color: rgba(63, 63, 64, 0.04);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235C5C5C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.85rem center;
	background-size: 12px 8px;
}

.rf-hero--campaign .rf-hero__card .rf-field input:hover,
.rf-hero--campaign .rf-hero__card .rf-field select:hover {
	background-color: rgba(196, 18, 48, 0.04);
	border-color: rgba(196, 18, 48, 0.35);
}

.rf-hero--campaign .rf-hero__card .rf-field input:focus,
.rf-hero--campaign .rf-hero__card .rf-field select:focus,
.rf-hero--campaign .rf-hero__card .rf-field input:focus-visible,
.rf-hero--campaign .rf-hero__card .rf-field select:focus-visible {
	outline: none;
	background-color: #fff;
	border-color: var(--rf-ka-red, #c41230);
	box-shadow: none;
}

.rf-hero--campaign .rf-hero__card .rf-consent {
	align-items: flex-start;
	gap: 0.65rem;
}

.rf-hero--campaign .rf-hero__card .rf-consent input[type="checkbox"] {
	min-height: 0;
	padding: 0;
	margin-top: 0.15em;
	width: 1.05rem;
	height: 1.05rem;
	accent-color: var(--rf-ka-red, #c41230);
}

.rf-hero--campaign .rf-hero__card .rf-consent label {
	text-transform: none;
	letter-spacing: 0;
	font-size: 0.74rem;
	line-height: 1.45;
	font-weight: 500;
	color: var(--rf-ka-charcoal, #3f3f40);
}

.rf-hero--campaign .rf-hero__card .rf-form__note {
	font-size: 0.72rem;
	margin-top: -0.1rem;
	color: rgba(63, 63, 64, 0.72);
}

.rf-hero--campaign .rf-hero__card .rf-btn--lg {
	padding: 0.85rem 1.1rem;
	font-size: 0.84rem;
	letter-spacing: 0.06em;
	border-radius: var(--rf-radius-btn, 999px);
	margin-top: 0.15rem;
}

.rf-hero--campaign .rf-hero__card-foot {
	display: block;
	margin-top: 1rem;
	padding-top: 0.95rem;
	border-top: 1px solid rgba(63, 63, 64, 0.12);
}

.rf-hero--campaign .rf-hero__card-call {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 0.55rem;
	padding: 0;
	text-decoration: none;
	color: inherit;
	background: transparent;
	border: 0;
	border-radius: 0;
	transition: color 0.15s ease;
}

.rf-hero--campaign .rf-hero__card-call:hover .rf-hero__card-call-num {
	color: var(--rf-ka-red-hover, #9e0e27);
}

.rf-hero--campaign .rf-hero__card-call .rf-icon {
	flex: none;
	width: 1.05rem;
	height: 1.05rem;
	align-self: center;
	color: var(--rf-ka-red, #c41230);
}

.rf-hero--campaign .rf-hero__card-call-label {
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--rf-ka-charcoal, #3f3f40);
}

.rf-hero--campaign .rf-hero__card-call-num {
	font-family: var(--font-brand);
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--rf-ka-red, #c41230);
	margin-left: auto;
}

.rf-hero--campaign .rf-hero__trust {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 0.75rem 1.5rem;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.875rem;
	line-height: 1.45;
}

.rf-hero--campaign .rf-hero__trust li {
	display: grid;
	grid-template-columns: 1.1rem minmax(0, 1fr);
	align-items: start;
	column-gap: 0.45rem;
	max-width: 17rem;
}

.rf-hero--campaign .rf-hero__trust li::before {
	content: none;
}

.rf-hero--campaign .rf-hero__trust-ico {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 1.1rem;
	height: 1.1rem;
	margin-top: 0.15em;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.92);
}

.rf-hero--campaign .rf-hero__trust-ico .rf-icon {
	width: 1.1rem;
	height: 1.1rem;
	color: inherit;
	stroke-width: 1.8;
}

.rf-hero::before,
.rf-hero__media::before,
.rf-hero__media::after,
.rf-hero-figure {
	display: none !important;
}

/* =========================================================================
   Editorial intro block (KitchenAid craftsmanship section)
   ========================================================================= */
.rf-section--editorial {
	padding-block: clamp(6.25rem, 10vw, 8.75rem);
	text-align: center;
}

.rf-editorial {
	max-width: 1000px;
	margin-inline: auto;
}

.rf-editorial__eyebrow {
	display: block;
	margin-bottom: 1.75rem;
}

.rf-editorial__title {
	margin-bottom: 1.75rem;
	color: var(--rf-text-dark);
}

.rf-editorial__text {
	max-width: 760px;
	margin-inline: auto;
	color: var(--rf-muted);
}

/* =========================================================================
   Category photo tiles — match KA shop cards (~12px radius + gap)
   ========================================================================= */
.rf-cat-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0.75rem;
	width: 100%;
	padding-inline: clamp(1rem, 3vw, 1.5rem);
	box-sizing: border-box;
}

.rf-cat-grid--extended {
	margin-top: 0.75rem;
	grid-template-columns: repeat(4, 1fr);
}

.rf-cat-tile {
	position: relative;
	display: block;
	min-height: clamp(220px, 28vw, 340px);
	overflow: hidden;
	text-decoration: none;
	color: var(--rf-white);
	border: none;
	border-radius: var(--radius-md); /* 12px — same ballpark as kitchenaid.ua cards */
	background: var(--rf-deep-black);
}

.rf-cat-tile__media {
	position: absolute;
	inset: 0;
	background-image: var(--rf-cat-image);
	background-size: cover;
	background-position: center;
	transition: transform 0.45s ease;
}

.rf-cat-tile:hover .rf-cat-tile__media {
	transform: scale(1.03);
}

.rf-cat-tile__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.08) 55%, rgba(0, 0, 0, 0.35) 100%);
}

.rf-cat-tile__label {
	position: relative;
	z-index: 1;
	display: block;
	padding: 1.35rem 1rem 0;
	font-family: var(--font-brand);
	font-weight: 700;
	font-size: clamp(0.95rem, 1.4vw, 1.125rem);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-align: center;
	color: var(--rf-white);
}

.rf-section--categories {
	padding-block: 0;
}

.rf-section--categories .rf-heading {
	padding-block: clamp(4rem, 7vw, 6.5rem) 2.5rem;
	text-align: center;
	max-width: 900px;
	margin-inline: auto;
}

.rf-section--categories .rf-heading__eyebrow {
	margin-bottom: 1rem;
}

.rf-section--categories .rf-heading__title {
	font-size: clamp(2rem, 3vw, 2.75rem);
	letter-spacing: 0.04em;
}

.rf-section--categories .rf-heading__text {
	max-width: 680px;
	margin-inline: auto;
}

/* =========================================================================
   Feature banner (edge-to-edge photography)
   ========================================================================= */
.rf-feature-banner {
	position: relative;
	min-height: clamp(420px, 50vh, 560px);
	display: flex;
	align-items: center;
	color: var(--rf-white);
	overflow: hidden;
}

.rf-feature-banner__media {
	position: absolute;
	inset: 0;
	background-image: var(--rf-feature-image);
	background-size: cover;
	background-position: center;
}

.rf-feature-banner__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.rf-feature-banner__inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
	padding-block: clamp(4rem, 8vw, 6rem);
}

.rf-feature-banner__eyebrow {
	font-family: var(--font-brand);
	font-size: 0.875rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.82);
	margin-bottom: 1.25rem;
	display: block;
}

.rf-feature-banner__title {
	color: var(--rf-white);
	margin-bottom: 1rem;
	font-size: clamp(2.25rem, 4vw, 3.25rem);
}

.rf-feature-banner__text {
	color: rgba(255, 255, 255, 0.85);
	max-width: 520px;
	margin-bottom: 1.75rem;
}

.rf-section--feature {
	padding-block: 0;
}

.rf-section--feature .rf-feature-banner .rf-container {
	width: 100%;
}

/* =========================================================================
   Cards & grids — flat architectural
   ========================================================================= */
.rf-card,
.rf-service-card,
.rf-appliance,
.rf-location,
.rf-step,
.rf-guarantee,
.rf-review,
.rf-ec-card {
	border-radius: var(--radius-md); /* 12px — aligned with KA product cards */
	overflow: hidden;
	box-shadow: none;
	border: 1px solid var(--rf-border);
	background: var(--rf-white);
}

.rf-card--hover:hover,
.rf-service-card:hover,
.rf-appliance:hover {
	transform: none;
	box-shadow: none;
	border-color: var(--rf-ka-red);
}

.rf-card__icon,
.rf-appliance__icon {
	border-radius: 0;
	background: var(--rf-soft-gray);
	box-shadow: none;
}

.rf-card__icon .rf-icon,
.rf-appliance__icon .rf-icon {
	color: var(--rf-brass);
}

.rf-appliance,
.rf-service-card {
	padding: 1.5rem 1.5rem 1.125rem;
}

.rf-appliance__title,
.rf-service-card__title,
.rf-card__title {
	font-weight: 500;
	font-size: 0.9375rem;
	letter-spacing: 0.06em;
	line-height: 1.25;
	text-transform: uppercase;
	width: 100%;
	max-width: 100%;
	overflow: visible;
	padding-inline-end: 0.06em;
	overflow-wrap: normal;
	word-break: normal;
	hyphens: none;
}

.rf-appliance__text,
.rf-service-card__text {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--rf-muted);
	margin-bottom: 0;
	flex: 1 1 auto;
}

.rf-appliance {
	overflow: visible;
	align-items: stretch;
}

.rf-appliance__foot {
	margin-top: auto;
	padding-top: 0.85rem;
}

.rf-appliance__link.rf-link-more {
	font-family: var(--font-brand);
	font-weight: 500;
	font-size: 0.8125rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.rf-appliances-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

/* Neutralize legacy 8-col / span-2 placements from main.css so cards stay in-flow. */
.rf-appliances-grid > *,
.rf-appliances-grid > :nth-child(5),
.rf-appliances-grid > :nth-child(6),
.rf-appliances-grid > :nth-child(7) {
	min-width: 0;
	max-width: 100%;
	grid-column: auto;
}

@media (min-width: 768px) {
	.rf-appliances-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.rf-appliances-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.rf-grid.rf-grid--3 {
	gap: clamp(1rem, 2.4vw, 1.5rem);
	background-color: transparent;
	border: none;
}

.rf-grid.rf-grid--3 > .rf-card,
.rf-grid.rf-grid--3 > .rf-service-card,
.rf-grid.rf-grid--3 > .rf-guarantee,
.rf-grid.rf-grid--3 > .rf-step,
.rf-grid.rf-grid--3 > .rf-problem {
	border: 1px solid var(--rf-border);
	border-radius: var(--radius-lg);
	background: var(--rf-white);
}

.rf-grid.rf-grid--3 > .rf-card--hover:hover,
.rf-grid.rf-grid--3 > .rf-service-card:hover {
	border-color: var(--rf-ka-red);
	box-shadow: none;
}

/* =========================================================================
   CTA banner — KitchenAid remixed layout (brand rail + stacked actions)
   Distinct from Bosch/Viking left-copy / right-twin-buttons pattern.
   ========================================================================= */
.rf-cta-banner {
	--rf-cta-bg-image: none;
	position: relative;
	display: grid;
	grid-template-columns: minmax(9.5rem, 12.5rem) minmax(0, 1fr);
	align-items: stretch;
	color: var(--rf-white);
	overflow: hidden;
	border: 1px solid var(--rf-border-dark);
	border-radius: var(--radius-xl);
	background-color: #141414;
	background-image:
		linear-gradient(100deg, rgba(14, 14, 14, 0.92) 0%, rgba(14, 14, 14, 0.72) 42%, rgba(14, 14, 14, 0.48) 100%),
		var(--rf-cta-bg-image);
	background-position: center, 72% center;
	background-size: auto, cover;
	background-repeat: no-repeat, no-repeat;
	padding: 0;
	min-height: 0;
}

@media (max-width: 640px) {
	.rf-cta-banner {
		background-image:
			linear-gradient(180deg, rgba(14, 14, 14, 0.92) 0%, rgba(14, 14, 14, 0.8) 100%),
			var(--rf-cta-bg-image);
		background-position: center, 60% center;
		background-size: auto, cover;
	}
}

.rf-cta-banner::before {
	display: none;
}

.rf-cta-banner__rail {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.5rem;
	padding: clamp(1.5rem, 3vw, 2.25rem) 1.25rem;
	background: var(--rf-ka-red);
	color: #fff;
}

.rf-cta-banner__brand {
	font-family: var(--font-brand);
	font-size: clamp(1.35rem, 2.2vw, 1.7rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
}

.rf-cta-banner__rail-note {
	font-family: var(--font-brand);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.35;
	opacity: 0.92;
	max-width: 11ch;
}

.rf-cta-banner__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
	padding: clamp(1.5rem, 3.5vw, 2.5rem) clamp(1.35rem, 3.5vw, 2.75rem);
	background: transparent;
}

.rf-cta-banner__title,
.rf-cta-banner h2 {
	margin: 0;
	color: var(--rf-white);
	font-family: var(--font-brand);
	font-size: clamp(1.35rem, 2.4vw, 1.85rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
	text-transform: none;
	max-width: 22ch;
}

.rf-cta-banner__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.85rem 1.35rem;
}

.rf-cta-banner__actions .rf-btn--primary {
	box-shadow: none;
}

.rf-cta-banner__dial {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.1rem;
	text-decoration: none;
	color: #fff;
	min-width: 0;
}

.rf-cta-banner__dial:hover .rf-cta-banner__dial-num,
.rf-cta-banner__dial:focus-visible .rf-cta-banner__dial-num {
	color: color-mix(in srgb, var(--rf-ka-red) 35%, #fff);
}

.rf-cta-banner__dial-label {
	font-family: var(--font-brand);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.rf-cta-banner__dial-num {
	font-family: var(--font-brand);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.25;
	color: #fff;
	transition: color 0.15s ease;
}

.rf-cta-banner__text,
.rf-cta-banner p {
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
	font-family: var(--font-brand);
	font-size: 0.95rem;
	line-height: 1.5;
	max-width: 42ch;
}

/* Legacy hooks from older markup — keep harmless if unused */
.rf-cta-banner__inner,
.rf-cta-banner__content,
.rf-cta-banner__eyebrow {
	display: contents;
}

.rf-section:has(.rf-cta-banner) {
	padding-block: clamp(1.5rem, 3vw, 2.25rem);
}

.rf-section:has(.rf-cta-banner) > .rf-container {
	max-width: var(--rf-container, 72rem);
	padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* =========================================================================
   Footer
   ========================================================================= */
.rf-footer {
	background: var(--rf-deep-black);
	color: rgba(255, 255, 255, 0.62);
	border-top: 1px solid var(--rf-border-dark);
}

.rf-footer a:hover {
	color: var(--rf-white);
}

.rf-footer__col-title {
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 0.75rem;
	color: var(--rf-white);
}

/* =========================================================================
   Forms, error codes, sticky bar
   ========================================================================= */
.rf-field input,
.rf-field select,
.rf-field textarea {
	border-radius: var(--radius-sm);
	border: 1px solid var(--rf-border);
	box-shadow: none;
}

.rf-field input:focus,
.rf-field select:focus,
.rf-field textarea:focus {
	border-color: var(--rf-ka-red);
	box-shadow: none;
}

.rf-ec-card__code {
	color: var(--rf-brass);
	font-weight: 500;
}

.rf-sticky-bar {
	background: var(--rf-black);
	border-top: 1px solid var(--rf-border-dark);
}

.rf-sticky-bar .rf-btn {
	color: var(--rf-white);
	border-color: rgba(255, 255, 255, 0.35);
}

.rf-sticky-bar .rf-btn .rf-icon {
	color: var(--rf-white);
}

.rf-sticky-bar .rf-btn--primary {
	background: var(--rf-ka-red);
	color: var(--rf-white);
	border-color: var(--rf-ka-red);
}

.rf-sticky-bar .rf-btn--primary .rf-icon {
	color: var(--rf-white);
}

.rf-sticky-bar .rf-btn--secondary {
	background: transparent;
	color: var(--rf-white);
	border-color: rgba(255, 255, 255, 0.45);
}

@media (hover: hover) {
	.rf-sticky-bar .rf-btn--primary:hover,
	.rf-sticky-bar .rf-btn--primary:focus-visible {
		background: var(--rf-ka-red-hover);
		border-color: var(--rf-ka-red-hover);
		color: var(--rf-white);
	}

	.rf-sticky-bar .rf-btn--secondary:hover,
	.rf-sticky-bar .rf-btn--secondary:focus-visible {
		background: var(--rf-white);
		color: var(--rf-ka-black);
		border-color: var(--rf-white);
	}
}

.rf-drawer .rf-drawer__brand .rf-brand {
	flex: 1 1 auto;
	min-width: 0;
}

.rf-drawer .rf-brand__img--drawer {
	display: block;
	height: 38px;
	width: auto;
	max-width: min(180px, calc(100vw - 6.5rem));
	max-height: none;
	object-fit: contain;
	object-position: left center;
	filter: none;
}

.rf-cookie {
	border-radius: var(--radius-md);
	border-top: 1px solid var(--rf-border);
}

.rf-cookie__inner {
	padding: 0.5rem 0.7rem;
}

.rf-cookie .rf-btn {
	padding: 0.38rem 0.7rem;
	font-size: 0.78rem;
	min-height: 0;
}

/* Booking / contact: keep left column top-aligned; disclosure hugs content */
#booking-section .rf-split,
#contact .rf-split {
	align-items: start;
}

#booking-section .rf-nap,
#contact .rf-nap {
	margin-bottom: 0;
}

#booking-section .rf-disclosure,
#contact .rf-disclosure,
.rf-disclosure {
	margin-top: 1.15rem;
	padding: 0.85rem 1rem;
	align-self: start;
	height: auto;
	min-height: 0;
}

.rf-disclosure p {
	margin: 0;
	line-height: 1.45;
}

.rf-expertise__bg {
	opacity: 0.06;
}

.rf-expertise__card,
.rf-expertise__panel {
	border-radius: 0;
	box-shadow: none;
	background: var(--rf-white);
	border: 1px solid var(--rf-border);
}

.rf-heading__eyebrow::before {
	display: none;
}

/* =========================================================================
   Interior / database pages — shared layout system, KitchenAid palette only
   ========================================================================= */
.rf-ec-page.rf-section,
.rf-post-page.rf-section {
	padding-block: clamp(1.15rem, 2.4vw, 2rem);
}

.rf-ec-page__main {
	gap: clamp(1rem, 2vw, 1.45rem);
}

/* Error-code overview: same elements, tighter presentation */
.rf-ec-head {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 0.15rem;
}

.rf-ec-page .rf-ec-head .rf-byline {
	padding: 0.7rem 0.85rem;
	gap: 0.75rem 1.25rem;
	background: var(--rf-soft-gray, var(--rf-surface-2));
	border-color: var(--rf-border, var(--rf-line));
	box-shadow: none;
}

.rf-ec-page .rf-ec-head .rf-byline__avatar,
.rf-ec-page .rf-ec-head .rf-byline__badge {
	width: 32px;
	height: 32px;
}

.rf-ec-page .rf-ec-head .rf-byline__role {
	display: none;
}

.rf-ec-page .rf-ec-head .rf-byline__dates {
	gap: 0.25rem 0.9rem;
}

.rf-ec-status-row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.4rem 0.65rem;
}

.rf-ec-status-badge {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	font-family: var(--font-brand);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 0.28rem 0.7rem;
	border-radius: var(--radius-pill);
	line-height: 1.2;
	white-space: nowrap;
}

.rf-ec-status-badge--ok {
	background: #edfaef;
	color: #00733b;
}

.rf-ec-status-badge--info {
	background: var(--rf-soft-gray, var(--rf-surface-2));
	color: var(--rf-ka-charcoal, #3F3F40);
}

.rf-ec-status-badge--warn {
	background: #fcf3e7;
	color: #8a5a00;
}

.rf-ec-status-row__note {
	flex: 1 1 16rem;
	min-width: 0;
	font-family: var(--font-brand);
	font-size: 0.86rem;
	line-height: 1.4;
	color: var(--rf-muted);
}

.rf-ec-page .rf-ec-block .rf-factgrid {
	gap: 0.65rem;
}

.rf-ec-page .rf-ec-block .rf-fact {
	padding: 0.7rem 0.85rem;
}

.rf-ec-page .rf-ec-quick {
	padding: 0.85rem 1rem;
}

.rf-ec-page .rf-ec-quick__text {
	font-size: 1.02rem;
}

.rf-ec-page .rf-ec-disclaimer--quiet,
.rf-post-page .rf-ec-disclaimer--quiet {
	background: transparent;
	border-style: solid;
	border-color: var(--rf-border, var(--rf-line));
	padding: 0.7rem 0.85rem;
}

.rf-ec-page .rf-ec-disclaimer--quiet p,
.rf-post-page .rf-ec-disclaimer--quiet p {
	font-size: 0.86rem;
	color: var(--rf-muted);
}

.rf-ec-page .rf-heading,
.rf-post-page .rf-heading {
	max-width: none;
	margin-bottom: 1.1rem;
}

.rf-ec-page .rf-heading .rf-heading__title,
.rf-ec-page .rf-heading h2,
.rf-post-page .rf-heading .rf-heading__title,
.rf-post-page .rf-heading h2 {
	font-family: var(--font-brand);
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.2;
	text-transform: none;
	color: var(--rf-charcoal);
	margin-bottom: 0.45rem;
}

.rf-ec-page .rf-heading .rf-heading__eyebrow,
.rf-post-page .rf-heading .rf-heading__eyebrow {
	font-family: var(--font-brand);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--rf-muted);
	background: var(--rf-soft-gray);
	border: 1px solid var(--rf-border);
	border-radius: 0;
	padding: 0.3rem 0.65rem;
	margin-bottom: 0.65rem;
	display: inline-flex;
}

.rf-ec-page .rf-heading .rf-heading__text,
.rf-post-page .rf-heading .rf-heading__text {
	font-family: var(--font-brand);
	font-size: 0.98rem;
	font-style: normal;
	line-height: 1.55;
	color: var(--rf-muted);
	margin-top: 0.35rem;
}

.rf-ec-page .rf-checklist,
.rf-post-page .rf-checklist {
	margin-top: 0.85rem;
	gap: 0.6rem 1.25rem;
	max-width: 44rem;
}

/* Content-aware rows: short items sit side-by-side; long items span the full line. */
.rf-ec-page .rf-checklist--cols-2,
.rf-post-page .rf-checklist--cols-2 {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.rf-ec-page .rf-checklist--cols-2 li,
.rf-post-page .rf-checklist--cols-2 li {
	flex: 0 1 auto;
	max-width: 100%;
}

.rf-ec-page .rf-checklist--cols-2 li span,
.rf-post-page .rf-checklist--cols-2 li span {
	flex: 1 1 auto;
	min-width: 0;
}

.rf-ec-page .rf-checklist li,
.rf-post-page .rf-checklist li {
	font-size: 0.98rem;
	color: var(--rf-ink-2);
}

.rf-ec-page .rf-checklist .rf-icon,
.rf-post-page .rf-checklist .rf-icon {
	border-radius: 0;
	background: var(--rf-soft-gray);
	color: var(--rf-brass);
}

.rf-ec-page .rf-fact,
.rf-post-page .rf-fact {
	border-radius: var(--radius-md);
	border-left-color: var(--rf-brass);
	box-shadow: none;
}

.rf-ec-page .rf-ec-quick,
.rf-post-page .rf-ec-quick {
	border-radius: var(--radius-md);
	border-left-color: var(--rf-brass);
}

.rf-ec-page .rf-ec-disclaimer,
.rf-post-page .rf-ec-disclaimer {
	border-radius: var(--radius-md);
}

.rf-ec-page .rf-toc,
.rf-post-page .rf-toc {
	border-radius: 0;
	box-shadow: none;
}

/* EC article column is too narrow for side rail — use stacked strip layout. */
.rf-ec-page .rf-cta-banner,
.rf-ec-block .rf-cta-banner {
	grid-template-columns: 1fr;
}

.rf-ec-page .rf-cta-banner__rail,
.rf-ec-block .rf-cta-banner__rail {
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1rem;
	padding: 0.9rem 1.15rem;
}

.rf-ec-page .rf-cta-banner__brand,
.rf-ec-block .rf-cta-banner__brand {
	font-size: 1.15rem;
}

.rf-ec-page .rf-cta-banner__rail-note,
.rf-ec-block .rf-cta-banner__rail-note {
	max-width: none;
	text-align: right;
	font-size: 0.68rem;
	line-height: 1.3;
	flex: 0 1 auto;
}

.rf-ec-page .rf-cta-banner__body,
.rf-ec-block .rf-cta-banner__body {
	padding: 1.15rem 1.2rem 1.25rem;
	gap: 0.75rem;
}

.rf-ec-page .rf-cta-banner__title,
.rf-ec-page .rf-cta-banner h2,
.rf-ec-block .rf-cta-banner__title,
.rf-ec-block .rf-cta-banner h2 {
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	max-width: none;
}

.rf-ec-page .rf-cta-banner__actions,
.rf-ec-block .rf-cta-banner__actions {
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.75rem 1rem;
}

.rf-ec-page .rf-cta-banner__actions .rf-btn,
.rf-ec-block .rf-cta-banner__actions .rf-btn {
	flex: 0 1 auto;
}

.rf-ec-page .rf-cta-banner__text,
.rf-ec-block .rf-cta-banner__text {
	font-size: 0.88rem;
	max-width: none;
}

@media (max-width: 520px) {
	.rf-ec-page .rf-cta-banner__actions,
	.rf-ec-block .rf-cta-banner__actions {
		flex-wrap: wrap;
	}

	.rf-ec-page .rf-cta-banner__rail-note,
	.rf-ec-block .rf-cta-banner__rail-note {
		display: none;
	}
}

.rf-page-header .rf-page-header__title,
.rf-cpt-hero .rf-page-header__title {
	font-family: var(--font-brand);
	font-weight: 700;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	letter-spacing: -0.02em;
	text-transform: none;
	line-height: 1.15;
	color: var(--rf-charcoal);
}

.rf-page-header .rf-page-header__sub,
.rf-cpt-hero .rf-page-header__sub {
	font-family: var(--font-brand);
	font-style: normal;
	font-size: 1.05rem;
	line-height: 1.55;
}

/* EC archive hero — stronger wash so copy stays readable on bright photos */
.rf-ec-hero {
	background:
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.97) 0%,
			rgba(255, 255, 255, 0.92) 38%,
			rgba(255, 255, 255, 0.72) 58%,
			rgba(255, 255, 255, 0.28) 78%,
			rgba(255, 255, 255, 0.08) 100%
		),
		var(--rf-ec-hero-image, url(../images/error-codes-hero.jpg)) right center / cover no-repeat,
		var(--rf-surface-2);
}

.rf-ec-hero__title,
.rf-ec-hero h1 {
	color: var(--rf-ka-charcoal, #3F3F40);
}

.rf-ec-hero__lead {
	color: #2a2a2b;
	font-weight: 500;
}

.rf-ec-hero__note {
	color: #3f3f40;
}

@media (max-width: 782px) {
	.rf-ec-hero {
		background:
			linear-gradient(
				180deg,
				rgba(255, 255, 255, 0.96) 0%,
				rgba(255, 255, 255, 0.9) 45%,
				rgba(255, 255, 255, 0.88) 100%
			),
			var(--rf-ec-hero-image, url(../images/error-codes-hero.jpg)) 75% center / cover no-repeat,
			var(--rf-surface-2);
	}
}

.rf-ec-hero h1 {
	font-family: var(--font-brand);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 700;
	text-transform: none;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

.rf-ec-page .rf-prose,
.rf-post-page .rf-prose {
	font-family: var(--font-brand);
	font-size: 1rem;
	line-height: 1.6;
	font-style: normal;
}

/* Model archive table — split series / descriptor title */
.rf-model-row__link {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	color: inherit;
	text-decoration: none;
	line-height: 1.35;
}

.rf-model-row__link:hover .rf-model-row__series {
	color: var(--rf-primary);
}

.rf-model-row__series {
	font-weight: 700;
}

.rf-model-row__descriptor {
	font-weight: 400;
	font-size: 0.875rem;
	color: var(--rf-muted);
}

/* Model archive — breathing room between stacked rows on mobile */
@media (max-width: 640px) {
	body.post-type-archive-appliance_model .rf-table tbody tr {
		padding-block: 1.25rem;
	}

	body.post-type-archive-appliance_model .rf-table tbody tr + tr {
		margin-top: 0.25rem;
	}

	body.post-type-archive-appliance_model .rf-table__action {
		padding-bottom: 0.5rem;
	}
}

.rf-model-page.rf-section {
	padding-block: clamp(2rem, 4vw, 3.25rem);
}

.rf-model-page .rf-factgrid {
	margin-bottom: 1.5rem;
}

.rf-model-page .rf-heading,
.rf-model-page .rf-fact,
.rf-model-page .rf-prose {
	max-width: none;
}

.rf-model-page .rf-heading .rf-heading__title,
.rf-model-page .rf-heading h2 {
	font-family: var(--font-brand);
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.2;
	text-transform: none;
	color: var(--rf-charcoal);
	margin-bottom: 0.45rem;
}

.rf-model-page .rf-heading .rf-heading__eyebrow {
	font-family: var(--font-brand);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--rf-muted);
	background: var(--rf-soft-gray);
	border: 1px solid var(--rf-border);
	border-radius: 0;
	padding: 0.3rem 0.65rem;
	margin-bottom: 0.65rem;
	display: inline-flex;
}

.rf-model-page .rf-fact {
	border-radius: 0;
	border-left-color: var(--rf-brass);
	box-shadow: none;
}

.rf-model-page .rf-prose {
	font-family: var(--font-brand);
	font-size: 1rem;
	line-height: 1.6;
}

.rf-ec-page .rf-ec-block,
.rf-post-page .rf-ec-block {
	padding-bottom: 0.25rem;
	border-bottom: 1px solid var(--rf-border);
}

.rf-ec-page .rf-ec-block:last-child,
.rf-post-page .rf-ec-block:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.rf-ec-page .rf-ec-block .rf-heading:not(:first-child),
.rf-post-page .rf-ec-block .rf-heading:not(:first-child) {
	margin-top: 0.25rem;
}

.rf-ec-page .rf-ec-related-grid + .rf-heading,
.rf-post-page .rf-ec-related-grid + .rf-heading {
	margin-top: 1.75rem;
}

.rf-ec-single-verify {
	margin: 0.65rem 0 0;
	padding: 0.65rem 0.85rem;
	background: var(--rf-soft-gray);
	border: 1px solid var(--rf-border);
	color: var(--rf-ink-2);
	font-size: 0.92rem;
	line-height: 1.45;
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1100px) {
	.rf-cat-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.rf-cat-grid--extended {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 960px) {
	:root {
		--rf-header-h: 60px;
	}

	.rf-hero--campaign .rf-hero__gradient {
		background: linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.92) 0%,
			rgba(0, 0, 0, 0.78) 45%,
			rgba(0, 0, 0, 0.55) 100%
		);
	}

	.rf-hero--campaign .rf-hero__inner {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.rf-hero--campaign .rf-hero__content {
		max-width: none;
	}

	.rf-hero--campaign .rf-hero__title {
		max-width: none;
	}

	.rf-hero--campaign .rf-hero__card {
		max-width: none;
	}

	.rf-cat-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.rf-cta-banner {
		grid-template-columns: 1fr;
	}

	.rf-cta-banner__rail {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
		padding: 1rem 1.25rem;
	}

	.rf-cta-banner__rail-note {
		max-width: none;
		text-align: right;
	}

	.rf-cta-banner__body {
		padding: 1.35rem 1.25rem 1.5rem;
	}

	.rf-cta-banner__title,
	.rf-cta-banner h2 {
		max-width: none;
	}

	.rf-cta-banner__actions {
		width: 100%;
	}

	.rf-cta-banner__actions .rf-btn {
		flex: 1 1 auto;
	}
}

@media (max-width: 900px) {
	.rf-header--luxury .rf-brand__img--header,
	.rf-header--luxury .rf-brand__img--drawer {
		height: 34px;
		max-width: min(138px, 42vw);
	}

	.rf-header--luxury .rf-header__actions .rf-btn,
	.rf-header--luxury .rf-header__actions .rf-phone-btn {
		display: none;
	}

	.rf-header--luxury .rf-header__actions .rf-nav-toggle {
		display: inline-flex;
	}

	.rf-header--luxury .rf-header__actions {
		gap: 0;
	}
}

@media (max-width: 767px) {
	.rf-appliance__title,
	.rf-service-card__title {
		text-transform: none;
		letter-spacing: 0.02em;
		font-size: 1rem;
	}
}

@media (max-width: 640px) {
	:root {
		--rf-header-h: 0px;
	}

	.rf-header--luxury .rf-brand__img--header {
		height: 38px;
	}

	.rf-cat-grid,
	.rf-cat-grid--extended {
		grid-template-columns: 1fr;
	}

	.rf-announce {
		font-size: 0.6875rem;
		line-height: 1.25;
	}

	.rf-announce__inner {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: flex-start;
		gap: 0.5rem;
		padding-block: 0.4rem;
		text-align: left;
	}

	.rf-announce__item {
		gap: 0.35rem;
	}

	.rf-announce__note {
		font-size: 0.625rem;
		line-height: 1.2;
		max-width: 22rem;
	}

	h1, .rf-display, .rf-hero__title {
		font-size: clamp(32px, 8vw, 42px);
		font-weight: 700;
		letter-spacing: -0.025em;
		line-height: 1.05;
	}

	.rf-page-header__cta,
	.rf-cpt-hero__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		gap: 0.65rem;
	}

	.rf-page-header__cta .rf-btn,
	.rf-cpt-hero__actions .rf-btn {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 420px) {
	.rf-header--luxury .rf-brand__img--header {
		height: 32px;
		max-width: min(128px, 48vw);
	}
}

/* =========================================================================
   Type & radius system — KitchenAid soft geometry (global polish)
   ========================================================================= */
.rf-nav-toggle {
	border-radius: var(--rf-radius-btn);
}

.rf-hero--campaign .rf-hero__flag,
.rf-hero-card__ribbon,
.rf-hero__flag {
	border-radius: var(--rf-radius-btn);
}

.rf-card__icon,
.rf-appliance__icon,
.rf-nap__icon,
.rf-step__num,
.rf-ec-page .rf-checklist .rf-icon,
.rf-post-page .rf-checklist .rf-icon {
	border-radius: 12px;
}

.rf-expertise__card,
.rf-expertise__panel,
.rf-feature-banner,
.rf-cta-banner,
.rf-cpt-hero__panel {
	border-radius: var(--radius-xl);
	overflow: hidden;
}

/* Plain page headers may soften; full-bleed archive image heroes stay edge-square. */
.rf-page-header:not(.rf-page-header--image) {
	border-radius: 0 0 var(--radius-xl) var(--radius-xl);
	overflow: hidden;
}

.rf-page-header--image {
	border-radius: 0;
}

.rf-ec-page .rf-fact,
.rf-post-page .rf-fact,
.rf-model-page .rf-fact,
.rf-ec-page .rf-ec-quick,
.rf-post-page .rf-ec-quick,
.rf-ec-page .rf-ec-disclaimer,
.rf-post-page .rf-ec-disclaimer,
.rf-ec-page .rf-toc,
.rf-post-page .rf-toc,
.rf-ec-page .rf-ec-block,
.rf-post-page .rf-ec-block,
.rf-booking-modal,
.rf-modal {
	border-radius: var(--radius-md);
}

/* Full-height side drawer must stay square — radius leaves a gap where page content peeks. */
.rf-drawer__panel {
	border-radius: 0;
}

.rf-ec-page .rf-heading .rf-heading__eyebrow,
.rf-post-page .rf-heading .rf-heading__eyebrow,
.rf-model-page .rf-heading .rf-heading__eyebrow,
.rf-badge,
.rf-pill,
.rf-tag,
.rf-ec-status,
.rf-ec-single-status,
.rf-chip {
	border-radius: var(--radius-pill);
}

.rf-field label,
.rf-booking-form label,
.rf-consent {
	font-family: var(--font-brand);
}

.rf-field label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.rf-field input,
.rf-field select,
.rf-field textarea {
	font-family: var(--font-brand);
	font-size: 15px;
	font-weight: 400;
	border-radius: var(--radius-sm);
}

.rf-appliance__title,
.rf-service-card__title,
.rf-card__title,
.rf-ec-card__title {
	font-family: var(--font-brand);
	font-weight: 700;
	letter-spacing: -0.015em;
}

.rf-footer,
.rf-footer a,
.rf-footer__col-title,
.rf-announce,
.rf-sticky-bar,
.rf-drawer,
.rf-drawer a {
	font-family: var(--font-brand);
}

.rf-blog-card,
.rf-post-card,
.rf-location,
a.rf-card,
.rf-media-card {
	border-radius: var(--radius-lg);
	overflow: hidden;
}

/* Nested controls inside rounded cards stay slightly tighter. */
.rf-hero--campaign .rf-hero__card .rf-btn,
.rf-expertise__card .rf-btn,
.rf-cookie .rf-btn {
	border-radius: var(--rf-radius-btn);
}

.rf-hero--campaign .rf-hero__card .rf-field input,
.rf-hero--campaign .rf-hero__card .rf-field select,
.rf-hero--campaign .rf-hero__card .rf-field textarea {
	border-radius: var(--radius-sm, 8px);
}

/* 3-col card grids use separate rounded tiles (see Cards & grids). */
.rf-grid.rf-grid--3 > .rf-card,
.rf-grid.rf-grid--3 > .rf-service-card,
.rf-grid.rf-grid--3 > .rf-guarantee,
.rf-grid.rf-grid--3 > .rf-step,
.rf-grid.rf-grid--3 > .rf-problem {
	border-radius: var(--radius-lg);
}

/* =========================================================================
   Micro layout tweaks — element arrangement inside existing cards
   ========================================================================= */
.rf-problem__head,
.rf-service-tile__head,
.rf-appliance__head {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-bottom: 0.75rem;
}

.rf-problem__head .rf-card__icon,
.rf-service-tile__head .rf-card__icon,
.rf-appliance__head .rf-appliance__icon {
	margin-bottom: 0;
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	border-radius: 12px;
}

.rf-problem__head .rf-card__title,
.rf-service-tile__head .rf-card__title,
.rf-appliance__head .rf-appliance__title {
	margin: 0;
	flex: 1 1 auto;
	min-width: 0;
	width: auto;
	max-width: none;
}

.rf-problem .rf-card__text,
.rf-service-tile .rf-card__text {
	margin-top: 0;
}

.rf-service-tile {
	display: flex;
	flex-direction: column;
}

.rf-service-tile .rf-card__foot {
	margin-top: auto;
	padding-top: 0.85rem;
}

.rf-post-card__cat {
	display: inline-block;
	width: fit-content;
	margin: 0;
	padding: 0.28rem 0.65rem;
	font-family: var(--font-brand);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: var(--radius-sm);
	background: rgba(196, 18, 48, 0.08);
	color: var(--rf-ka-red);
}

.rf-post-card__foot {
	border-top-color: var(--rf-border);
}

.rf-post-card__title {
	font-family: var(--font-brand);
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.3;
}

.rf-review__author {
	padding-bottom: 0.85rem;
	border-bottom: 1px solid var(--rf-border);
}

.rf-review__quote {
	font-size: 0.95rem;
}

/* EC filters: left-aligned; selects need real inner padding (native arrow eats space) */
.rf-ec-filters__row {
	justify-content: flex-start;
	align-items: flex-end;
	gap: var(--rf-space-4) 1.5rem;
}

.rf-ec-field select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding: 0.75rem 2.75rem 0.75rem 1.1rem;
	min-width: 240px;
	background-color: var(--rf-surface, #fff);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235C5C5C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1.1rem center;
	background-size: 12px 8px;
}

/* Bottom-align with selects, then lift by half select chrome (padding + border) for optical center. */
.rf-ec-field--check {
	flex-direction: row;
	align-items: center;
	align-self: flex-end;
	gap: 8px;
	min-height: 0;
	padding: 0;
	margin: 0 0 calc(0.75rem + 1px);
}

.rf-ec-filters__actions {
	margin-top: var(--rf-space-5);
	justify-content: flex-start;
}

body.rf-cookie-open .rf-ec-app {
	padding-bottom: 7.5rem;
}

/* =========================================================================
   Interior compact type + editorial numbered steps (Viking parity)
   ========================================================================= */
body.rf-interior .rf-section .rf-heading .rf-heading__title,
body.rf-interior .rf-section .rf-heading h2 {
	font-family: var(--font-brand);
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.2;
	text-transform: none;
	color: var(--rf-charcoal, #1a1a1a);
	margin-bottom: 0.45rem;
}

body.rf-interior .rf-section .rf-heading .rf-heading__eyebrow {
	font-family: var(--font-brand);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--rf-muted, #5c5c5c);
	background: var(--rf-soft-gray, #f5f5f5);
	border: 1px solid var(--rf-border, #e5e5e5);
	border-radius: var(--radius-sm, 8px);
	padding: 0.3rem 0.65rem;
	margin-bottom: 0.65rem;
	display: inline-flex;
}

body.rf-interior .rf-section .rf-heading .rf-heading__text {
	font-family: var(--font-brand);
	font-size: 0.98rem;
	font-style: normal;
	line-height: 1.55;
	color: var(--rf-muted, #5c5c5c);
	margin-top: 0.35rem;
}

body.rf-interior .rf-loc-intro__title,
body.rf-interior .rf-about-intro__title,
body.rf-interior .rf-loc-card__title,
body.rf-interior .rf-about-card__title,
body.rf-interior .rf-ec-hero h1,
body.rf-interior .rf-ec-popular__title,
body.rf-interior .rf-prose h2,
body.rf-interior .rf-prose h3 {
	font-family: var(--font-brand);
	font-weight: 700;
	letter-spacing: -0.015em;
	text-transform: none;
	line-height: 1.25;
	color: var(--rf-charcoal, #1a1a1a);
}

.rf-editorial-steps {
	list-style: none;
	margin: clamp(1.25rem, 2.5vw, 1.75rem) 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: clamp(2.25rem, 4vw, 3.25rem);
}

.rf-editorial-step {
	margin: 0;
	padding: 0;
}

.rf-editorial-step__title {
	font-family: var(--font-brand);
	font-weight: 700;
	font-size: clamp(1.35rem, 2.2vw, 1.75rem);
	letter-spacing: -0.02em;
	text-transform: none;
	line-height: 1.15;
	color: var(--rf-charcoal, #1a1a1a);
	margin: 0 0 0.65rem;
}

.rf-editorial-step__num {
	font-weight: 700;
	color: var(--rf-ka-red, #c41230);
}

.rf-editorial-step__text {
	font-family: var(--font-brand);
	font-size: clamp(1rem, 1.05vw, 1.0625rem);
	line-height: 1.6;
	color: var(--rf-muted, #5c5c5c);
	margin: 0;
	max-width: 65ch;
}

/* =========================================================================
   Blog journal — archive listing (distinct from Bosch/Viking card grids)
   ========================================================================= */
.rf-blog-index__header {
	padding-block: clamp(2.5rem, 5vw, 3.75rem);
	border-bottom: 1px solid var(--rf-ka-border);
	background:
		linear-gradient(180deg, rgba(196, 18, 48, 0.04) 0%, transparent 70%),
		var(--rf-ka-white);
}

.rf-blog-index__header .rf-heading__eyebrow {
	display: inline-block;
	margin-bottom: 0.65rem;
	color: var(--rf-ka-red);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.rf-blog-index__header .rf-page-header__title {
	max-width: 18ch;
	letter-spacing: -0.03em;
}

.rf-blog-index .rf-blog-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1.25rem;
	margin: 0 0 2rem;
	padding: 0 0 1rem;
	border-bottom: 1px solid var(--rf-ka-border);
}

.rf-blog-index .rf-blog-filter__chip {
	border: 0;
	border-radius: 0;
	background: transparent;
	padding: 0.35rem 0;
	box-shadow: none;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--rf-ka-gray);
	border-bottom: 2px solid transparent;
}

.rf-blog-index .rf-blog-filter__chip:hover {
	background: transparent;
	color: var(--rf-ka-charcoal);
}

.rf-blog-index .rf-blog-filter__chip.is-active {
	background: transparent;
	color: var(--rf-ka-red);
	border-bottom-color: var(--rf-ka-red);
}

.rf-blog-index .rf-blog-filter__count {
	background: transparent;
	color: inherit;
	opacity: 0.55;
	padding: 0;
	margin-left: 0.35rem;
	font-weight: 500;
}

.rf-posts--journal {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

.rf-posts--journal > .rf-post-card {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
	align-items: stretch;
	gap: 0;
	margin: 0;
	border: 0;
	border-bottom: 1px solid var(--rf-ka-border);
	border-radius: 0;
	box-shadow: none;
	background: transparent;
	overflow: hidden;
	transition: background 0.15s ease;
}

.rf-posts--journal > .rf-post-card:hover {
	transform: none;
	box-shadow: none;
	background: rgba(196, 18, 48, 0.03);
}

.rf-posts--journal > .rf-post-card:first-child {
	grid-template-columns: 1fr;
	margin-bottom: 0.5rem;
	padding-bottom: 1.5rem;
	border-bottom-width: 2px;
	border-bottom-color: var(--rf-ka-charcoal);
}

.rf-posts--journal > .rf-post-card:first-child .rf-post-card__thumb img,
.rf-posts--journal > .rf-post-card:first-child .rf-post-card__thumb:has(.rf-cover) {
	aspect-ratio: 21 / 10;
}

.rf-posts--journal > .rf-post-card:first-child .rf-post-card__body {
	padding: 1.35rem 0 0.35rem;
}

.rf-posts--journal > .rf-post-card:first-child .rf-post-card__title {
	font-size: clamp(1.45rem, 2.6vw, 2rem);
	letter-spacing: -0.03em;
	max-width: 22ch;
}

.rf-posts--journal .rf-post-card__thumb {
	min-height: 100%;
	border-radius: 0;
}

.rf-posts--journal .rf-post-card__thumb img {
	height: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: opacity 0.2s ease;
}

.rf-posts--journal > .rf-post-card:hover .rf-post-card__thumb img {
	transform: none;
	opacity: 0.92;
}

.rf-posts--journal .rf-post-card__body {
	padding: 1.35rem 0 1.35rem 1.5rem;
	gap: 0.75rem;
	justify-content: center;
}

.rf-posts--journal .rf-post-card__cat {
	display: inline-block;
	width: fit-content;
	margin: 0;
	padding: 0;
	border-radius: 0;
	background: none;
	color: var(--rf-ka-red);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.rf-posts--journal .rf-post-card__title {
	font-size: clamp(1.1rem, 1.6vw, 1.3rem);
	line-height: 1.25;
}

.rf-posts--journal .rf-post-card__excerpt {
	font-size: 0.92rem;
	max-width: 42ch;
}

.rf-posts--journal .rf-post-card__foot {
	margin-top: 0.35rem;
	padding-top: 0.75rem;
	border-top: 0;
	justify-content: flex-start;
	gap: 1.25rem;
}

.rf-posts--journal .rf-link-more {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rf-ka-red);
	text-decoration: none;
}

.rf-posts--journal .rf-link-more:hover {
	color: var(--rf-ka-red-hover);
}

@media (max-width: 720px) {
	.rf-posts--journal > .rf-post-card {
		grid-template-columns: 1fr;
	}

	.rf-posts--journal .rf-post-card__body {
		padding: 1rem 0 1.35rem;
	}

	.rf-posts--journal .rf-post-card__thumb img {
		aspect-ratio: 16 / 10;
	}
}

/* Homepage blog strip — keep cards, but flatten vs sibling lift grids */
#blog .rf-posts {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem 2rem;
}

#blog .rf-post-card {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	background: transparent;
	border-bottom: 1px solid var(--rf-ka-border);
}

#blog .rf-post-card:hover {
	transform: none;
	box-shadow: none;
}

#blog .rf-post-card__thumb img {
	aspect-ratio: 16 / 9;
	border-radius: 0;
}

#blog .rf-post-card:hover .rf-post-card__thumb img {
	transform: none;
	opacity: 0.92;
}

#blog .rf-post-card__body {
	padding: 1.15rem 0 1.4rem;
	gap: 0.85rem;
}

#blog .rf-post-card__excerpt {
	line-height: 1.55;
}

#blog .rf-post-card__foot {
	margin-top: 0.25rem;
	padding-top: 0.85rem;
}

@media (max-width: 720px) {
	#blog .rf-posts {
		grid-template-columns: 1fr;
	}
}

/* =========================================================================
   Blog single — journal reading layout (distinct from CPT/EC twins)
   ========================================================================= */
.rf-post-hero {
	padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
	background:
		linear-gradient(90deg, rgba(196, 18, 48, 0.07) 0, rgba(196, 18, 48, 0.07) 4px, transparent 4px),
		var(--rf-ka-white);
	border-bottom: 1px solid var(--rf-ka-border);
}

.rf-post-hero .rf-heading__eyebrow {
	color: var(--rf-ka-red);
	letter-spacing: 0.16em;
}

.rf-post-hero .rf-page-header__title {
	max-width: 22ch;
	letter-spacing: -0.03em;
	line-height: 1.12;
}

.rf-post-hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem 0.65rem;
	margin: 0.85rem 0 1.25rem;
	font-size: 0.84rem;
	font-weight: 600;
	color: var(--rf-ka-gray);
}

.rf-post-hero .rf-cpt-hero__actions .rf-btn--ghost {
	border-color: rgba(63, 63, 64, 0.28);
}

.rf-post-page--journal .rf-toc {
	border: 0;
	border-left: 3px solid var(--rf-ka-red);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	padding: 0.15rem 0 0.15rem 1.1rem;
}

.rf-post-page--journal .rf-toc__title {
	font-size: 0.7rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rf-ka-red);
	margin-bottom: 0.75rem;
}

.rf-post-page--journal .rf-toc__link {
	border-radius: 0;
	padding-left: 0;
}

.rf-post-page--journal .rf-toc__link.is-active {
	color: var(--rf-ka-charcoal);
	font-weight: 700;
}

.rf-post-page--journal .rf-single__thumb {
	margin: 0 0 1.75rem;
	border-radius: 0;
	overflow: hidden;
	border-bottom: 3px solid var(--rf-ka-red);
}

.rf-post-page--journal .rf-single__img,
.rf-post-page--journal .rf-single__thumb img {
	border-radius: 0;
	aspect-ratio: 2 / 1;
	width: 100%;
	object-fit: cover;
}

.rf-post-page--journal .rf-byline {
	padding-bottom: 1rem;
	margin-bottom: 1.25rem;
	border-bottom: 1px solid var(--rf-ka-border);
}

.rf-post-page--journal .rf-prose h2 {
	font-family: var(--font-brand);
	letter-spacing: -0.02em;
	padding-bottom: 0.35rem;
	border-bottom: 2px solid rgba(196, 18, 48, 0.2);
}

.rf-post-page--journal .rf-prose a {
	color: var(--rf-ka-red);
	text-underline-offset: 0.18em;
}

/* Blog pros/cons safety cards — "Safe to try" / "Leave to a technician" */
.rf-ec-page .rf-prose .rf-proscons,
.rf-post-page .rf-prose .rf-proscons {
	gap: 1.15rem;
	margin-block: 1.75rem;
}

.rf-ec-page .rf-prose .rf-proscons__col,
.rf-post-page .rf-prose .rf-proscons__col {
	border: 1px solid var(--rf-ka-border);
	border-radius: var(--rf-radius-md, 10px);
	background: var(--rf-ka-white);
	padding: 1.2rem 1.3rem 1.15rem;
	box-shadow: none;
}

.rf-ec-page .rf-prose .rf-proscons__col--pro,
.rf-post-page .rf-prose .rf-proscons__col--pro {
	border-top: 4px solid #2f6b4f;
}

.rf-ec-page .rf-prose .rf-proscons__col--con,
.rf-post-page .rf-prose .rf-proscons__col--con {
	border-top: 4px solid var(--rf-ka-red);
}

.rf-ec-page .rf-prose .rf-proscons__title,
.rf-post-page .rf-prose .rf-proscons__title {
	margin: 0 0 0.85rem;
	font-family: var(--font-brand);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.3;
}

.rf-ec-page .rf-prose .rf-proscons__col--pro .rf-proscons__title,
.rf-post-page .rf-prose .rf-proscons__col--pro .rf-proscons__title {
	color: #2f6b4f;
}

.rf-ec-page .rf-prose .rf-proscons__col--con .rf-proscons__title,
.rf-post-page .rf-prose .rf-proscons__col--con .rf-proscons__title {
	color: var(--rf-ka-red);
}

.rf-ec-page .rf-prose .rf-proscons__list,
.rf-post-page .rf-prose .rf-proscons__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.7rem;
}

.rf-ec-page .rf-prose .rf-proscons__list li,
.rf-post-page .rf-prose .rf-proscons__list li {
	margin: 0;
	padding-left: 1.15rem;
	position: relative;
	color: var(--rf-ka-gray);
	font-size: 0.9375rem;
	line-height: 1.5;
}

.rf-ec-page .rf-prose .rf-proscons__col--pro .rf-proscons__list li::before,
.rf-post-page .rf-prose .rf-proscons__col--pro .rf-proscons__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: #2f6b4f;
}

.rf-ec-page .rf-prose .rf-proscons__col--con .rf-proscons__list li::before,
.rf-post-page .rf-prose .rf-proscons__col--con .rf-proscons__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.58em;
	width: 0.72rem;
	height: 0.18rem;
	background: var(--rf-ka-red);
	border-radius: 0;
}

.rf-post-page--journal .rf-posts--similar {
	grid-template-columns: 1fr;
	gap: 0;
}

.rf-post-page--journal .rf-posts--similar > .rf-post-card {
	display: grid;
	grid-template-columns: 7.5rem minmax(0, 1fr);
	border: 0;
	border-bottom: 1px solid var(--rf-ka-border);
	border-radius: 0;
	box-shadow: none;
	background: transparent;
}

.rf-post-page--journal .rf-posts--similar > .rf-post-card:hover {
	transform: none;
	box-shadow: none;
}

.rf-post-page--journal .rf-posts--similar .rf-post-card__thumb img {
	aspect-ratio: 1 / 1;
	height: 100%;
	object-fit: cover;
}

.rf-post-page--journal .rf-posts--similar .rf-post-card__body {
	padding: 0.85rem 0 0.85rem 1rem;
}

.rf-post-page--journal .rf-posts--similar .rf-post-card__excerpt {
	display: none;
}



/* =========================================================================
   Fleet UI: announce mobile phone + hero trust containers (UI only)
   ========================================================================= */
.rf-announce__copy {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.45rem 1.25rem;
	flex: 1 1 auto;
	min-width: 0;
}

.rf-announce__phone {
	display: none;
}

.rf-hero--campaign .rf-hero__trust,
.rf-hero__trust {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 0.75rem;
}

.rf-hero--campaign .rf-hero__trust li,
.rf-hero__trust li {
	position: relative;
	display: flex;
	align-items: center;
	flex: 1 1 10.5rem;
	max-width: 16rem;
	min-height: 3.25rem;
	padding: 0.7rem 0.9rem 0.7rem 1.15rem;
	background: rgba(0, 0, 0, 0.42);
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: inset 3px 0 0 var(--rf-primary);
}

.rf-hero:not(.rf-hero--campaign) .rf-hero__trust li {
	background: rgba(0, 0, 0, 0.52);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: inset 3px 0 0 var(--rf-primary);
	color: #fff;
}

.rf-hero--campaign .rf-hero__trust li::before,
.rf-hero__trust li::before {
	content: none;
}

.rf-hero--campaign .rf-hero__trust-ico,
.rf-hero__trust-ico {
	display: none !important;
}

@media (max-width: 900px) {
	.rf-announce__inner {
		padding-block: 0.4rem;
	}

	.rf-announce__copy {
		flex: 1 1 auto;
		gap: 0.35rem 0.75rem;
	}

	.rf-announce__item:first-child {
		display: none;
	}

	.rf-announce__note {
		font-size: clamp(0.5625rem, 2.4vw, 0.75rem);
		text-align: center;
	}

	.rf-announce__phone {
		display: flex;
		align-items: center;
		margin-left: auto;
	}

	.rf-hero--campaign .rf-hero__trust,
	.rf-hero__trust {
		flex-direction: column;
		gap: 0.55rem;
		font-size: 0.9375rem;
	}

	.rf-hero--campaign .rf-hero__trust li,
	.rf-hero__trust li {
		flex: 1 1 auto;
		max-width: none;
		width: 100%;
		min-height: 2.75rem;
		padding: 0.65rem 0.85rem 0.65rem 1.1rem;
		background: rgba(0, 0, 0, 0.52);
		border: 1px solid rgba(255, 255, 255, 0.2);
		box-shadow: inset 3px 0 0 var(--rf-primary);
		color: #fff;
	}

	.rf-hero--campaign .rf-hero__trust li::before,
	.rf-hero__trust li::before {
		content: none;
	}
}

/* ---- ProLead booking embed clip (JennAir/Wolf pattern) ---- */
.rf-booking-embed {
	width: 100%;
	background: #fff;
	border: 0;
	border-radius: 0;
	overflow: hidden;
}

.rf-booking-embed__frame,
iframe.schedule.rf-booking-embed__frame {
	display: block;
	width: 100%;
	height: 860px;
	min-height: 860px;
	margin-top: -12px;
	border: 0;
	border-radius: 0;
	background: #fff;
	overflow: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

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

.rf-hero--campaign .rf-hero__card--embed,
.rf-hero__card--embed,
.rf-hero-card--embed {
	padding: 0;
	overflow: hidden;
	background: #fff;
}

.rf-hero--campaign .rf-hero__card--embed .rf-booking-embed,
.rf-hero__card--embed .rf-booking-embed,
.rf-hero-card--embed .rf-booking-embed,
.rf-panel .rf-booking-embed,
.rf-contact-panel .rf-booking-embed,
.rf-modal__body .rf-booking-embed,
.rf-book__panel .rf-booking-embed,
.rf-contact-layout__form .rf-booking-embed,
.rf-booksplit .rf-booking-embed,
#booking .rf-booking-embed {
	height: 728px;
	margin: 0;
	overflow: hidden;
	background: #fff;
}

.rf-hero--campaign .rf-hero__card--embed .rf-booking-embed__frame,
.rf-hero__card--embed .rf-booking-embed__frame,
.rf-hero-card--embed .rf-booking-embed__frame,
.rf-panel .rf-booking-embed__frame,
.rf-contact-panel .rf-booking-embed__frame,
.rf-modal__body .rf-booking-embed__frame,
.rf-book__panel .rf-booking-embed__frame,
.rf-contact-layout__form .rf-booking-embed__frame,
.rf-booksplit .rf-booking-embed__frame,
#booking .rf-booking-embed__frame {
	height: 860px !important;
	min-height: 860px !important;
	margin: -12px 0 0;
	overflow: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

/* Drawer: above sticky bar (90) and cookie (230); modal stays 240. */
.rf-drawer {
	z-index: 500;
}

.rf-drawer__overlay {
	z-index: 0;
}

.rf-drawer__panel {
	z-index: 1;
	background: #fff;
}
