/*
 * Repair Factory — main stylesheet
 * A self-contained design system for a premium local appliance-repair site.
 * No external CSS frameworks. Brand colors (--rf-primary / --rf-secondary)
 * are injected from the Customizer via inc/enqueue.php.
 */

/* =========================================================================
   1. Design tokens
   ========================================================================= */
:root {
	/* Brand colors are injected inline; these are safe fallbacks. */
	--rf-primary: #000000;
	--rf-secondary: #333333;

	/* Derived brand shades. */
	--rf-primary-dark: color-mix(in srgb, var(--rf-primary) 82%, #000);
	--rf-primary-soft: color-mix(in srgb, var(--rf-primary) 10%, #fff);
	--rf-primary-tint: color-mix(in srgb, var(--rf-primary) 16%, #fff);
	--rf-secondary-dark: color-mix(in srgb, var(--rf-secondary) 78%, #000);
	--rf-secondary-soft: color-mix(in srgb, var(--rf-secondary) 8%, #fff);

	/* Accent follows secondary for eyebrows, icons and chips. */
	--rf-accent: var(--rf-secondary);
	--rf-accent-dark: color-mix(in srgb, var(--rf-accent) 82%, #000);
	--rf-accent-soft: color-mix(in srgb, var(--rf-accent) 12%, #fff);
	--rf-accent-tint: color-mix(in srgb, var(--rf-accent) 20%, #fff);

	/* Neutrals. */
	--rf-ink: #0a0a0a;
	--rf-ink-2: #333333;
	--rf-muted: #5c5c5c;
	--rf-line: #e5e5e5;
	--rf-line-strong: #cccccc;
	--rf-surface: #ffffff;
	--rf-surface-2: #f7f7f7;
	--rf-surface-3: #efefef;
	--rf-charcoal: #0a0a0a;

	/* Typography. */
	--rf-font-display: "Eurostile Extended", "Eurostile Next", Eurostile, Arial Narrow, Arial, Helvetica, sans-serif;
	--rf-font-heading: var(--rf-font-display);
	--rf-font: "avenir", Avenir, "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--rf-fs-base: 1.0625rem;
	--rf-lh-base: 1.65;

	/* Spacing scale. */
	--rf-space-1: 0.25rem;
	--rf-space-2: 0.5rem;
	--rf-space-3: 0.75rem;
	--rf-space-4: 1rem;
	--rf-space-5: 1.5rem;
	--rf-space-6: 2rem;
	--rf-space-7: 3rem;
	--rf-space-8: 4rem;
	--rf-space-9: 6rem;

	/* Radii — Thermador square UI. */
	--rf-radius-sm: 0;
	--rf-radius: 0;
	--rf-radius-lg: 0;
	--rf-radius-pill: 0;

	/* Shadows. */
	--rf-shadow-xs: 0 1px 2px rgba(20, 30, 45, 0.06);
	--rf-shadow-sm: 0 2px 8px rgba(20, 30, 45, 0.06);
	--rf-shadow: 0 10px 30px rgba(20, 30, 45, 0.08);
	--rf-shadow-lg: 0 24px 60px rgba(20, 30, 45, 0.14);

	/* Layout. */
	--rf-container: 1200px;
	--rf-container-wide: 1360px;
	--rf-header-h: 76px;

	--rf-focus: 0 0 0 3px color-mix(in srgb, var(--rf-primary) 45%, #fff);
}

/* =========================================================================
   2. Reset & base
   ========================================================================= */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--rf-header-h) + 16px);
}

body {
	margin: 0;
	font-family: var(--rf-font);
	font-size: var(--rf-fs-base);
	line-height: var(--rf-lh-base);
	color: var(--rf-ink);
	background: var(--rf-surface);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: clip;
	max-width: 100%;
}
html {
	overflow-x: clip;
	max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.5em;
	line-height: 1.15;
	font-family: var(--rf-font-heading);
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.01em;
	color: var(--rf-charcoal);
}

:is(h1, h2, h3, h4, h5, h6, [class*="__title"], .widget__title, .rf-brand__name) {
	font-family: var(--rf-font-heading);
	font-weight: 700;
	font-style: italic;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1rem; }

a {
	color: var(--rf-primary);
	text-decoration: none;
	transition: color 0.16s ease;
}
a:hover { color: var(--rf-primary-dark); }

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul, ol { padding-left: 1.25rem; }

figure { margin: 0; }

hr {
	border: 0;
	border-top: 1px solid var(--rf-line);
	margin: var(--rf-space-6) 0;
}

strong { font-weight: 700; }

:focus-visible {
	outline: none;
	box-shadow: var(--rf-focus);
	border-radius: var(--rf-radius-sm);
}

/* =========================================================================
   3. Accessibility helpers
   ========================================================================= */
.screen-reader-text,
.rf-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.rf-skip-link {
	position: absolute;
	left: 50%;
	top: -60px;
	transform: translateX(-50%);
	z-index: 1000;
	background: var(--rf-charcoal);
	color: #fff;
	padding: 0.75rem 1.25rem;
	border-radius: 0 0 var(--rf-radius) var(--rf-radius);
	font-weight: 600;
	transition: top 0.2s ease;
}
.rf-skip-link:focus {
	top: 0;
	color: #fff;
}

.rf-icon {
	width: 1.4em;
	height: 1.4em;
	flex: none;
	display: inline-block;
	vertical-align: middle;
}

/* =========================================================================
   4. Layout
   ========================================================================= */
.rf-container {
	width: 100%;
	max-width: var(--rf-container);
	margin-inline: auto;
	padding-inline: clamp(1rem, 4vw, 2rem);
}

.rf-container--wide { max-width: var(--rf-container-wide); }
.rf-container--narrow { max-width: 820px; }

.rf-section {
	padding-block: clamp(3rem, 7vw, 5.5rem);
}
.rf-section--tight { padding-block: clamp(2.25rem, 4vw, 3.5rem); }
.rf-section--alt { background: var(--rf-surface-2); }
.rf-section--ink {
	background: var(--rf-charcoal);
	color: #dfe4ea;
}
.rf-section--ink h2,
.rf-section--ink h3 { color: #fff; }

.rf-mt-4 { margin-top: var(--rf-space-5); }
.rf-mt-6 { margin-top: var(--rf-space-6); }
.rf-mt-7 { margin-top: var(--rf-space-7); }
.rf-text-center { text-align: center; }
.rf-mx-auto { margin-inline: auto; }

.rf-grid { display: grid; gap: clamp(1rem, 2.4vw, 1.6rem); }
.rf-grid--2 { grid-template-columns: repeat(2, 1fr); }
.rf-grid--3 { grid-template-columns: repeat(3, 1fr); }
.rf-grid--4 { grid-template-columns: repeat(4, 1fr); }
.rf-grid--auto { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* =========================================================================
   5. Section heading component
   ========================================================================= */
.rf-heading {
	max-width: 720px;
	margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}
.rf-heading--center {
	margin-inline: auto;
	text-align: center;
}
.rf-heading__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rf-accent);
	margin-bottom: 0.75rem;
}
.rf-heading__eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--rf-accent);
	border-radius: 2px;
}
.rf-heading--center .rf-heading__eyebrow { justify-content: center; }

/* Standalone eyebrow label (e.g. archive heroes). */
.rf-eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rf-accent);
	margin: 0 0 0.5rem;
}
.rf-heading__title { margin-bottom: 0.6rem; }
.rf-heading__text {
	color: var(--rf-muted);
	font-size: 1.075rem;
	margin: 0;
}

/* =========================================================================
   6. Buttons
   ========================================================================= */
.rf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.1;
	padding: 0.85rem 1.5rem;
	border-radius: var(--rf-radius);
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.14s ease, background 0.16s ease, box-shadow 0.16s ease, color 0.16s ease, border-color 0.16s ease;
	text-align: center;
	white-space: nowrap;
}
.rf-btn:hover { transform: translateY(-1px); }
.rf-btn:active { transform: translateY(0); }
.rf-btn .rf-icon { width: 1.15em; height: 1.15em; }

.rf-btn--primary {
	background: var(--rf-primary);
	color: #fff;
	box-shadow: 0 8px 20px color-mix(in srgb, var(--rf-primary) 32%, transparent);
}
.rf-btn--primary:hover {
	background: var(--rf-primary-dark);
	color: #fff;
	box-shadow: 0 12px 26px color-mix(in srgb, var(--rf-primary) 38%, transparent);
}

.rf-btn--secondary {
	background: var(--rf-surface);
	color: var(--rf-charcoal);
	border-color: var(--rf-line-strong);
	box-shadow: var(--rf-shadow-xs);
}
.rf-btn--secondary:hover {
	color: var(--rf-charcoal);
	border-color: var(--rf-secondary);
	background: var(--rf-surface-2);
}

.rf-btn--outline {
	background: #fff;
	color: var(--rf-charcoal);
	border-color: #111;
	box-shadow: none;
}
.rf-btn--outline:hover {
	background: #111;
	color: #fff;
	border-color: #111;
}

.rf-btn--ghost {
	background: transparent;
	color: var(--rf-charcoal);
	border-color: color-mix(in srgb, var(--rf-charcoal) 18%, transparent);
}
.rf-btn--ghost:hover { background: var(--rf-surface-2); color: var(--rf-charcoal); }

.rf-btn--onink {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.28);
}
.rf-btn--onink:hover {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

.rf-btn--lg { padding: 1.05rem 1.9rem; font-size: 1.075rem; }
.rf-btn--block { width: 100%; }

.rf-link-more {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 600;
	font-size: 0.95rem;
}
.rf-link-more .rf-icon { width: 1.05em; height: 1.05em; transition: transform 0.16s ease; }
.rf-link-more:hover .rf-icon { transform: translateX(3px); }

/* =========================================================================
   7. Announcement / trust bar
   ========================================================================= */
.rf-announce {
	background: #0a0a0a;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.8125rem;
	line-height: 1.35;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.rf-announce__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.45rem 1.25rem;
	padding-block: 0.5rem;
}
.rf-announce__item {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}
.rf-announce__lead {
	flex: 0 1 auto;
	font-weight: 500;
	color: #fff;
}
.rf-announce__item .rf-icon {
	width: 1em;
	height: 1em;
	color: #fff;
	flex-shrink: 0;
}
.rf-announce__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
	background: #2ec4b6;
	box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.22);
}
.rf-announce a {
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}
.rf-announce a:hover {
	color: #fff;
	text-decoration: underline;
}
.rf-announce__note {
	flex: 1 1 220px;
	justify-content: center;
	text-align: center;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.75rem;
	line-height: 1.4;
}
.rf-announce__phone {
	flex: 0 0 auto;
	margin-left: auto;
}

/* =========================================================================
   8. Header & navigation
   ========================================================================= */
.rf-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid #e8ebef;
	backdrop-filter: none;
}
.rf-header__inner {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	min-height: var(--rf-header-h);
	min-width: 0;
}
.rf-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	min-width: 0;
	flex-shrink: 1;
}
.rf-brand__logo img { max-height: 32px; width: auto; }
/* Bundled brand logo images (header / footer). */
.rf-brand__img {
	height: 27px;
	width: auto;
	max-width: min(181px, 52vw);
	display: block;
	object-fit: contain;
}
.rf-brand__img--footer { height: 29px; max-width: 200px; }
.rf-brand__mark {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	background: #111;
	color: #fff;
	border-radius: 0;
	box-shadow: none;
}
.rf-brand__mark .rf-icon { width: 24px; height: 24px; }
.rf-brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.rf-brand__name {
	font-family: var(--rf-font-display);
	font-weight: 700;
	font-style: italic;
	font-size: 1.12rem;
	color: #111;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.rf-brand__tag { font-size: 0.72rem; color: #6b7280; font-weight: 600; letter-spacing: 0.02em; }

.rf-nav { margin-inline: auto; }
.rf-nav__list {
	display: flex;
	align-items: center;
	gap: 0.15rem;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: nowrap;
}
.rf-nav a {
	position: relative;
	display: inline-block;
	padding: 0.55rem 0.7rem;
	border-radius: 0;
	color: #111;
	font-family: var(--rf-font-display);
	font-weight: 700;
	font-style: italic;
	font-size: 0.82rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	white-space: nowrap;
	text-decoration: none;
}
.rf-nav a::after {
	content: "";
	position: absolute;
	left: 0.7rem;
	right: 0.7rem;
	bottom: 0.2rem;
	height: 2px;
	background: #111;
	border-radius: 0;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.15s ease;
}
.rf-nav a:hover,
.rf-nav .current-menu-item > a,
.rf-nav .current_page_item > a {
	color: #111;
}
.rf-nav a:hover::after,
.rf-nav .current-menu-item > a::after,
.rf-nav .current_page_item > a::after {
	transform: scaleX(1);
}
.rf-nav .sub-menu {
	position: absolute;
	list-style: none;
	margin: 0.35rem 0 0;
	padding: 0.35rem;
	background: #fff;
	border: 1px solid #e8ebef;
	border-radius: 0;
	box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
	min-width: 210px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
	z-index: 20;
}
.rf-nav .menu-item-has-children { position: relative; }
.rf-nav .menu-item-has-children:hover > .sub-menu,
.rf-nav .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.rf-nav .sub-menu a {
	display: block;
	font-size: 0.78rem;
	padding: 0.65rem 0.75rem;
}
.rf-nav .sub-menu a::after { display: none; }

.rf-header__actions {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	flex-shrink: 0;
	margin-left: auto;
}
.rf-header__actions .rf-btn {
	border-radius: 0;
}
.rf-header__actions .rf-btn--primary {
	background: #111;
	border-color: #111;
	color: #fff;
	box-shadow: none;
}
.rf-header__actions .rf-btn--primary:hover {
	background: #fff;
	color: #111;
	border-color: #111;
	box-shadow: none;
}
.rf-phone-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-family: var(--rf-font-display);
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #111;
	padding: 0.55rem 0.7rem;
	border-radius: 0;
	border: 1px solid transparent;
	text-decoration: none;
}
.rf-phone-btn .rf-icon { color: #111; width: 1.05em; height: 1.05em; }
.rf-phone-btn:hover {
	color: #111;
	background: #f5f6f7;
	border-color: #e8ebef;
}
.rf-phone-btn__label { display: flex; flex-direction: column; line-height: 1.1; }
.rf-phone-btn__small {
	font-size: 0.65rem;
	font-weight: 700;
	font-style: normal;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.rf-phone-btn--inline { white-space: nowrap; }
.rf-phone-btn--inline .rf-phone-btn__number { font-size: 0.88rem; }

.rf-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid #111;
	background: #111;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
}
.rf-nav-toggle:hover {
	background: #fff;
	color: #111;
}
.rf-nav-toggle .rf-icon { width: 22px; height: 22px; }

/* Body scroll lock while drawer/modal open — preserves scrollY */
body.rf-scroll-locked {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
	overflow: hidden;
}

/* Mobile drawer */
.rf-drawer {
	position: fixed;
	inset: 0;
	z-index: 200;
	visibility: hidden;
	pointer-events: none;
	overflow: hidden;
	/* Keep visible until slide/fade finish so close doesn't snap */
	transition: visibility 0s linear 0.28s;
}
.rf-drawer__overlay {
	position: absolute;
	inset: 0;
	background: rgba(17, 17, 17, 0.55);
	opacity: 0;
	transition: opacity 0.28s ease;
}
.rf-drawer__panel {
	position: absolute;
	top: 0; right: 0; bottom: 0;
	width: min(360px, 88vw);
	background: #fff;
	box-shadow: 0 18px 40px rgba(17, 17, 17, 0.18);
	transform: translateX(100%);
	transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	border-left: 1px solid #e8ebef;
}
.rf-drawer.is-open {
	visibility: visible;
	pointer-events: auto;
	transition-delay: 0s;
}
.rf-drawer.is-open .rf-drawer__overlay { opacity: 1; }
.rf-drawer.is-open .rf-drawer__panel { transform: translateX(0); }
.rf-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid #e8ebef;
}
.rf-drawer__close {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border: 1px solid #111;
	background: #111;
	border-radius: 0;
	cursor: pointer;
	color: #fff;
}
.rf-drawer__close:hover {
	background: #fff;
	color: #111;
}
.rf-drawer__nav ul { list-style: none; margin: 0; padding: 0.5rem; display: block; gap: 0; }
.rf-drawer__nav li { width: 100%; }
.rf-drawer__nav a {
	display: block;
	padding: 0.9rem 0.85rem;
	border-radius: 0;
	font-family: var(--rf-font-display);
	font-weight: 700;
	font-style: italic;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #111;
	border-bottom: 1px solid #eef0f2;
	text-decoration: none;
}
.rf-drawer__nav a:hover { background: #f5f6f7; color: #111; }
.rf-drawer__nav .sub-menu { padding-left: 0.75rem; }
.rf-drawer__foot {
	margin-top: auto;
	padding: 1.25rem;
	display: grid;
	gap: 0.75rem;
	border-top: 1px solid #e8ebef;
}
.rf-drawer__foot .rf-btn {
	border-radius: 0;
}
.rf-drawer__foot .rf-btn--primary {
	background: #111;
	border-color: #111;
	color: #fff;
	box-shadow: none;
}
.rf-drawer__foot .rf-btn--primary:hover {
	background: #fff;
	color: #111;
}

/* =========================================================================
   9. Hero
   ========================================================================= */
.rf-hero {
	position: relative;
	background-color: #0a0a0a;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
	overflow: hidden;
}
.rf-hero--dark {
	background-image: var(--rf-home-hero);
}
.rf-hero--dark.rf-hero--legal {
	background-image: var(--rf-legal-hero);
}
.rf-hero--dark::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		#0a0a0a 0%,
		#0a0a0a 18%,
		rgba(10, 10, 10, 0.96) 30%,
		rgba(10, 10, 10, 0.86) 42%,
		rgba(10, 10, 10, 0.58) 54%,
		rgba(10, 10, 10, 0.24) 68%,
		rgba(10, 10, 10, 0.06) 80%,
		rgba(10, 10, 10, 0) 92%
	);
}
@media (max-width: 768px) {
	.rf-hero--dark::before {
		background: linear-gradient(
			180deg,
			rgba(10, 10, 10, 0.98) 0%,
			rgba(10, 10, 10, 0.94) 26%,
			rgba(10, 10, 10, 0.86) 42%,
			rgba(10, 10, 10, 0.68) 56%,
			rgba(10, 10, 10, 0.38) 68%,
			rgba(10, 10, 10, 0.12) 80%,
			rgba(10, 10, 10, 0) 92%
		);
	}
	.rf-hero--dark .rf-hero__inner,
	.rf-hero--dark .rf-hero__inner--archive,
	.rf-hero--dark .rf-hero__inner--areas,
	.rf-hero--dark .rf-hero__inner--author {
		min-height: clamp(480px, 118vw, 620px);
	}
	.rf-hero--dark#top,
	.rf-hero--dark.rf-hero--areas,
	.rf-hero--dark.rf-hero--appliances-archive,
	.rf-hero--dark.rf-hero--services-archive,
	.rf-hero--dark.rf-hero--models-archive,
	.rf-hero--dark.rf-hero--ec-archive,
	.rf-hero--dark.rf-hero--blog-archive,
	.rf-hero--dark.rf-hero--blog,
	.rf-hero--dark.rf-hero--location,
	.rf-hero--dark.rf-hero--contact,
	.rf-hero--dark.rf-hero--about,
	.rf-hero--dark.rf-hero--legal,
	.rf-hero--dark.rf-hero--author,
	.rf-hero--dark.rf-hero--service-single,
	.rf-hero--dark.rf-hero--model-single {
		background-repeat: no-repeat;
		background-size: cover;
	}
	.rf-hero--dark#top { background-image: var(--rf-home-hero); background-position: center 42%; }
	.rf-hero--dark.rf-hero--areas { background-image: var(--rf-areas-hero); background-position: center 42%; }
	.rf-hero--dark.rf-hero--appliances-archive { background-image: var(--rf-appliances-hero); background-position: center 42%; }
	.rf-hero--dark.rf-hero--services-archive { background-image: var(--rf-services-hero); background-position: center 42%; }
	.rf-hero--dark.rf-hero--models-archive { background-image: var(--rf-models-hero); background-position: center 42%; }
	.rf-hero--dark.rf-hero--ec-archive { background-image: var(--rf-ec-hero); background-position: center 42%; }
	.rf-hero--dark.rf-hero--blog-archive { background-image: var(--rf-blog-archive-hero); background-position: center 42%; }
	.rf-hero--dark.rf-hero--blog { background-image: var(--rf-blog-hero); background-position: center 42%; }
	.rf-hero--dark.rf-hero--location { background-image: var(--rf-location-hero); background-position: 66% 58%; }
	.rf-hero--dark.rf-hero--contact { background-image: var(--rf-contact-hero); background-position: center 42%; }
	.rf-hero--dark.rf-hero--about { background-image: var(--rf-about-hero); background-position: center 42%; }
	.rf-hero--dark.rf-hero--legal { background-image: var(--rf-legal-hero); background-position: center 42%; }
	.rf-hero--dark.rf-hero--author { background-image: var(--rf-author-hero); background-position: center 42%; }
	.rf-hero--dark.rf-hero--service-single { background-image: var(--rf-service-hero); background-position: center 42%; }
	.rf-hero--dark.rf-hero--model-single { background-image: var(--rf-model-hero); background-position: center 42%; }
}
@media (max-width: 640px) {
	.rf-hero--dark#top,
	.rf-hero--dark.rf-hero--areas,
	.rf-hero--dark.rf-hero--appliances-archive,
	.rf-hero--dark.rf-hero--services-archive,
	.rf-hero--dark.rf-hero--models-archive,
	.rf-hero--dark.rf-hero--ec-archive,
	.rf-hero--dark.rf-hero--blog-archive,
	.rf-hero--dark.rf-hero--blog,
	.rf-hero--dark.rf-hero--contact,
	.rf-hero--dark.rf-hero--about,
	.rf-hero--dark.rf-hero--legal,
	.rf-hero--dark.rf-hero--author,
	.rf-hero--dark.rf-hero--service-single,
	.rf-hero--dark.rf-hero--model-single {
		background-position: center 38%;
	}
}
.rf-hero > .rf-container { position: relative; z-index: 1; }
.rf-hero__inner {
	display: grid;
	align-items: center;
	min-height: clamp(460px, 46vw, 640px);
	padding-block: clamp(2.5rem, 5vw, 4rem);
}
.rf-hero__content { max-width: 520px; }
.rf-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.28);
	box-shadow: none;
	color: rgba(255, 255, 255, 0.88);
	font-weight: 600;
	font-size: 0.85rem;
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	margin-bottom: 1.25rem;
}
.rf-hero__badge .rf-icon { color: #fff; width: 1.05em; height: 1.05em; }
.rf-hero__title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.02em;
	margin: 0 0 0.75rem;
	font-family: var(--rf-font-display);
	font-size: clamp(1.9rem, 4vw, 2.85rem);
	font-weight: 700;
	font-style: italic;
	font-stretch: expanded;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1.05;
	color: #fff;
	max-width: none;
}
.rf-hero__title-line {
	display: block;
	white-space: nowrap;
}
.rf-hero__rule {
	display: block;
	width: 160px;
	height: 3px;
	margin: 0 0 1.15rem;
	border-radius: 2px;
	background: linear-gradient(90deg, #fff 0%, #fff 35%, rgba(255, 255, 255, 0.45) 70%, rgba(255, 255, 255, 0) 100%);
}
.rf-hero__lead {
	font-family: var(--rf-font);
	font-size: 0.95rem;
	font-weight: 400;
	font-style: normal;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.72);
	max-width: 34em;
	margin-bottom: 1.35rem;
}
.rf-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.75rem;
}
.rf-hero__actions .rf-btn {
	border-radius: 0;
	box-shadow: none;
	font-family: var(--rf-font);
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
}
.rf-hero__actions .rf-btn--primary {
	background: #fff;
	border-color: #fff;
	color: #111;
}
.rf-hero__actions .rf-btn--primary:hover {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.55);
	color: #fff;
}
.rf-hero__actions .rf-btn--onink {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.45);
	color: #fff;
}
.rf-hero__actions .rf-btn--onink:hover {
	background: #fff;
	border-color: #fff;
	color: #111;
}
.rf-hero__trust {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
	color: rgba(255, 255, 255, 0.7);
	font-family: var(--rf-font);
	font-size: 0.86rem;
	font-weight: 500;
	font-style: normal;
}
.rf-hero__trust li {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	list-style: none;
	padding-inline: 0.95rem;
	min-width: 0;
}
.rf-hero__trust li:first-child { padding-left: 0; }
.rf-hero__trust li + li {
	border-left: 1px solid rgba(255, 255, 255, 0.22);
}
.rf-hero__trust-ico {
	flex: none;
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	background: transparent;
	border: 0;
	color: #fff;
}
.rf-hero__trust-ico .rf-icon {
	color: #fff;
	width: 20px;
	height: 20px;
}
.rf-hero__trust-text {
	display: block;
	max-width: 9.5rem;
	line-height: 1.25;
	color: rgba(255, 255, 255, 0.72);
}

/* Hero visual composition */
.rf-hero__media { position: relative; }
.rf-hero__media::before {
	content: "";
	position: absolute;
	width: 130%;
	aspect-ratio: 1;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border: 1px solid color-mix(in srgb, var(--rf-secondary) 16%, transparent);
	border-radius: 50%;
	z-index: 0;
	pointer-events: none;
}
.rf-hero__media::after {
	content: "";
	position: absolute;
	width: 96%;
	aspect-ratio: 1;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border: 1px dashed color-mix(in srgb, var(--rf-primary) 20%, transparent);
	border-radius: 50%;
	z-index: 0;
	pointer-events: none;
}
.rf-hero-figure {
	position: relative;
	border-radius: var(--rf-radius-lg);
	background: linear-gradient(150deg, var(--rf-secondary) 0%, var(--rf-secondary-dark) 100%);
	aspect-ratio: 4 / 3.4;
	box-shadow: var(--rf-shadow-lg);
	overflow: hidden;
	display: grid;
	place-items: center;
	color: #fff;
}
.rf-hero-figure__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rf-hero-figure__placeholder {
	display: grid;
	place-items: center;
	gap: 0.75rem;
	text-align: center;
	padding: 2rem;
}
.rf-hero-figure__placeholder .rf-icon { width: 84px; height: 84px; opacity: 0.9; }
.rf-hero-figure__placeholder span { font-weight: 600; opacity: 0.85; letter-spacing: 0.02em; }
.rf-hero-figure__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
	background-size: 44px 44px;
}
/* Hero booking card */
.rf-hero__card {
	position: relative;
	z-index: 1;
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius-lg);
	box-shadow: var(--rf-shadow-lg);
	padding: clamp(1.25rem, 3vw, 1.75rem);
}
.rf-hero__flag {
	position: absolute;
	top: -0.9rem;
	right: 1.25rem;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	background: var(--rf-primary);
	color: #fff;
	border-radius: var(--rf-radius);
	box-shadow: 0 8px 20px color-mix(in srgb, var(--rf-primary) 32%, transparent);
	padding: 0.5rem 0.9rem;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.rf-hero__flag .rf-icon { width: 1.35em; height: 1.35em; }
.rf-hero__flag small { display: block; font-weight: 500; text-transform: none; letter-spacing: 0; opacity: 0.92; }
.rf-hero__form { padding: 0; }
.rf-hero__form-title { font-size: 1.3rem; margin-bottom: 0.9rem; }
.rf-hero__form-sub { color: var(--rf-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.rf-hero__card-foot {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	margin-top: 1.1rem;
	padding-top: 1.1rem;
	border-top: 1px solid var(--rf-line);
}
.rf-hero__card-foot .rf-icon { flex: none; color: var(--rf-primary); width: 1.4em; height: 1.4em; margin-top: 2px; }
.rf-hero__card-foot strong { display: block; font-size: 0.95rem; color: var(--rf-charcoal); }
.rf-hero__card-foot small { color: var(--rf-muted); font-size: 0.85rem; }

/* =========================================================================
   10. Cards (shared)
   ========================================================================= */
.rf-card {
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius);
	padding: clamp(1.25rem, 2.4vw, 1.6rem);
	box-shadow: var(--rf-shadow-xs);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
	height: 100%;
}
.rf-card--hover:hover {
	transform: translateY(-4px);
	box-shadow: var(--rf-shadow);
	border-color: var(--rf-line-strong);
}
.rf-card__icon {
	width: 54px; height: 54px;
	display: grid; place-items: center;
	border-radius: var(--rf-radius);
	background: var(--rf-accent-soft);
	color: var(--rf-accent);
	margin-bottom: 1rem;
}
.rf-card__icon .rf-icon { width: 28px; height: 28px; }
.rf-card__title { font-size: 1.15rem; margin-bottom: 0.4rem; }
.rf-card__text { color: var(--rf-muted); margin-bottom: 0; font-size: 0.97rem; }
.rf-card__foot { margin-top: 1rem; }

/* Appliance card variant — layout defined in §34. */

/* Problem card variant — layout defined in §34c. */

/* Location card — layout defined in §34e (homepage locations). */

/* Guarantee cards reuse .rf-pcard from the process section. */

/* =========================================================================
   11. Trust metrics
   ========================================================================= */
.rf-metrics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
}
.rf-metric {
	text-align: center;
	padding: 1.5rem 1rem;
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius);
	box-shadow: var(--rf-shadow-xs);
}
.rf-metric__icon {
	display: inline-grid; place-items: center;
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--rf-accent-soft);
	color: var(--rf-accent);
	margin-bottom: 0.6rem;
}
.rf-metric__value {
	font-size: clamp(1.9rem, 3vw, 2.4rem);
	font-weight: 800;
	color: var(--rf-charcoal);
	letter-spacing: -0.02em;
	line-height: 1;
}
.rf-metric__label {
	display: block;
	margin-top: 0.35rem;
	color: var(--rf-muted);
	font-weight: 600;
	font-size: 0.9rem;
}

/* =========================================================================
   12. Process / steps
   ========================================================================= */
.rf-steps {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	counter-reset: rf-step;
}
.rf-step {
	position: relative;
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius);
	padding: 1.5rem 1.35rem 1.35rem;
	box-shadow: var(--rf-shadow-xs);
}
.rf-step__num {
	counter-increment: rf-step;
	display: inline-grid; place-items: center;
	width: 42px; height: 42px;
	border-radius: 50%;
	background: var(--rf-accent);
	color: #fff;
	font-weight: 800;
	margin-bottom: 0.9rem;
}
.rf-step__num::before { content: counter(rf-step); }
.rf-step__title { font-size: 1.1rem; margin-bottom: 0.35rem; }
.rf-step__text { color: var(--rf-muted); font-size: 0.95rem; margin: 0; }

/* Transformation + reviews layouts defined in §34f / §34g / §34h. */

/* Carousel (reviews) */
.rf-carousel {
	position: relative;
	overflow: visible;
}
.rf-carousel__track {
	display: flex;
	gap: clamp(1rem, 2vw, 1.5rem);
	list-style: none;
	margin: 0;
	padding: 0.5rem 0.25rem 1rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}
.rf-carousel__track::-webkit-scrollbar { display: none; }
.rf-carousel__slide {
	flex: 0 0 calc((100% - 2 * clamp(1rem, 2vw, 1.5rem)) / 3);
	scroll-snap-align: start;
	display: flex;
}
.rf-carousel__slide > .rf-review { width: 100%; }
.rf-carousel__controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.75rem;
	margin-top: 0.5rem;
}
.rf-carousel__nav {
	position: static;
	flex: none;
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 0;
	border: 1px solid #111;
	background: #111;
	color: #fff;
	box-shadow: none;
	cursor: pointer;
	transition: background 0.16s ease, color 0.16s ease, opacity 0.16s ease;
}
.rf-carousel__nav:hover { background: #fff; color: #111; border-color: #111; }
.rf-carousel__nav .rf-icon { width: 22px; height: 22px; }
.rf-carousel__nav[disabled] { opacity: 0.35; cursor: default; }
.rf-carousel__nav[disabled]:hover { background: #111; color: #fff; border-color: #111; }

@media (max-width: 900px) {
	.rf-carousel__slide { flex-basis: calc((100% - clamp(1rem, 2vw, 1.5rem)) / 2); }
}
@media (max-width: 640px) {
	.rf-carousel__slide { flex-basis: 86%; }
}
.rf-demo-flag {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--rf-muted);
	background: var(--rf-surface-2);
	border: 1px dashed var(--rf-line-strong);
	border-radius: var(--rf-radius-sm);
	padding: 0.25rem 0.5rem;
	align-self: flex-start;
}
.rf-reviews-note {
	margin-top: 1.5rem;
	text-align: center;
	color: var(--rf-muted);
	font-size: 0.9rem;
}

/* =========================================================================
   15. Split / feature panels
   ========================================================================= */
.rf-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.rf-featurelist { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: 0.85rem; }
.rf-featurelist li { display: flex; gap: 0.75rem; align-items: flex-start; }
.rf-featurelist .rf-icon { color: var(--rf-accent); width: 1.4em; height: 1.4em; flex: none; margin-top: 0.1rem; }
.rf-featurelist strong { display: block; color: var(--rf-charcoal); }
.rf-featurelist span { color: var(--rf-muted); font-size: 0.95rem; }

.rf-panel {
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius-lg);
	box-shadow: var(--rf-shadow);
	padding: clamp(1.5rem, 3vw, 2.25rem);
}
.rf-panel--muted { background: var(--rf-surface-2); box-shadow: none; }

.rf-expert {
	display: flex;
	gap: 1.1rem;
	align-items: center;
}
.rf-expert__avatar {
	width: 84px; height: 84px;
	flex: none;
	border-radius: var(--rf-radius);
	background: linear-gradient(150deg, var(--rf-secondary), var(--rf-secondary-dark));
	color: #fff;
	display: grid; place-items: center;
}
.rf-expert__avatar .rf-icon { width: 44px; height: 44px; }
.rf-expert__role { color: var(--rf-primary); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.rf-expert__name { font-weight: 800; color: var(--rf-charcoal); font-size: 1.15rem; }
.rf-expert__text { color: var(--rf-muted); font-size: 0.94rem; margin: 0.35rem 0 0; }

/* =========================================================================
   16. FAQ accordion
   ========================================================================= */
.rf-faq {
	display: grid;
	gap: 0.85rem;
	max-width: 860px;
	margin-inline: auto;
}
.rf-faq__item {
	background: #f5f6f7;
	border: 1px solid #e8ebef;
	border-radius: 0;
	overflow: hidden;
	box-shadow: none;
	transition: border-color 0.18s ease, background 0.18s ease;
}
.rf-faq__item:has(.rf-faq__trigger[aria-expanded="true"]) {
	border-color: #111;
}
.rf-faq__q { margin: 0; font-size: inherit; line-height: inherit; }
.rf-faq__trigger {
	width: 100%;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0.95rem;
	text-align: left;
	background: none;
	border: 0;
	padding: 1.2rem 1.3rem;
	font-family: inherit;
	font-size: 1.02rem;
	font-weight: 700;
	color: #111;
	cursor: pointer;
}
.rf-faq__num {
	font-family: var(--rf-font-display);
	font-size: 1.15rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.04em;
	line-height: 1;
	color: #111;
}
.rf-faq__label {
	font-family: var(--rf-font-display);
	font-size: clamp(0.95rem, 1.4vw, 1.05rem);
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: 1.3;
}
.rf-faq__trigger:hover .rf-faq__label { color: #111; }
.rf-faq__sign {
	flex: none;
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	border-radius: 0;
	border: 1px solid #111;
	background: #111;
	color: #fff;
	transition: transform 0.22s ease, background 0.18s ease, color 0.18s ease;
}
.rf-faq__sign .rf-icon { width: 16px; height: 16px; }
.rf-faq__trigger[aria-expanded="true"] .rf-faq__sign {
	transform: rotate(45deg);
	background: #fff;
	color: #111;
}
.rf-faq__panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.28s ease;
}
.rf-faq__panel-inner {
	padding: 0 1.3rem 1.3rem 3.55rem;
	color: #6b7280;
	font-size: 0.96rem;
	line-height: 1.55;
}
.rf-faq__panel-inner p { margin: 0; }

.rf-section--faq {
	background: #f5f6f7;
}
.rf-section--faq .rf-faq__item {
	background: #fff;
}
.rf-section--alt.rf-section--loc .rf-faq__item {
	background: #fff;
}
@media (max-width: 640px) {
	.rf-faq__trigger {
		grid-template-columns: auto 1fr;
		grid-template-areas:
			"num sign"
			"label label";
		gap: 0.65rem 0.85rem;
	}
	.rf-faq__num { grid-area: num; }
	.rf-faq__sign { grid-area: sign; justify-self: end; }
	.rf-faq__label { grid-area: label; }
	.rf-faq__panel-inner { padding-left: 1.3rem; }
}

/* =========================================================================
   17. Booking form
   ========================================================================= */
.rf-form { display: grid; gap: 1rem; }
.rf-form__row {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr 1fr;
}
.rf-field { display: flex; flex-direction: column; gap: 0.35rem; }
.rf-field--full { grid-column: 1 / -1; }
.rf-field label {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--rf-charcoal);
}
.rf-field .rf-req { color: var(--rf-primary); }
.rf-field input,
.rf-field select,
.rf-field textarea {
	width: 100%;
	font-family: inherit;
	font-size: 1rem;
	color: var(--rf-ink);
	background: var(--rf-surface);
	border: 1px solid var(--rf-line-strong);
	border-radius: var(--rf-radius-sm);
	padding: 0.7rem 0.85rem;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.rf-field textarea { min-height: 120px; resize: vertical; }
.rf-field input:focus,
.rf-field select:focus,
.rf-field textarea:focus {
	outline: none;
	border-color: var(--rf-primary);
	box-shadow: var(--rf-focus);
}
.rf-field input[aria-invalid="true"],
.rf-field select[aria-invalid="true"],
.rf-field textarea[aria-invalid="true"] {
	border-color: var(--rf-primary);
	background: color-mix(in srgb, var(--rf-primary) 4%, #fff);
}
.rf-field__error {
	color: var(--rf-primary-dark);
	font-size: 0.82rem;
	font-weight: 600;
}
.rf-consent {
	display: flex;
	gap: 0.6rem;
	align-items: flex-start;
	font-size: 0.9rem;
	color: var(--rf-muted);
}
.rf-consent input { width: auto; margin-top: 0.2rem; flex: none; }
.rf-consent label { font-weight: 500; color: var(--rf-muted); font-size: 0.88rem; }
.rf-honeypot {
	position: absolute !important;
	left: -9999px;
	width: 1px; height: 1px;
	overflow: hidden;
}
.rf-form__note { font-size: 0.82rem; color: var(--rf-muted); margin: 0; }

.rf-alert {
	border-radius: var(--rf-radius);
	padding: 1rem 1.15rem;
	font-size: 0.95rem;
	display: flex;
	gap: 0.6rem;
	align-items: flex-start;
}
.rf-alert .rf-icon { flex: none; margin-top: 0.1rem; }
.rf-alert--success {
	background: var(--rf-primary-soft);
	border: 1px solid color-mix(in srgb, var(--rf-primary) 22%, #fff);
	color: var(--rf-primary-dark);
}
.rf-alert--error {
	background: color-mix(in srgb, var(--rf-primary) 8%, #fff);
	border: 1px solid color-mix(in srgb, var(--rf-primary) 35%, #fff);
	color: var(--rf-primary-dark);
}

/* =========================================================================
   18. Notices (safety / disclosure)
   ========================================================================= */
.rf-notice {
	display: flex;
	gap: 0.85rem;
	align-items: flex-start;
	background: var(--rf-surface-2);
	border: 1px solid var(--rf-line);
	border-left: 4px solid var(--rf-secondary);
	border-radius: var(--rf-radius);
	padding: 1.1rem 1.25rem;
	color: var(--rf-ink-2);
	font-size: 0.94rem;
}
.rf-notice .rf-icon { flex: none; color: var(--rf-secondary); margin-top: 0.1rem; }
.rf-notice--safety { border-left-color: var(--rf-primary); }
.rf-notice--safety .rf-icon { color: var(--rf-primary); }
.rf-notice strong { color: var(--rf-charcoal); }

.rf-disclosure {
	background: var(--rf-surface-2);
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius);
	padding: 1.25rem 1.4rem;
	color: var(--rf-muted);
	font-size: 0.9rem;
	display: flex;
	gap: 0.85rem;
	align-items: flex-start;
}
.rf-disclosure .rf-icon { flex: none; color: var(--rf-secondary); margin-top: 0.15rem; }
.rf-disclosure strong { color: var(--rf-charcoal); }

/* =========================================================================
   19. CTA banner
   ========================================================================= */
.rf-section--final-cta {
	background: #f5f6f7;
}
.rf-cta-banner {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	border-radius: 0;
	padding: clamp(2.25rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 2.75rem);
	background: #fff;
	color: #111;
}
.rf-cta-banner__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.99) 0%,
			rgba(255, 255, 255, 0.98) 24%,
			rgba(255, 255, 255, 0.94) 38%,
			rgba(255, 255, 255, 0.82) 52%,
			rgba(255, 255, 255, 0.52) 66%,
			rgba(255, 255, 255, 0.18) 82%,
			rgba(255, 255, 255, 0) 100%
		),
		url(../images/cta-bg.jpg) center right / cover no-repeat;
}
.rf-cta-banner__inner {
	position: relative;
	z-index: 1;
	display: block;
}
.rf-cta-banner__copy {
	max-width: 34rem;
}
.rf-cta-banner__copy .rf-heading__eyebrow {
	background: #111;
	border-color: #111;
	color: #fff;
	font-style: normal;
	letter-spacing: 0.1em;
}
.rf-cta-banner__title {
	display: flex;
	flex-direction: column;
	gap: 0.06em;
	margin: 0.85rem 0 0;
	font-family: var(--rf-font-display);
	font-size: clamp(1.55rem, 3.2vw, 2.25rem);
	font-weight: 700;
	font-style: italic;
	line-height: 1.12;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111;
	text-shadow: 0 1px 12px rgba(255, 255, 255, 0.9);
}
.rf-cta-banner__title-line { display: block; }
.rf-cta-banner__rule {
	display: block;
	width: 140px;
	height: 3px;
	margin: 1rem 0 0.95rem;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 45%, rgba(17, 17, 17, 0) 100%);
}
.rf-cta-banner__text {
	margin: 0 0 1.5rem;
	max-width: 40em;
	font-size: 1.02rem;
	line-height: 1.55;
	color: #374151;
	text-shadow: 0 1px 10px rgba(255, 255, 255, 0.85);
}
.rf-cta-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}
.rf-cta-banner__actions .rf-btn {
	border-radius: 0;
}
.rf-cta-banner__actions .rf-btn--primary {
	background: #111;
	border-color: #111;
	color: #fff;
}
.rf-cta-banner__actions .rf-btn--primary:hover {
	background: #fff;
	color: #111;
}
.rf-cta-banner__actions .rf-btn--secondary {
	background: #fff;
	border-color: #111;
	color: #111;
}
.rf-cta-banner__actions .rf-btn--secondary:hover {
	background: #111;
	color: #fff;
}
@media (max-width: 640px) {
	.rf-cta-banner__bg {
		background:
			linear-gradient(
				180deg,
				rgba(255, 255, 255, 0.99) 0%,
				rgba(255, 255, 255, 0.97) 42%,
				rgba(255, 255, 255, 0.88) 62%,
				rgba(255, 255, 255, 0.62) 100%
			),
			url(../images/cta-bg.jpg) 70% center / cover no-repeat;
	}
	.rf-cta-banner__actions { width: 100%; }
	.rf-cta-banner__actions .rf-btn { flex: 1 1 auto; justify-content: center; }
}

/* =========================================================================
   20. NAP / contact block
   ========================================================================= */
.rf-nap { display: grid; gap: 1rem; }
.rf-nap__item {
	display: flex;
	gap: 0.85rem;
	align-items: flex-start;
}
.rf-nap__icon {
	width: 44px; height: 44px;
	flex: none;
	display: grid; place-items: center;
	border-radius: var(--rf-radius);
	background: var(--rf-accent-soft);
	color: var(--rf-accent);
}
.rf-nap__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rf-muted); font-weight: 700; }
.rf-nap__value { font-weight: 600; color: var(--rf-charcoal); }
.rf-nap__value a { color: var(--rf-charcoal); }
.rf-nap__value a:hover { color: var(--rf-primary); }

/* =========================================================================
   21. Footer
   ========================================================================= */
.rf-footer {
	background: #111;
	color: rgba(255, 255, 255, 0.62);
	padding-block: clamp(2.75rem, 5vw, 4rem) 0;
}
.rf-footer a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	transition: color 0.16s ease;
}
.rf-footer a:hover { color: #fff; }
.rf-footer__top {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) repeat(4, minmax(0, 1fr));
	gap: clamp(1.75rem, 3vw, 2.5rem);
	padding-bottom: clamp(2rem, 4vw, 2.75rem);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.rf-footer__brandcol { max-width: 22rem; }
.rf-footer__brand .rf-brand__name { color: #fff; }
.rf-footer__brand .rf-brand__tag { color: rgba(255, 255, 255, 0.5); }
.rf-footer__about {
	font-size: 0.94rem;
	line-height: 1.55;
	margin: 1.1rem 0 0;
	color: rgba(255, 255, 255, 0.55);
}
.rf-footer__rule {
	display: block;
	width: 120px;
	height: 3px;
	margin: 1.1rem 0 1.25rem;
	border-radius: 2px;
	background: linear-gradient(90deg, #fff 0%, #fff 40%, rgba(255, 255, 255, 0) 100%);
}
.rf-footer__brandcol .rf-btn--onink {
	border-radius: 0;
	background: #fff;
	border-color: #fff;
	color: #111;
}
.rf-footer__brandcol .rf-btn--onink:hover {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.45);
}
.rf-footer__col-title {
	margin: 0;
	font-family: var(--rf-font-display);
	font-size: 0.88rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.2;
}
.rf-footer__col-rule {
	display: block;
	width: 72px;
	height: 2px;
	margin: 0.7rem 0 1rem;
	border-radius: 2px;
	background: linear-gradient(90deg, #fff 0%, #fff 40%, rgba(255, 255, 255, 0) 100%);
}
.rf-footer__col ul,
.rf-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}
.rf-footer__col a,
.rf-footer__list a {
	font-size: 0.92rem;
	line-height: 1.35;
}
.rf-footer__contact {
	display: grid;
	gap: 0.85rem;
}
.rf-footer__contact-item {
	display: grid;
	grid-template-columns: 2rem 1fr;
	gap: 0.7rem;
	align-items: start;
	font-size: 0.9rem;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.72);
}
.rf-footer__contact-ico {
	width: 2rem;
	height: 2rem;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: transparent;
	color: #fff;
}
.rf-footer__contact-ico .rf-icon {
	width: 0.95rem;
	height: 0.95rem;
}
.rf-footer__contact-item a {
	color: #fff;
	font-family: var(--rf-font-display);
	font-style: italic;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	font-size: 0.88rem;
}
.rf-footer__disclosure {
	padding-block: 1.5rem;
	font-size: 0.84rem;
	color: rgba(255, 255, 255, 0.45);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.rf-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 0.85rem 1.5rem;
	padding-block: 1.35rem;
	font-size: 0.84rem;
	color: rgba(255, 255, 255, 0.45);
}
.rf-footer__bottom > p { margin: 0; }
.rf-footer__bottom nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.35rem 1.15rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.rf-footer__bottom nav a {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}
.rf-footer__bottom nav a:hover { color: #fff; }

/* =========================================================================
   22. Mobile sticky call/book bar
   ========================================================================= */
.rf-sticky-bar {
	position: fixed;
	inset-inline: 0;
	bottom: 0;
	z-index: 90;
	display: none;
	gap: 0.5rem;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0.55rem 0.65rem;
	padding-bottom: calc(0.55rem + env(safe-area-inset-bottom, 0px));
	background: color-mix(in srgb, #fff 94%, transparent);
	backdrop-filter: blur(8px);
	border-top: 1px solid var(--rf-line);
	box-shadow: 0 -6px 20px rgba(20, 30, 45, 0.08);
}
.rf-sticky-bar .rf-btn {
	flex: 1 1 0;
	min-width: 0;
	padding-inline: 0.75rem;
	font-size: 0.95rem;
}

/* =========================================================================
   23. Breadcrumbs
   ========================================================================= */
/* Breadcrumbs now live inside the page hero — no separate bar/divider. */
.rf-breadcrumbs { margin-bottom: 0.9rem; }
.rf-breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.85rem;
}
.rf-breadcrumbs__sep { color: var(--rf-line-strong); margin-inline: 0.15rem; }
.rf-breadcrumbs__link { color: var(--rf-muted); font-weight: 600; }
.rf-breadcrumbs__link:hover { color: var(--rf-primary); }
.rf-breadcrumbs__current { color: var(--rf-charcoal); font-weight: 700; }

/* =========================================================================
   24. Page header + generic content
   ========================================================================= */
.rf-page-header {
	background: linear-gradient(180deg, var(--rf-surface) 0%, var(--rf-surface-2) 100%);
	border-bottom: 1px solid var(--rf-line);
	padding-block: clamp(2rem, 5vw, 3.25rem);
}
.rf-page-header__title { margin: 0; }
.rf-page-header__sub { color: var(--rf-muted); margin: 0.6rem 0 0; font-size: 1.05rem; }

/* Decorative hero with a product image (e.g. Services archive). */
.rf-page-header--image {
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--rf-line);
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.75) 42%, rgba(255, 255, 255, 0.25) 74%, rgba(255, 255, 255, 0) 100%),
		var(--rf-header-image) center right / cover no-repeat,
		var(--rf-surface-2);
	padding-block: clamp(2.5rem, 6vw, 5rem);
}
.rf-page-header--image .rf-container { position: relative; z-index: 1; }
.rf-page-header--image .rf-page-header__title,
.rf-page-header--image .rf-page-header__sub { max-width: 34rem; }

@media (max-width: 782px) {
	.rf-page-header--image {
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.6) 55%, rgba(255, 255, 255, 0.85) 100%),
			var(--rf-header-image) center / cover no-repeat,
			var(--rf-surface-2);
	}
	.rf-page-header--image .rf-page-header__title,
	.rf-page-header--image .rf-page-header__sub { max-width: none; }
}

/* =========================================================================
   24b. Policy pages (plain dark hero + editorial panel)
   ========================================================================= */
.rf-hero--dark.rf-hero--plain {
	background-color: #0a0a0a;
	background-image: none;
}
.rf-hero--dark.rf-hero--plain::before {
	background: linear-gradient(
		90deg,
		#0a0a0a 0%,
		#0a0a0a 22%,
		rgba(10, 10, 10, 0.9) 52%,
		rgba(10, 10, 10, 0.62) 100%
	);
}
.rf-hero--policy .rf-hero__inner--archive {
	min-height: clamp(260px, 28vw, 360px);
	padding-block: clamp(2rem, 4vw, 3rem);
}
.rf-section--policy {
	background: #f5f6f7;
}
.rf-policy-panel {
	background: #fff;
	border: 1px solid #e8ebef;
	padding: clamp(2rem, 4vw, 3rem);
}
.rf-prose--policy {
	max-width: none;
	color: #4b5563;
	font-size: 1.02rem;
	line-height: 1.65;
}
.rf-prose--policy > * + * {
	margin-top: 1rem;
}
.rf-prose--policy h2 {
	margin: 2.25rem 0 0;
	font-family: var(--rf-font-display);
	font-size: clamp(1.2rem, 2.4vw, 1.5rem);
	font-weight: 700;
	font-style: italic;
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111;
}
.rf-prose--policy h2:first-child {
	margin-top: 0;
}
.rf-prose--policy h2::after {
	content: "";
	display: block;
	width: 96px;
	height: 3px;
	margin-top: 0.75rem;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 45%, rgba(17, 17, 17, 0) 100%);
}
.rf-prose--policy ul,
.rf-prose--policy ol {
	padding-left: 1.35rem;
}
.rf-prose--policy li + li {
	margin-top: 0.35rem;
}
.rf-prose--policy a {
	color: #111;
}
.rf-prose--policy a:hover {
	color: var(--rf-primary);
}
.rf-policy-panel__foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: clamp(2rem, 4vw, 2.75rem);
	padding-top: 1.5rem;
	border-top: 1px solid #e8ebef;
}
.rf-policy-panel__updated {
	margin: 0;
	font-size: 0.92rem;
	color: #6b7280;
}
.rf-policy-panel__contact {
	margin: 0;
}

@media (max-width: 768px) {
	.rf-hero--dark.rf-hero--plain .rf-hero__inner,
	.rf-hero--dark.rf-hero--plain .rf-hero__inner--archive {
		min-height: clamp(260px, 52vw, 340px);
	}
	.rf-hero--dark.rf-hero--plain::before {
		background: linear-gradient(
			180deg,
			rgba(10, 10, 10, 0.98) 0%,
			rgba(10, 10, 10, 0.92) 58%,
			rgba(10, 10, 10, 0.84) 100%
		);
	}
	.rf-policy-panel__foot {
		flex-direction: column;
		align-items: flex-start;
	}
}

.rf-prose .rf-table-wrap { margin: 1.5rem 0; }
.rf-prose .rf-proscons {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin: 1.75rem 0;
}
.rf-proscons__col {
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius);
	background: #fff;
	padding: 1.15rem 1.25rem;
	box-shadow: var(--rf-shadow-xs);
}
.rf-proscons__col--pro { border-top: 3px solid var(--rf-secondary); }
.rf-proscons__col--con { border-top: 3px solid var(--rf-primary); }
.rf-proscons__title {
	margin: 0 0 0.75rem;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}
.rf-proscons__col--pro .rf-proscons__title { color: var(--rf-secondary); }
.rf-proscons__col--con .rf-proscons__title { color: var(--rf-primary); }
.rf-proscons__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}
.rf-proscons__list li {
	margin: 0;
	padding-left: 1.35rem;
	position: relative;
	color: var(--rf-ink-2);
	font-size: 0.95rem;
	line-height: 1.45;
}
.rf-proscons__col--pro .rf-proscons__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: var(--rf-secondary);
}
.rf-proscons__col--con .rf-proscons__list li::before {
	content: "";
	position: absolute;
	left: 0.1rem;
	top: 0.35em;
	width: 0.65rem;
	height: 0.15rem;
	background: var(--rf-primary);
	border-radius: 1px;
}
.rf-ec-page__main .rf-faq { max-width: none; margin-inline: 0; }

@media (max-width: 700px) {
	.rf-prose .rf-proscons { grid-template-columns: 1fr; }
}

.rf-prose { max-width: 760px; }
.rf-prose > * + * { margin-top: 1rem; }
.rf-prose h2 { margin-top: 2rem; }
.rf-prose h3 { margin-top: 1.5rem; }
.rf-prose img { border-radius: var(--rf-radius); margin-block: 1rem; }
.rf-prose blockquote {
	margin: 1.5rem 0;
	padding: 0.5rem 0 0.5rem 1.25rem;
	border-left: 4px solid var(--rf-primary);
	color: var(--rf-ink-2);
	font-style: italic;
}
.rf-prose ul, .rf-prose ol { padding-left: 1.4rem; }
.rf-prose li { margin-bottom: 0.4rem; }
.rf-prose ol { list-style: none; counter-reset: rf-ol; padding-left: 1.9rem; }
.rf-prose ol > li { counter-increment: rf-ol; position: relative; }
.rf-prose ol > li::before {
	content: counter(rf-ol) ".";
	position: absolute;
	left: -1.9rem;
	width: 1.5rem;
	text-align: right;
	color: var(--rf-accent);
	font-weight: 700;
}
.rf-prose ul > li::marker { color: var(--rf-accent); }
.rf-prose code {
	background: var(--rf-surface-3);
	border-radius: 4px;
	padding: 0.1rem 0.35rem;
	font-size: 0.9em;
}
.rf-prose :where(pre) {
	background: var(--rf-charcoal);
	color: #e6ebf1;
	padding: 1rem 1.25rem;
	border-radius: var(--rf-radius);
	overflow: auto;
}
.rf-prose a { text-decoration: underline; text-underline-offset: 2px; }

.rf-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: clamp(2rem, 4vw, 3rem);
	align-items: start;
}
.rf-sidebar { display: grid; gap: 1.5rem; }
.rf-sidebar .widget {
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius);
	padding: 1.25rem;
	box-shadow: var(--rf-shadow-xs);
}
.widget__title { font-size: 1.05rem; margin-bottom: 0.75rem; }
.widget ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }

/* Post cards / archive */
.rf-posts {
	display: grid;
	gap: clamp(1.25rem, 3vw, 2rem);
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.rf-post-card {
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius);
	overflow: hidden;
	box-shadow: var(--rf-shadow-xs);
	display: flex;
	flex-direction: column;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.rf-post-card:hover { transform: translateY(-4px); box-shadow: var(--rf-shadow); }
.rf-post-card__thumb {
	display: block;
	overflow: hidden;
	background: var(--rf-surface-3);
}
.rf-post-card__thumb img {
	display: block;
	width: 100%;
	height: auto;
	filter: grayscale(1);
	transition: filter 0.2s ease, transform 0.35s ease, opacity 0.2s ease;
}
.rf-post-card__thumb:has(.rf-cover),
.rf-post-card__thumb:has(.rf-post-card__placeholder) {
	aspect-ratio: 16 / 9;
}
.rf-post-card__placeholder {
	width: 100%; height: 100%;
	display: grid; place-items: center;
	color: var(--rf-line-strong);
	background: var(--rf-surface-3);
}
.rf-post-card__placeholder .rf-icon { width: 40px; height: 40px; }

/* Generated article cover — "studio product shot" look (no featured image).
   A moody backdrop with a soft spotlight, category glow, texture, a spotlit
   appliance silhouette and a floor reflection. */
.rf-cover {
	--rf-cover-glow: rgba(216, 31, 42, 0.55); /* overridden per category */
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	color: #fff;
	background:
		radial-gradient(90% 75% at 74% 26%, var(--rf-cover-glow), transparent 60%),
		radial-gradient(120% 95% at 68% 18%, rgba(255, 255, 255, 0.16), transparent 55%),
		linear-gradient(160deg, #2a323d 0%, #171e27 58%, #0c1118 100%);
}
/* Fine studio texture */
.rf-cover__grain {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1.3px);
	background-size: 16px 16px;
	opacity: 0.6;
	pointer-events: none;
}
/* Spotlight cone from top */
.rf-cover__spot {
	position: absolute;
	top: -40%;
	right: 6%;
	width: 78%;
	height: 150%;
	background: radial-gradient(closest-side, rgba(255, 255, 255, 0.22), transparent 70%);
	filter: blur(6px);
	pointer-events: none;
}
/* Spotlit appliance silhouette */
.rf-cover__product {
	position: absolute;
	right: 8%;
	top: 46%;
	transform: translateY(-50%);
	display: grid;
	place-items: center;
	pointer-events: none;
}
.rf-cover__product .rf-icon {
	width: clamp(88px, 34%, 168px);
	height: auto;
	color: #fff;
	opacity: 0.92;
	stroke-width: 1.4;
	filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 24px var(--rf-cover-glow));
}
/* Reflective floor */
.rf-cover__floor {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 34%;
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.06) 60%, rgba(255, 255, 255, 0.12));
	pointer-events: none;
}
.rf-cover__floor::before {
	content: "";
	position: absolute;
	left: 10%; right: 10%; bottom: 22%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}
/* Category tag */
.rf-cover__tag {
	position: absolute;
	left: 1.1rem;
	bottom: 1.05rem;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	padding: 0.36rem 0.85rem;
	background: rgba(10, 14, 20, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--rf-radius-pill);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.rf-cover--common-problems  { --rf-cover-glow: rgba(216, 31, 42, 0.5); }
.rf-cover--maintenance-care { --rf-cover-glow: rgba(31, 157, 107, 0.5); }
.rf-cover--troubleshooting  { --rf-cover-glow: rgba(63, 108, 160, 0.55); }
.rf-cover--safety-risks     { --rf-cover-glow: rgba(232, 145, 42, 0.5); }
.rf-cover--default          { --rf-cover-glow: rgba(232, 130, 15, 0.45); }

.rf-post-card__body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.rf-post-card__meta { font-size: 0.82rem; color: var(--rf-muted); display: flex; gap: 0.75rem; flex-wrap: wrap; }
.rf-post-card__title { font-size: 1.2rem; margin: 0; }
.rf-post-card__excerpt { color: var(--rf-muted); font-size: 0.95rem; margin: 0; }
.rf-post-card__foot { margin-top: auto; padding-top: 0.5rem; }

.rf-meta { color: var(--rf-muted); font-size: 0.88rem; display: flex; flex-wrap: wrap; gap: 0.35rem 1rem; }
.rf-meta .rf-icon { width: 1em; height: 1em; }

/* Pagination */
.rf-pagination { margin-top: 2.5rem; }
.rf-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	justify-content: center;
}
.rf-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding-inline: 0.5rem;
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius-sm);
	background: #fff;
	font-weight: 600;
	color: var(--rf-ink-2);
}
.rf-pagination .page-numbers.current {
	background: var(--rf-primary);
	color: #fff;
	border-color: var(--rf-primary);
}
.rf-pagination .page-numbers:hover:not(.current) { border-color: var(--rf-secondary); color: var(--rf-primary); }

/* 404 & search */
.rf-empty {
	text-align: center;
	max-width: 620px;
	margin-inline: auto;
	padding-block: clamp(2rem, 6vw, 4rem);
}
.rf-empty__code {
	font-size: clamp(4rem, 14vw, 8rem);
	font-weight: 800;
	line-height: 1;
	color: var(--rf-primary);
	letter-spacing: -0.03em;
}
.rf-empty__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.5rem; }
.rf-searchform {
	display: flex;
	gap: 0.5rem;
	max-width: 480px;
	margin: 1.5rem auto 0;
}
.rf-searchform input[type="search"] {
	flex: 1;
	font-family: inherit;
	font-size: 1rem;
	padding: 0.75rem 1rem;
	border: 1px solid var(--rf-line-strong);
	border-radius: var(--rf-radius-sm);
}
.rf-searchform input[type="search"]:focus { outline: none; border-color: var(--rf-primary); box-shadow: var(--rf-focus); }

/* Single post */
.rf-single__header { margin-bottom: 1.25rem; }
.rf-single__thumb { margin: 0 0 1.75rem; border-radius: var(--rf-radius-lg); overflow: hidden; box-shadow: var(--rf-shadow-sm); }
.rf-post-page #post-overview .rf-byline { margin-bottom: 1.75rem; }
.rf-post-page #post-overview .rf-single__thumb { margin-top: 0; }
.rf-single__img { width: 100%; height: auto; display: block; filter: grayscale(1); }
.rf-single__thumb--cover { position: relative; aspect-ratio: 21 / 9; }
.rf-single__thumb--cover .rf-cover { position: absolute; inset: 0; }
.rf-single__thumb--cover .rf-cover__tag { font-size: 0.85rem; padding: 0.45rem 1rem; }
.rf-single__thumb--cover .rf-cover__product { right: 10%; }
.rf-single__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.rf-single__tags a {
	font-size: 0.85rem;
	font-weight: 600;
	padding: 0.3rem 0.75rem;
	border-radius: var(--rf-radius-pill);
	background: var(--rf-surface-2);
	border: 1px solid var(--rf-line);
	color: var(--rf-ink-2);
}
.rf-page-links { margin-top: 1.5rem; font-weight: 600; display: flex; gap: 0.4rem; align-items: center; }
.rf-post-nav {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--rf-line);
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}
.rf-post-nav a { font-weight: 600; }
.rf-navlink__label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rf-muted); }

/* Comments */
.rf-comments { margin-top: 3rem; }
.rf-comments__title { margin-bottom: 1.25rem; }
.rf-comments .comment-respond {
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius);
	padding: 1.5rem;
	margin-top: 1.5rem;
}
.rf-comments input[type="text"],
.rf-comments input[type="email"],
.rf-comments input[type="url"],
.rf-comments textarea {
	width: 100%;
	font-family: inherit;
	font-size: 1rem;
	padding: 0.7rem 0.85rem;
	border: 1px solid var(--rf-line-strong);
	border-radius: var(--rf-radius-sm);
	margin-top: 0.35rem;
}
.rf-comments .comment-form-comment,
.rf-comments .comment-form-author,
.rf-comments .comment-form-email,
.rf-comments .comment-form-url { margin-bottom: 1rem; }
.rf-comments .comment-list { list-style: none; padding: 0; }
.rf-comments .comment-body {
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius);
	padding: 1.25rem;
	margin-bottom: 1rem;
}
.rf-comments .children { list-style: none; padding-left: 1.5rem; }

/* =========================================================================
   25. Responsive
   ========================================================================= */
@media (max-width: 1024px) {
	.rf-footer__top { grid-template-columns: 1fr 1fr 1fr; }
	.rf-footer__brandcol { grid-column: 1 / -1; }
	.rf-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
	.rf-nav,
	.rf-header__actions .rf-phone-btn__label,
	.rf-header__actions .rf-btn--primary { display: none; }
	.rf-nav-toggle { display: inline-flex; }
	.rf-split { grid-template-columns: 1fr; }
	.rf-grid--3, .rf-grid--4 { grid-template-columns: repeat(2, 1fr); }

	/* Keep logo + icon-phone + menu on one line without horizontal overflow. */
	.rf-header__inner { gap: 0.65rem; }
	.rf-header__actions { gap: 0.35rem; }
	.rf-header__actions .rf-phone-btn--inline { padding: 0.45rem; }
	.rf-header__actions .rf-phone-btn--inline .rf-phone-btn__number { display: none; }
	.rf-brand__img {
		height: 24px;
		max-width: min(162px, 52vw);
	}
	.rf-nav-toggle {
		width: 42px;
		height: 42px;
	}
}

@media (max-width: 640px) {
	:root { --rf-header-h: 64px; }
	.rf-announce { font-size: 0.75rem; }
	.rf-announce__inner {
		justify-content: space-between;
		text-align: left;
		flex-wrap: nowrap;
		gap: 0.5rem 0.75rem;
		padding-block: 0.5rem;
	}
	.rf-announce__note { display: none; }
	.rf-announce__lead {
		flex: 1 1 auto;
		min-width: 0;
	}
	.rf-announce__phone {
		flex: 0 0 auto;
		margin-left: 0;
	}
	.rf-grid--2, .rf-grid--3, .rf-grid--4 { grid-template-columns: 1fr; }
	.rf-metrics { grid-template-columns: repeat(2, 1fr); }
	.rf-form__row { grid-template-columns: 1fr; }
	.rf-footer__top { grid-template-columns: 1fr 1fr; }
	.rf-cta-banner__actions { width: 100%; }
	.rf-cta-banner__actions .rf-btn { flex: 1 1 0; min-width: 0; }
	.rf-sticky-bar { display: flex; }
	body.rf-has-sticky { padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
	.rf-searchform { flex-direction: column; }
	.rf-hero__actions {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}
	.rf-hero__actions .rf-btn {
		flex: 1 1 100%;
		min-width: 0;
		white-space: normal;
	}
	/* Phone lives in the sticky bar — free header space. */
	.rf-header__actions .rf-phone-btn { display: none; }
	.rf-container { padding-inline: 1rem; }
	.rf-btn { max-width: 100%; box-sizing: border-box; }
}

@media (max-width: 768px) {
	.rf-hero:not(.rf-hero--dark)::before {
		content: "";
		position: absolute;
		inset: 0;
		background: rgba(10, 10, 10, 0.78);
		z-index: 0;
	}
	.rf-hero:not(.rf-hero--dark) .rf-hero__inner { min-height: auto; }
	.rf-hero__content { max-width: none; min-width: 0; }
	.rf-hero__title-line { white-space: normal; }
	.rf-hero__trust {
		flex-wrap: wrap;
		row-gap: 0.85rem;
	}
	.rf-hero__trust li + li {
		border-left: 0;
		padding-left: 0;
	}
}

@media (max-width: 420px) {
	.rf-metrics { grid-template-columns: 1fr; }
	.rf-footer__top { grid-template-columns: 1fr; }
	.rf-footer__bottom { flex-direction: column; align-items: flex-start; text-align: left; }
	.rf-footer__bottom nav ul { justify-content: flex-start; }
	.rf-brand__tag { display: none; }
	.rf-brand__img { height: 22px; max-width: min(147px, 56vw); }
	.rf-header__inner { gap: 0.5rem; }
	.rf-sticky-bar .rf-btn { font-size: 0.9rem; padding-inline: 0.6rem; }
	.rf-sticky-bar .rf-btn .rf-icon { width: 1em; height: 1em; }
}

/* =========================================================================
   25b. Content architecture (CPT archives & singles)
   ========================================================================= */
.rf-sr-only {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0);
	white-space: nowrap; border: 0;
}

/* CPT hero */
.rf-cpt-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.4rem;
}
.rf-cpt-hero__byline {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 1.1rem 0 0;
	color: var(--rf-muted);
	font-size: 0.9rem;
}
.rf-cpt-hero__byline .rf-icon { width: 1.05em; height: 1.05em; color: var(--rf-secondary); }

/* Subheads */
.rf-subhead {
	margin: 0 0 0.9rem;
	font-size: 1.05rem;
	color: var(--rf-ink);
}

/* Checklists */
.rf-checklist {
	list-style: none;
	margin: 1.75rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.85rem 1.75rem;
}
.rf-checklist--cols-1 { grid-template-columns: 1fr; }
.rf-checklist--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rf-checklist--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rf-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	color: var(--rf-ink-2);
	line-height: 1.5;
}
.rf-checklist .rf-icon {
	flex: none;
	width: 22px; height: 22px;
	margin-top: 1px;
	padding: 3px;
	border-radius: var(--rf-radius-pill);
	color: var(--rf-accent);
	background: var(--rf-accent-soft);
}
.rf-checklist--danger .rf-icon {
	color: #fff;
	background: var(--rf-primary);
}

/* Sources / references */
.rf-sources {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}
.rf-sources li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--rf-muted);
	font-size: 0.95rem;
}
.rf-sources .rf-icon { flex: none; width: 18px; height: 18px; color: var(--rf-secondary); }

/* Detail list (local contact) */
.rf-detail-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}
.rf-detail-list li {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}
.rf-detail-list .rf-icon { flex: none; width: 20px; height: 20px; color: var(--rf-accent); }

/* Fact grid (error code / model facts) */
.rf-factgrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
}
.rf-fact {
	background: var(--rf-surface);
	border: 1px solid var(--rf-line);
	border-left: 4px solid var(--rf-primary);
	border-radius: var(--rf-radius);
	padding: 1rem 1.25rem;
	box-shadow: var(--rf-shadow-xs);
}
.rf-fact__label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--rf-muted);
	margin-bottom: 0.25rem;
}
.rf-fact__value {
	display: block;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--rf-ink);
}

/* Group headings (error code archive) */
.rf-group + .rf-group { margin-top: 2.75rem; }
.rf-group__title {
	margin: 0 0 1.25rem;
	padding-bottom: 0.6rem;
	border-bottom: 2px solid var(--rf-line);
	font-size: 1.4rem;
}

/* Chips (jump nav) */
.rf-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}
.rf-chip {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 1rem;
	border-radius: var(--rf-radius-pill);
	background: var(--rf-surface);
	border: 1px solid var(--rf-line-strong);
	color: var(--rf-ink-2);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.rf-chip:hover {
	background: var(--rf-primary);
	border-color: var(--rf-primary);
	color: #fff;
}

/* Model table */
.rf-table-wrap { overflow-x: auto; }
.rf-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--rf-surface);
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius);
	overflow: hidden;
}
.rf-table th,
.rf-table td {
	padding: 0.9rem 1rem;
	text-align: left;
	border-bottom: 1px solid var(--rf-line);
	vertical-align: middle;
}
.rf-table thead th {
	background: var(--rf-surface-2);
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--rf-muted);
}
.rf-table tbody tr:last-child th,
.rf-table tbody tr:last-child td { border-bottom: 0; }
.rf-table tbody tr:hover { background: var(--rf-surface-2); }
.rf-table__action { text-align: right; white-space: nowrap; }

/* Generic CPT card additions */
.rf-card--link .rf-card__title a {
	color: inherit;
	text-decoration: none;
}
.rf-card--link .rf-card__title a:hover { color: var(--rf-primary); }
.rf-card__badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	padding: 0.2rem 0.6rem;
	border-radius: var(--rf-radius-pill);
	background: var(--rf-primary);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}
.rf-card--link { position: relative; }
.rf-card__media {
	display: block;
	margin: -1.5rem -1.5rem 1.1rem;
	overflow: hidden;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}
.rf-card__media img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
}

/* Single post additions */
.rf-single__reviewed {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0.4rem 0 0;
	color: var(--rf-muted);
	font-size: 0.88rem;
}
.rf-single__reviewed .rf-icon { width: 1.05em; height: 1.05em; color: var(--rf-secondary); }
.rf-single__sources,
.rf-single__related { margin-top: 2.5rem; }
.rf-single__sources h2,
.rf-single__related h2 { margin-bottom: 1rem; }
.rf-single__cta { margin-top: 2.5rem; }

@media (max-width: 640px) {
	.rf-checklist--cols-2,
	.rf-checklist--cols-3 { grid-template-columns: 1fr; }

	/* Stacked table on mobile */
	.rf-table thead { display: none; }
	.rf-table,
	.rf-table tbody,
	.rf-table tr,
	.rf-table th,
	.rf-table td { display: block; width: 100%; }
	.rf-table tr {
		border-bottom: 1px solid var(--rf-line);
		padding: 0.5rem 0;
	}
	.rf-table td,
	.rf-table th { border-bottom: 0; padding: 0.35rem 1rem; }
	.rf-table td[data-label]::before {
		content: attr(data-label) ": ";
		font-weight: 700;
		color: var(--rf-muted);
	}
	.rf-table__action { text-align: left; }
}

/* =========================================================================
   27. Author, byline & editorial trust
   ========================================================================= */

/* Shared bits */
.rf-author-photo {
	border-radius: 50%;
	object-fit: cover;
	background: var(--rf-surface-2);
	flex-shrink: 0;
}
.rf-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.8rem;
	border-radius: var(--rf-radius-pill);
	background: var(--rf-surface);
	border: 1px solid var(--rf-line-strong);
	color: var(--rf-ink-2);
	font-size: 0.85rem;
	font-weight: 600;
}
.rf-badge .rf-icon { width: 1em; height: 1em; color: var(--rf-secondary); }
.rf-badge--verify {
	background: color-mix(in srgb, var(--rf-secondary) 12%, #fff);
	border-color: color-mix(in srgb, var(--rf-secondary) 35%, #fff);
	color: var(--rf-secondary);
}
.rf-badge--verify .rf-icon { color: var(--rf-secondary); }

.rf-chips--static .rf-chip--static { cursor: default; }
.rf-chip--static:hover {
	background: var(--rf-surface);
	border-color: var(--rf-line-strong);
	color: var(--rf-ink-2);
}

.rf-muted-note {
	margin-top: 1.25rem;
	color: var(--rf-muted);
	font-size: 0.92rem;
}
.rf-section__link { margin-top: 1.75rem; text-align: center; }

/* Byline / attribution */
.rf-byline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.25rem 2rem;
	padding: 1.1rem 1.25rem;
	background: var(--rf-surface);
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius);
}
.rf-byline__item { display: inline-flex; align-items: center; gap: 0.75rem; }
.rf-byline__avatar { width: 40px; height: 40px; }
.rf-byline__badge {
	display: inline-grid; place-items: center;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--rf-secondary) 12%, #fff);
	color: var(--rf-secondary);
}
.rf-byline__badge .rf-icon { width: 1.2em; height: 1.2em; }
.rf-byline__stack { display: flex; flex-direction: column; line-height: 1.35; }
.rf-byline__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rf-muted); font-weight: 700; }
.rf-byline__name { font-weight: 700; color: var(--rf-ink); text-decoration: none; }
.rf-byline__name:hover { color: var(--rf-primary); }
.rf-byline__role { font-size: 0.82rem; color: var(--rf-muted); }
.rf-byline__dates { display: flex; flex-wrap: wrap; gap: 0.35rem 1.25rem; margin-left: auto; }
.rf-byline__date { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--rf-muted); font-size: 0.85rem; }
.rf-byline__date .rf-icon { width: 1em; height: 1em; color: var(--rf-secondary); }
.rf-byline__date a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* Author card */
.rf-author-card {
	display: flex;
	gap: 1rem;
	padding: 1.25rem;
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius);
	box-shadow: var(--rf-shadow-xs);
}
.rf-author-card__name { font-size: 1.1rem; margin: 0 0 0.15rem; }
.rf-author-card__name a { color: var(--rf-ink); text-decoration: none; }
.rf-author-card__name a:hover { color: var(--rf-primary); }
.rf-author-card__role { color: var(--rf-secondary); font-weight: 600; font-size: 0.9rem; margin: 0 0 0.5rem; }
.rf-author-card__bio { color: var(--rf-muted); font-size: 0.92rem; margin: 0 0 0.6rem; }

/* Author trust box */
.rf-author-box {
	padding: clamp(1.75rem, 3.5vw, 2.75rem);
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius-lg, var(--rf-radius));
	box-shadow: var(--rf-shadow-md);
}
.rf-author-box__head {
	display: flex;
	gap: 1.75rem;
	align-items: center;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--rf-line);
}
.rf-author-box__media { flex-shrink: 0; }
.rf-author-box__media img { width: 116px; height: 116px; border-radius: 50%; object-fit: cover; }
.rf-author-box__eyebrow {
	display: inline-block;
	font-size: 0.74rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--rf-primary);
	font-weight: 800;
	padding-bottom: 0.4rem;
	border-bottom: 2px solid var(--rf-primary);
	margin-bottom: 0.7rem;
}
.rf-author-box__name { font-size: 1.7rem; margin: 0 0 0.2rem; letter-spacing: -0.01em; }
.rf-author-box__name a { color: var(--rf-charcoal); text-decoration: none; }
.rf-author-box__name a:hover { color: var(--rf-primary); }
.rf-author-box__role { color: var(--rf-muted); font-weight: 500; font-size: 1.05rem; margin: 0 0 0.6rem; }
.rf-author-box__verify { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--rf-ink-2); font-size: 0.92rem; margin: 0; }
.rf-author-box__verify .rf-icon { width: 1.05em; height: 1.05em; color: var(--rf-primary); }
.rf-author-box__bio { margin: 1.5rem 0 0; color: var(--rf-ink-2); font-size: 1.05rem; line-height: 1.6; }
.rf-author-box__facts { list-style: none; margin: 1.25rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.rf-author-box__facts li { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--rf-muted); font-size: 0.9rem; }
.rf-author-box__facts .rf-icon { width: 1.05em; height: 1.05em; color: var(--rf-primary); }
.rf-author-box__mini { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--rf-secondary); font-weight: 800; margin-bottom: 0.85rem; }
.rf-author-box__expertise { margin-top: 1.75rem; }
.rf-author-box__tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.rf-author-box__tag {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.6rem 1rem;
	border: 1px solid var(--rf-line);
	border-radius: 999px;
	background: #fff;
	color: var(--rf-charcoal);
	font-weight: 600;
	font-size: 0.95rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.rf-author-box__tag:hover { border-color: color-mix(in srgb, var(--rf-primary) 35%, var(--rf-line)); box-shadow: var(--rf-shadow-xs); }
.rf-author-box__tag-ico { display: inline-grid; place-items: center; color: var(--rf-primary); }
.rf-author-box__tag-ico .rf-icon { width: 1.2em; height: 1.2em; }
.rf-author-box__editorial { margin-top: 1.75rem; }
.rf-author-box__editorial p { margin: 0; color: var(--rf-ink-2); font-size: 1.02rem; line-height: 1.6; }
.rf-author-box__foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.75rem; margin-top: 1.75rem; padding-top: 1.35rem; border-top: 1px solid var(--rf-line); }
.rf-author-box__links { display: inline-flex; flex-wrap: wrap; gap: 1rem; }
.rf-author-box__links a { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--rf-secondary); font-weight: 600; font-size: 0.88rem; text-decoration: none; }
.rf-author-box__links a:hover { color: var(--rf-primary); }
.rf-author-box__links .rf-icon { width: 0.95em; height: 0.95em; }
.rf-author-box__reviewed { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--rf-muted); font-size: 0.9rem; }
.rf-author-box__reviewed .rf-icon { width: 1.05em; height: 1.05em; color: var(--rf-secondary); }

/* Author profile hero */
.rf-author-hero { background: var(--rf-surface); }
.rf-author-hero__inner { display: flex; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.rf-author-hero__media img { width: clamp(120px, 20vw, 160px); height: clamp(120px, 20vw, 160px); }
.rf-author-hero__name { margin: 0.35rem 0 0.25rem; }
.rf-author-hero__role { font-size: 1.15rem; color: var(--rf-secondary); font-weight: 600; margin: 0 0 1rem; }
.rf-author-hero__meta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1rem; }
.rf-author-hero__chips { margin-bottom: 1.25rem; }
.rf-author-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.rf-author-hero__reviewed { margin: 1rem 0 0; color: var(--rf-muted); font-size: 0.85rem; }

/* Author profile (dark hero) */
.rf-hero--author {
	background-color: #0a0a0a;
	background-image:
		linear-gradient(90deg, #0a0a0a 0%, #0a0a0a 28%, rgba(10, 10, 10, 0.92) 40%, rgba(10, 10, 10, 0.55) 54%, rgba(10, 10, 10, 0.18) 68%, rgba(10, 10, 10, 0) 80%),
		var(--rf-author-hero);
	background-position: left top, right center;
	background-size: auto, cover;
	background-repeat: no-repeat;
}
.rf-hero--author .rf-hero__inner--author {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(1.5rem, 4vw, 3rem);
	min-height: clamp(380px, 38vw, 520px);
	padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
}
.rf-hero--author .rf-breadcrumbs { margin-bottom: 1.15rem; }
.rf-hero--author .rf-breadcrumbs__link { color: rgba(255, 255, 255, 0.55); }
.rf-hero--author .rf-breadcrumbs__link:hover { color: #fff; }
.rf-hero--author .rf-breadcrumbs__sep { color: rgba(255, 255, 255, 0.28); }
.rf-hero--author .rf-breadcrumbs__current { color: rgba(255, 255, 255, 0.9); }
.rf-hero--author .rf-author-hero__meta { margin: 0 0 1.35rem; }
.rf-hero--author .rf-author-hero__meta .rf-badge {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.88);
}
.rf-hero--author .rf-hero__note {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: 1.15rem;
	font-size: 0.88rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.72);
}
.rf-hero__author-photo {
	flex-shrink: 0;
	align-self: center;
}
.rf-hero__author-photo img,
.rf-hero__author-photo-img {
	width: clamp(140px, 18vw, 220px);
	height: clamp(140px, 18vw, 220px);
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid rgba(255, 255, 255, 0.22);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.rf-author-page__figure { margin-top: 0; }

@media (max-width: 768px) {
	.rf-hero--author .rf-hero__inner--author {
		grid-template-columns: 1fr;
	}
	.rf-hero__author-photo {
		order: -1;
		justify-self: start;
	}
}

/* Linked expert teaser */
.rf-expert--linked .rf-expert__avatar {
	width: 72px;
	height: 72px;
	background: none;
	border-radius: 50%;
	overflow: hidden;
}
.rf-expert--linked .rf-expert__avatar img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; display: block; }
.rf-expert__name a { color: inherit; text-decoration: none; }
.rf-expert__name a:hover { color: var(--rf-primary); }
.rf-expert__links { display: inline-flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.6rem; }

/* References */
.rf-references { margin-top: 2rem; }
.rf-references__title { font-size: 1.15rem; margin: 0 0 0.9rem; }

.rf-single__authorbox { margin-top: 2.5rem; }

@media (max-width: 720px) {
	.rf-byline__dates { margin-left: 0; width: 100%; }
	.rf-author-hero__inner { flex-direction: column; text-align: center; align-items: center; }
	.rf-author-hero__meta,
	.rf-author-hero__chips,
	.rf-author-hero__actions { justify-content: center; }
	.rf-author-box__head { flex-direction: column; align-items: center; text-align: center; }
	.rf-author-box__foot { justify-content: center; text-align: center; }
}

/* =========================================================================
   28. Long-content overflow safeguards
   ========================================================================= */
.rf-card__title,
.rf-card__text,
.rf-byline__name,
.rf-author-card__name,
.rf-author-box__name,
.rf-fact__value,
.rf-detail-list li,
.rf-nap__value,
.rf-prose a { overflow-wrap: anywhere; }

/* Grid/flex children must be allowed to shrink to avoid pushing overflow. */
.rf-grid > *,
.rf-byline__stack,
.rf-author-card__body,
.rf-author-box__intro { min-width: 0; }

.rf-table td,
.rf-table th { overflow-wrap: anywhere; }

/* =========================================================================
   26. Motion preferences
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}

/* =========================================================================
   27. Error-code database (archive search, filters, cards)
   ========================================================================= */
.rf-hero--ec-archive {
	background-color: #0a0a0a;
	background-image:
		linear-gradient(90deg, #0a0a0a 0%, #0a0a0a 28%, rgba(10, 10, 10, 0.92) 40%, rgba(10, 10, 10, 0.55) 54%, rgba(10, 10, 10, 0.18) 68%, rgba(10, 10, 10, 0) 80%),
		var(--rf-ec-hero);
	background-position: left top, right center;
	background-size: auto, cover;
	background-repeat: no-repeat;
}
.rf-hero--ec-archive .rf-hero__inner--archive {
	min-height: clamp(380px, 38vw, 520px);
	padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
}
.rf-hero--ec-archive .rf-breadcrumbs {
	margin-bottom: 1.15rem;
}
.rf-hero--ec-archive .rf-breadcrumbs__link {
	color: rgba(255, 255, 255, 0.55);
}
.rf-hero--ec-archive .rf-breadcrumbs__link:hover {
	color: #fff;
}
.rf-hero--ec-archive .rf-breadcrumbs__sep {
	color: rgba(255, 255, 255, 0.28);
}
.rf-hero--ec-archive .rf-breadcrumbs__current {
	color: rgba(255, 255, 255, 0.9);
}
.rf-hero--ec-archive .rf-hero__note {
	margin: -0.35rem 0 1.35rem;
	max-width: 36em;
	font-size: 0.88rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.52);
	font-style: italic;
}

/* Legacy light hero (kept only if referenced elsewhere) */
.rf-ec-hero {
	position: relative;
	overflow: hidden;
	background: #f5f6f7;
}
.rf-ec-hero__title { margin: var(--rf-space-2) 0 var(--rf-space-3); }
.rf-ec-hero__lead { font-size: 1.15rem; color: var(--rf-ink-2); max-width: 46ch; }
.rf-ec-hero__note { color: var(--rf-muted); max-width: 52ch; margin: var(--rf-space-3) 0 0; font-size: 0.95rem; }
.rf-ec-hero__note--disclosure { font-style: italic; }

.rf-ec-app {
	background: #f5f6f7;
}
.rf-ec-app__heading {
	max-width: 40rem;
	margin: 0 0 clamp(1.75rem, 3.5vw, 2.5rem);
}
.rf-ec-app__heading .rf-heading__eyebrow {
	background: #111;
	border-color: #111;
	color: #fff;
	font-style: normal;
	letter-spacing: 0.1em;
}
.rf-ec-app__heading .rf-heading__eyebrow::before {
	display: none;
}
.rf-ec-app__heading .rf-heading__title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.06em;
	margin: 0.85rem 0 0;
	font-family: var(--rf-font-display);
	font-size: clamp(1.55rem, 3.2vw, 2.15rem);
	font-weight: 700;
	font-style: italic;
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111;
}
.rf-ec-app__heading .rf-heading__title-line {
	display: block;
}
.rf-ec-app__rule {
	display: block;
	width: 140px;
	height: 3px;
	margin: 1rem 0 0;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 40%, rgba(17, 17, 17, 0) 100%);
}
.rf-ec-app__heading .rf-heading__text {
	margin: 0.85rem 0 0;
	max-width: 36em;
	color: #6b7280;
	font-size: 1.02rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.55;
}

/* Search bar */
.rf-ec-search { margin: 0 0 var(--rf-space-4); }
.rf-ec-search__bar { display: flex; gap: var(--rf-space-3); flex-wrap: wrap; align-items: stretch; }
.rf-ec-search__bar input[type="search"] {
	flex: 1 1 320px;
	min-width: 0;
	padding: 0.85rem 1rem;
	font-size: 1.05rem;
	border: 1px solid #d1d5db;
	border-radius: 0;
	background: #fff;
}
.rf-ec-search__bar input[type="search"]:focus-visible { outline: none; box-shadow: var(--rf-focus); border-color: #111; }
.rf-ec-filter-toggle { display: none; }

/* Filters */
.rf-ec-filters { margin-top: var(--rf-space-4); }
.rf-ec-filters__head { display: none; }
.rf-ec-filters__row { display: flex; gap: var(--rf-space-4); flex-wrap: wrap; align-items: flex-end; }
.rf-ec-field { display: flex; flex-direction: column; gap: 4px; font-size: 0.9rem; color: var(--rf-ink-2); }
.rf-ec-field > span { font-weight: 600; line-height: 1.35; }
.rf-ec-field select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 100%;
	min-width: 220px;
	padding: 0.65rem 2.35rem 0.65rem 0.75rem;
	border: 1px solid #d1d5db;
	border-radius: 0;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 12px 12px;
	font-family: inherit;
	font-size: 0.95rem;
	line-height: 1.35;
	color: #111;
	cursor: pointer;
}
.rf-ec-field select:focus-visible {
	outline: none;
	border-color: #111;
	box-shadow: var(--rf-focus);
}
.rf-ec-field--check {
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 0.5rem;
	min-height: calc(0.65rem * 2 + 1.35em);
}
.rf-ec-field--check span { font-weight: 500; }
.rf-ec-field--check input[type="checkbox"] {
	width: 1rem;
	height: 1rem;
	margin: 0;
	flex: none;
	accent-color: #111;
}
@media (min-width: 783px) {
	.rf-ec-field--check {
		margin-top: calc(0.9rem * 1.35 + 4px);
	}
}
.rf-ec-filters__actions { display: flex; gap: var(--rf-space-3); margin-top: var(--rf-space-4); flex-wrap: wrap; }

/* Active filter chips */
.rf-ec-chips { display: flex; gap: var(--rf-space-2); flex-wrap: wrap; margin: var(--rf-space-3) 0 0; }
.rf-ec-chips:empty { margin: 0; }
.rf-ec-chip {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 4px 12px; border-radius: 0;
	background: #111; color: #fff;
	border: 1px solid #111; font-size: 0.85rem; font-weight: 600;
	cursor: pointer;
}
.rf-ec-chip:hover { background: #333; border-color: #333; }

/* Prefix index */
.rf-ec-index { display: flex; gap: var(--rf-space-2); flex-wrap: wrap; align-items: center; margin: var(--rf-space-5) 0 var(--rf-space-3); }
.rf-ec-index__label { font-weight: 600; color: var(--rf-ink-2); margin-right: var(--rf-space-2); }
.rf-ec-index__link {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 38px; padding: 6px 10px;
	border: 1px solid #d1d5db; border-radius: 0;
	background: #fff; color: #111; font-weight: 700; font-style: italic; text-decoration: none;
	font-family: var(--rf-font-display);
	letter-spacing: 0.04em;
}
.rf-ec-index__link:hover { border-color: #111; color: #111; background: #f5f6f7; }
.rf-ec-index__link.is-active { background: #111; border-color: #111; color: #fff; }

/* Popular */
.rf-ec-popular { margin: var(--rf-space-5) 0; padding: var(--rf-space-4); background: #fff; border: 1px solid #e8ebef; border-radius: 0; }
.rf-ec-popular__title {
	font-size: 0.85rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 var(--rf-space-3);
	color: #111;
}
.rf-ec-popular__list { display: flex; gap: var(--rf-space-3); flex-wrap: wrap; }
.rf-ec-popular__item {
	display: inline-flex; flex-direction: column; padding: 8px 16px;
	background: #f5f6f7; border: 1px solid #e8ebef; border-radius: 0;
	text-decoration: none; color: var(--rf-ink); box-shadow: none;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.rf-ec-popular__item:hover { border-color: #111; background: #111; color: #fff; }
.rf-ec-popular__code { font-weight: 700; color: #111; font-family: var(--rf-font-display); font-style: italic; }
.rf-ec-popular__app { font-size: 0.8rem; color: #6b7280; }
.rf-ec-popular__item:hover .rf-ec-popular__code,
.rf-ec-popular__item:hover .rf-ec-popular__app { color: #fff; }

/* Results */
.rf-ec-results { margin-top: var(--rf-space-4); transition: opacity 0.15s ease; }
.rf-ec-results.is-loading { opacity: 0.5; }
.rf-ec-count { color: var(--rf-muted); font-weight: 600; margin: 0 0 var(--rf-space-4); }
.rf-ec-grid { margin: 0; }

.rf-ec-card { height: 100%; }
.rf-ec-card__link {
	display: flex; flex-direction: column; gap: var(--rf-space-2); height: 100%;
	padding: var(--rf-space-4); background: #fff;
	border: 1px solid #e8ebef; border-radius: 0;
	box-shadow: none; text-decoration: none; color: var(--rf-ink);
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.rf-ec-card__link:hover { border-color: #111; background: #111; color: #fff; box-shadow: none; transform: translateY(-2px); }
.rf-ec-card__top { display: flex; align-items: baseline; justify-content: space-between; gap: var(--rf-space-2); }
.rf-ec-card__code {
	font-size: 1.35rem;
	font-weight: 700;
	font-style: italic;
	font-family: var(--rf-font-display);
	letter-spacing: 0.03em;
	color: #111;
	overflow-wrap: anywhere;
}
.rf-ec-card__appliance { font-size: 0.8rem; font-weight: 600; color: #6b7280; text-align: right; text-transform: uppercase; letter-spacing: 0.06em; }
.rf-ec-card__meaning { color: #6b7280; font-size: 0.95rem; }
.rf-ec-card__symptom { color: #9ca3af; font-size: 0.85rem; }
.rf-ec-card__more {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #111;
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.rf-ec-card__more svg { width: 16px; height: 16px; }
.rf-ec-card__link:hover .rf-ec-card__code,
.rf-ec-card__link:hover .rf-ec-card__appliance,
.rf-ec-card__link:hover .rf-ec-card__meaning,
.rf-ec-card__link:hover .rf-ec-card__symptom,
.rf-ec-card__link:hover .rf-ec-card__more { color: #fff; }
.rf-ec-card mark { background: #e5e7eb; color: inherit; padding: 0 2px; border-radius: 0; }
.rf-ec-card__link:hover mark { background: rgba(255, 255, 255, 0.18); }

/* Status pills */
.rf-ec-status { display: inline-flex; align-items: center; gap: 4px; align-self: flex-start; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; padding: 3px 9px; border-radius: var(--rf-radius-pill); }
.rf-ec-status svg { width: 13px; height: 13px; }
.rf-ec-status--ok { background: var(--rf-surface-2); color: var(--rf-charcoal); }
.rf-ec-status--info { background: var(--rf-surface-3); color: var(--rf-ink-2); }
.rf-ec-status--warn { background: color-mix(in srgb, var(--rf-charcoal) 8%, #fff); color: var(--rf-charcoal); }

/* Empty + pagination */
.rf-ec-empty { text-align: center; padding: var(--rf-space-7) var(--rf-space-4); background: var(--rf-surface-2); border-radius: var(--rf-radius); }
.rf-ec-empty__title { font-size: 1.2rem; font-weight: 700; margin: 0 0 var(--rf-space-2); }
.rf-ec-pagination { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-top: var(--rf-space-6); }
.rf-ec-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center; min-width: 40px; padding: 8px 12px;
	border: 1px solid var(--rf-line-strong); border-radius: var(--rf-radius-sm); text-decoration: none; color: var(--rf-ink-2); font-weight: 600;
}
.rf-ec-pagination .page-numbers.current { background: #111; border-color: #111; color: #fff; }
.rf-ec-pagination a.page-numbers:hover { border-color: #111; color: #111; }

/* How-to-use guide (numbered tiles) */
.rf-section--ec-guide {
	background: #fff;
}
.rf-ec-guide__heading {
	max-width: 40rem;
	margin: 0 auto clamp(2rem, 4vw, 2.75rem);
	text-align: center;
}
.rf-ec-guide__heading .rf-heading__eyebrow {
	background: #111;
	border-color: #111;
	color: #fff;
	font-style: normal;
	letter-spacing: 0.1em;
}
.rf-ec-guide__heading .rf-heading__eyebrow::before {
	display: none;
}
.rf-ec-guide__heading .rf-heading__title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.06em;
	width: 100%;
	margin: 0.85rem 0 0;
	text-align: center;
	font-size: clamp(1.55rem, 3.2vw, 2.15rem);
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111;
}
.rf-ec-guide__heading .rf-heading__title-line {
	display: block;
}
.rf-ec-guide__heading .rf-heading__text {
	margin: 0.85rem auto 0;
	max-width: 38em;
	color: #6b7280;
	font-size: 1.02rem;
	font-style: normal;
	font-weight: 400;
}
.rf-ec-guide__rule {
	display: block;
	width: 120px;
	height: 3px;
	margin: 1rem auto 0;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 40%, rgba(17, 17, 17, 0) 100%);
}
.rf-ec-guide__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}
.rf-section--ec-guide .rf-pcard.rf-ec-guide-card {
	background: #f5f6f7;
	border-color: #e8ebef;
	min-height: 15.5rem;
}
.rf-section--ec-guide .rf-pcard.rf-ec-guide-card .rf-pcard__ico {
	background: #fff;
}
.rf-section--ec-guide .rf-pcard.rf-ec-guide-card:hover {
	background: #111;
	border-color: #111;
}
.rf-section--ec-guide .rf-pcard.rf-ec-guide-card:hover .rf-pcard__ico {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}
.rf-section--ec-guide .rf-pcard.rf-ec-guide-card:hover .rf-pcard__num,
.rf-section--ec-guide .rf-pcard.rf-ec-guide-card:hover .rf-pcard__title,
.rf-section--ec-guide .rf-pcard.rf-ec-guide-card:hover .rf-pcard__text {
	color: #fff;
}
.rf-section--ec-guide .rf-pcard.rf-ec-guide-card:hover .rf-pcard__ico .rf-icon {
	color: #fff;
}

@media (max-width: 782px) {
	.rf-ec-guide__grid {
		grid-template-columns: 1fr;
	}
}

/* Single error-code additions */
.rf-ec-single-status { margin: var(--rf-space-3) 0 0; padding: 10px 14px; border-radius: var(--rf-radius-sm); font-size: 0.95rem; }
.rf-ec-single-status--ok { background: var(--rf-surface-2); color: var(--rf-charcoal); }
.rf-ec-single-status--info { background: var(--rf-surface-3); color: var(--rf-ink-2); }
.rf-ec-single-status--warn { background: color-mix(in srgb, var(--rf-charcoal) 8%, #fff); color: var(--rf-charcoal); }
.rf-ec-quick { padding: var(--rf-space-4) var(--rf-space-5); background: var(--rf-primary-soft); border-left: 4px solid var(--rf-primary); border-radius: var(--rf-radius-sm); }
.rf-ec-quick__label { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rf-primary-dark); margin-bottom: 4px; }
.rf-ec-quick__text { margin: 0; font-size: 1.1rem; color: var(--rf-ink); }
.rf-ec-disclaimer { display: flex; gap: var(--rf-space-3); align-items: flex-start; padding: var(--rf-space-3) var(--rf-space-4); background: var(--rf-surface-2); border: 1px dashed var(--rf-line-strong); border-radius: var(--rf-radius-sm); }
.rf-ec-disclaimer svg { flex: none; width: 22px; height: 22px; color: var(--rf-secondary); margin-top: 2px; }
.rf-ec-disclaimer p { margin: 0; color: var(--rf-ink-2); font-size: 0.95rem; }

/* Mobile: collapsible filter drawer */
@media (max-width: 782px) {
	.rf-ec-filter-toggle { display: inline-flex; }
	.rf-ec-filters {
		position: fixed; inset: 0; z-index: 1000;
		background: var(--rf-surface); padding: var(--rf-space-5);
		transform: translateX(100%); transition: transform 0.2s ease;
		overflow-y: auto; visibility: hidden;
	}
	.rf-ec-filters.is-open { transform: translateX(0); visibility: visible; }
	.rf-ec-filters__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--rf-space-4); }
	.rf-ec-filters__title { font-size: 1.2rem; font-weight: 700; }
	.rf-ec-filters__close { background: none; border: none; font-size: 1.8rem; line-height: 1; cursor: pointer; color: var(--rf-ink-2); }
	.rf-ec-filters__row { flex-direction: column; align-items: stretch; }
	.rf-ec-field--check { justify-content: center; margin-top: 0; }
	.rf-ec-field select { min-width: 0; width: 100%; }
	.rf-ec-filters__actions { flex-direction: column; }
	.rf-ec-filters__actions .rf-btn { width: 100%; }
}
@media (min-width: 783px) {
	.rf-ec-filters__close { display: none; }
}

/* =========================================================================
   30. Design polish — richer, less "template" feel
   (colors & content unchanged; purely presentational refinements)
   ========================================================================= */

/* --- Eyebrow as a soft accent chip instead of a plain dashed label --- */
.rf-heading__eyebrow,
.rf-eyebrow {
	gap: 0.45rem;
	padding: 0.34rem 0.75rem;
	background: var(--rf-accent-soft);
	border: 1px solid var(--rf-accent-tint);
	border-radius: var(--rf-radius-pill);
	color: var(--rf-accent-dark);
}
.rf-heading__eyebrow::before { display: none; }

/* Slightly more editorial section titles */
.rf-heading__title,
.rf-heading h2 { letter-spacing: -0.02em; }

/* --- Subtle dot texture + soft edges on alternating sections --- */
.rf-section--alt {
	background-color: var(--rf-surface-2);
	background-image: radial-gradient(rgba(29, 39, 51, 0.045) 1px, transparent 1.4px);
	background-size: 22px 22px;
}

/* --- Cards: animated accent top-bar, deeper hover, playful icon --- */
.rf-card { position: relative; overflow: hidden; }
.rf-card::after {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: linear-gradient(90deg, var(--rf-primary), var(--rf-accent));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}
.rf-card--hover:hover::after { transform: scaleX(1); }
.rf-card--hover:hover { box-shadow: var(--rf-shadow-lg); border-color: transparent; }

.rf-card__icon {
	background: linear-gradient(135deg, var(--rf-accent-soft), color-mix(in srgb, var(--rf-accent) 22%, #fff));
	box-shadow: inset 0 0 0 1px var(--rf-accent-tint);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.rf-card--hover:hover .rf-card__icon { transform: translateY(-2px) rotate(-4deg); }

/* --- Trust metrics: accent top edge + lift --- */
.rf-metric {
	position: relative;
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.rf-metric::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: linear-gradient(90deg, var(--rf-accent), var(--rf-primary));
}
.rf-metric:hover { transform: translateY(-3px); box-shadow: var(--rf-shadow); }

/* --- Process steps: gradient number badge with glow + connector --- */
.rf-step__num {
	background: linear-gradient(135deg, var(--rf-accent), var(--rf-accent-dark));
	box-shadow: 0 8px 18px color-mix(in srgb, var(--rf-accent) 32%, transparent);
}
.rf-step { transition: transform 0.18s ease, box-shadow 0.18s ease; }
.rf-step:hover { transform: translateY(-3px); box-shadow: var(--rf-shadow); }

/* --- Primary button gets a subtle gradient for depth --- */
.rf-btn--primary { background: linear-gradient(135deg, var(--rf-primary), var(--rf-primary-dark)); }

/* --- Scroll reveal (progressive enhancement; safe fallbacks) --- */
@media (prefers-reduced-motion: no-preference) {
	body.rf-reveal .rf-reveal-item {
		opacity: 0;
		transform: translateY(20px);
		transition: opacity 0.6s ease, transform 0.6s ease;
		will-change: opacity, transform;
	}
	body.rf-reveal .rf-reveal-item.is-in {
		opacity: 1;
		transform: none;
	}
}

/* =========================================================================
   31. Contact page
   ========================================================================= */
.rf-hero--contact {
	background-color: #0a0a0a;
	background-image:
		linear-gradient(90deg, #0a0a0a 0%, #0a0a0a 28%, rgba(10, 10, 10, 0.92) 40%, rgba(10, 10, 10, 0.55) 54%, rgba(10, 10, 10, 0.18) 68%, rgba(10, 10, 10, 0) 80%),
		var(--rf-contact-hero);
	background-position: left top, right center;
	background-size: auto, cover;
	background-repeat: no-repeat;
}
.rf-hero--contact .rf-hero__inner--archive {
	min-height: clamp(380px, 38vw, 520px);
	padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
}
.rf-hero--contact .rf-breadcrumbs {
	margin-bottom: 1.15rem;
}
.rf-hero--contact .rf-breadcrumbs__link {
	color: rgba(255, 255, 255, 0.55);
}
.rf-hero--contact .rf-breadcrumbs__link:hover {
	color: #fff;
}
.rf-hero--contact .rf-breadcrumbs__sep {
	color: rgba(255, 255, 255, 0.28);
}
.rf-hero--contact .rf-breadcrumbs__current {
	color: rgba(255, 255, 255, 0.9);
}

.rf-contact-page__form {
	max-width: 42rem;
	margin-inline: auto;
}
.rf-contact-page__form .rf-contact__panel {
	background: #fff;
}

.rf-map-cta {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.15rem 1.35rem;
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius);
	box-shadow: var(--rf-shadow-xs);
	color: inherit;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.rf-map-cta:hover { transform: translateY(-3px); box-shadow: var(--rf-shadow); border-color: transparent; color: inherit; }
.rf-map-cta__pin {
	flex: none;
	width: 48px; height: 48px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: color-mix(in srgb, var(--rf-primary) 12%, #fff);
	color: var(--rf-primary);
}
.rf-map-cta__pin .rf-icon { width: 24px; height: 24px; }
.rf-map-cta__body { display: flex; flex-direction: column; }
.rf-map-cta__body strong { color: var(--rf-charcoal); font-size: 1.05rem; }
.rf-map-cta__body span { color: var(--rf-muted); font-size: 0.92rem; }
.rf-map-cta__go {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 700;
	color: var(--rf-primary);
	white-space: nowrap;
}
.rf-map-cta__go .rf-icon { width: 1.05em; height: 1.05em; }

@media (max-width: 900px) {
	.rf-map-cta { flex-wrap: wrap; }
	.rf-map-cta__go { margin-left: 0; }
}

/* =========================================================================
   32. Technician expertise (asymmetric intro + dark process panel)
   ========================================================================= */
.rf-section--expertise {
	position: relative;
	overflow: hidden;
	background: #f7f8f9;
}
.rf-expertise__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: url(../images/expertise-bg.png) center right / cover no-repeat;
}
.rf-expertise__layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.9fr);
	gap: clamp(2rem, 4.5vw, 3.5rem);
	align-items: center;
}
.rf-expertise__intro {
	max-width: 34rem;
	padding-left: 0;
	margin-left: 0;
}
.rf-expertise__intro .rf-heading__eyebrow {
	background: #111;
	border-color: #111;
	color: #fff;
	font-style: normal;
	letter-spacing: 0.1em;
	margin-left: 0;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}
.rf-expertise__intro .rf-heading__eyebrow::before {
	display: none;
}
.rf-expertise__title {
	display: block;
	margin: 0.85rem 0 0;
	padding: 0;
	text-indent: 0;
	font-family: var(--rf-font-display);
	font-size: clamp(1.7rem, 3.4vw, 2.35rem);
	font-weight: 700;
	font-style: italic;
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111;
}
.rf-expertise__rule {
	display: block;
	width: 120px;
	height: 3px;
	margin: 1rem 0 0.95rem;
	padding: 0;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 45%, rgba(17, 17, 17, 0) 100%);
}
.rf-expertise__lead {
	margin: 0 0 1.6rem;
	padding: 0;
	max-width: 36em;
	font-size: 1.02rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.55;
	color: #6b7280;
}

.rf-expertise__points {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.05rem;
}
.rf-expertise__point {
	display: grid;
	grid-template-columns: 14px 1fr;
	gap: 0.9rem;
	align-items: start;
}
.rf-expertise__point-mark {
	display: block;
	width: 14px;
	height: 14px;
	margin-top: 0.35rem;
	border: 2px solid #111;
	background: transparent;
	transform: rotate(45deg);
}
.rf-expertise__point-body {
	display: grid;
	gap: 0.2rem;
	min-width: 0;
}
.rf-expertise__point-body strong {
	font-family: var(--rf-font-display);
	font-size: 0.98rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #111;
	line-height: 1.25;
}
.rf-expertise__point-body span {
	font-size: 0.94rem;
	line-height: 1.5;
	color: #6b7280;
}

.rf-expertise__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 1.75rem 2.5rem;
	margin-top: 1.75rem;
	padding-top: 1.35rem;
	border-top: 1px solid rgba(17, 17, 17, 0.12);
}
.rf-expertise__stat {
	display: grid;
	gap: 0.2rem;
}
.rf-expertise__stat-value {
	font-family: var(--rf-font-display);
	font-size: clamp(1.8rem, 3vw, 2.25rem);
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.02em;
	line-height: 1;
	color: #111;
}
.rf-expertise__stat-value sup {
	font-size: 0.55em;
	margin-left: 0.05em;
}
.rf-expertise__stat-label {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #6b7280;
}

.rf-expertise__panel {
	background: #111;
	color: #fff;
	padding: clamp(1.5rem, 3vw, 2rem) clamp(1.35rem, 2.8vw, 1.85rem);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.rf-expertise__panel-head {
	margin-bottom: 1.35rem;
	padding-bottom: 1.1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.rf-expertise__panel-eyebrow {
	display: inline-block;
	margin-bottom: 0.55rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}
.rf-expertise__panel-title {
	margin: 0;
	font-family: var(--rf-font-display);
	font-size: clamp(1.15rem, 2vw, 1.35rem);
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	line-height: 1.2;
	color: #fff;
}

.rf-expertise__timeline {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
}
.rf-expertise__step {
	position: relative;
	display: grid;
	grid-template-columns: 2.6rem 1fr;
	gap: 0.85rem;
	padding: 0.95rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.rf-expertise__step:last-child {
	border-bottom: 0;
	padding-bottom: 0.25rem;
}
.rf-expertise__step-num {
	font-family: var(--rf-font-display);
	font-size: 1.35rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.04em;
	line-height: 1.1;
	color: rgba(255, 255, 255, 0.35);
}
.rf-expertise__step-body {
	display: grid;
	gap: 0.2rem;
	min-width: 0;
}
.rf-expertise__step-body strong {
	font-size: 0.95rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.25;
}
.rf-expertise__step-body span {
	font-size: 0.9rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.62);
}

.rf-expertise__panel-foot {
	margin-top: 1.35rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.rf-expertise__panel .rf-expert {
	align-items: flex-start;
	gap: 0.9rem;
}
.rf-expertise__panel .rf-expert__role {
	color: rgba(255, 255, 255, 0.55);
}
.rf-expertise__panel .rf-expert__name,
.rf-expertise__panel .rf-expert__name a {
	color: #fff;
}
.rf-expertise__panel .rf-expert__name a:hover {
	color: #fff;
	opacity: 0.8;
}
.rf-expertise__panel .rf-expert__text {
	color: rgba(255, 255, 255, 0.62);
}
.rf-expertise__panel .rf-expert__links a,
.rf-expertise__panel .rf-link-more {
	color: #fff;
}
.rf-expertise__panel .rf-expert__avatar {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 0;
	overflow: hidden;
	color: #fff;
}
.rf-expertise__panel .rf-expert__avatar img {
	border-radius: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 960px) {
	.rf-expertise__layout {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}
	.rf-expertise__intro {
		max-width: none;
	}
	.rf-expertise__bg {
		background-position: 70% center;
		opacity: 0.4;
	}
}

/* Numbered-badge card variant (service/location process sections) */
.rf-pcard__badge {
	flex: none;
	width: 54px; height: 54px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: color-mix(in srgb, var(--rf-primary) 8%, #fff);
	color: var(--rf-primary);
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--rf-primary) 16%, #fff);
	font-weight: 800;
	font-size: 1.25rem;
	line-height: 1;
	letter-spacing: -0.02em;
}

/* Shared process-list styles (service / location pages) */
.rf-proclist { list-style: none; margin: 1.35rem 0 0; padding: 0; }
.rf-proc {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.05rem 0;
	border-bottom: 1px solid var(--rf-line);
}
.rf-proc:last-child { border-bottom: 0; }
.rf-proc__ico {
	flex: none;
	width: 46px; height: 46px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: color-mix(in srgb, var(--rf-primary) 8%, #fff);
	color: var(--rf-primary);
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--rf-primary) 16%, #fff);
}
.rf-proc__ico .rf-icon { width: 22px; height: 22px; }
.rf-proc__body { flex: 1; min-width: 0; }
.rf-proc__body strong { display: block; color: var(--rf-charcoal); font-size: 1.05rem; }
.rf-proc__body span { color: var(--rf-muted); font-size: 0.92rem; }
.rf-proc__num {
	flex: none;
	align-self: center;
	font-size: 1.9rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--rf-line-strong);
}

/* =========================================================================
   33. Repair process (numbered step cards)
   ========================================================================= */
.rf-section--process {
	background: #fff;
}
.rf-process__heading {
	max-width: 720px;
	margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.rf-process__heading .rf-heading__eyebrow {
	background: #111;
	border-color: #111;
	color: #fff;
	font-style: normal;
	letter-spacing: 0.1em;
}
.rf-process__heading .rf-heading__title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.06em;
	margin: 0 0 0.85rem;
	font-size: clamp(1.55rem, 3.2vw, 2.15rem);
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.rf-process__heading .rf-heading__title-line {
	display: block;
}
.rf-process__heading .rf-heading__text {
	max-width: 40em;
	margin: 0 auto;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.55;
	color: #6b7280;
}
.rf-process__rule {
	display: block;
	width: 160px;
	height: 3px;
	margin: 1.15rem auto 0;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 40%, rgba(17, 17, 17, 0) 100%);
}
.rf-process__more {
	margin-top: clamp(1.5rem, 3vw, 2rem);
	text-align: center;
}

.rf-process__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.rf-pcard {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	height: 100%;
	min-height: 16.75rem;
	background: #f7f8f9;
	border: 1px solid #e8ebef;
	border-radius: 0;
	box-shadow: none;
	padding: 1.6rem 1.6rem 1.6rem;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.rf-pcard:hover {
	background: #111;
	border-color: #111;
	transform: translateY(-2px);
}
.rf-pcard__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.1rem;
}
.rf-pcard__ico {
	flex: none;
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 0;
	background: #fff;
	color: #111;
	border: 1px solid #d1d5db;
	box-shadow: none;
}
.rf-pcard__ico .rf-icon { width: 22px; height: 22px; }
.rf-pcard__num {
	font-family: var(--rf-font-display);
	font-size: 1.65rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.04em;
	color: #111;
	line-height: 1;
}
.rf-pcard__title {
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	margin: 0;
	color: #111;
	line-height: 1.25;
}
.rf-pcard__rule {
	display: block;
	width: 96px;
	height: 3px;
	margin: 0.75rem 0 0.85rem;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 40%, rgba(17, 17, 17, 0) 100%);
}
.rf-pcard__text {
	color: #6b7280;
	font-size: 0.9rem;
	margin: 0;
	flex: 1 1 auto;
	line-height: 1.5;
	overflow-wrap: anywhere;
}
.rf-pcard:hover .rf-pcard__num,
.rf-pcard:hover .rf-pcard__title,
.rf-pcard:hover .rf-pcard__text {
	color: #fff;
}
.rf-pcard:hover .rf-pcard__rule {
	background: linear-gradient(90deg, #fff 0%, #fff 40%, rgba(255, 255, 255, 0) 100%);
}
.rf-pcard:hover .rf-pcard__ico {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}

@media (max-width: 1080px) {
	.rf-process__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.rf-process__grid { grid-template-columns: 1fr; }
	.rf-pcard { padding: 1.25rem 1.15rem; }
}

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

/* =========================================================================
   34e. Service locations (intro over full-bleed backdrop)
   ========================================================================= */
.rf-section--locations {
	position: relative;
	overflow: hidden;
	background: #f7f8f9;
}
.rf-locations__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(247, 248, 249, 0.97) 0%, rgba(247, 248, 249, 0.88) 38%, rgba(247, 248, 249, 0.28) 68%, rgba(247, 248, 249, 0.08) 100%),
		url(../images/locations-hero.jpg) right center / cover no-repeat;
}
.rf-locations__layout {
	position: relative;
	z-index: 1;
	display: block;
}
.rf-locations__intro {
	max-width: 36rem;
}
.rf-locations__intro .rf-heading__eyebrow {
	background: #111;
	border-color: #111;
	color: #fff;
	font-style: normal;
	letter-spacing: 0.1em;
}
.rf-locations__title {
	display: flex;
	flex-direction: column;
	gap: 0.06em;
	margin: 0.85rem 0 0.9rem;
	font-size: clamp(1.7rem, 3.4vw, 2.35rem);
	font-weight: 700;
	font-style: italic;
	line-height: 1.12;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111;
}
.rf-locations__title-line {
	display: block;
}
.rf-locations__lead {
	margin: 0 0 1.1rem;
	max-width: 36em;
	font-size: 1.02rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.55;
	color: #6b7280;
}
.rf-locations__rule {
	display: block;
	width: 120px;
	height: 3px;
	margin: 0 0 1.5rem;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 45%, rgba(17, 17, 17, 0) 100%);
}

.rf-locations__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
	border-top: 1px solid rgba(17, 17, 17, 0.12);
}
.rf-location {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}
.rf-location__link {
	display: grid;
	grid-template-columns: 2.4rem 1fr auto;
	gap: 0.85rem;
	align-items: center;
	padding: 0.95rem 0.15rem;
	text-decoration: none;
	color: inherit;
	transition: background 0.18s ease, padding 0.18s ease;
}
.rf-location__link:hover {
	background: rgba(17, 17, 17, 0.04);
	padding-left: 0.55rem;
	padding-right: 0.45rem;
}
.rf-location__index {
	font-family: var(--rf-font-display);
	font-size: 1.15rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.04em;
	line-height: 1;
	color: #111;
}
.rf-location__body {
	display: grid;
	gap: 0.12rem;
	min-width: 0;
}
.rf-location__name {
	font-family: var(--rf-font-display);
	font-size: 0.98rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #111;
	line-height: 1.2;
}
.rf-location__region {
	font-size: 0.88rem;
	line-height: 1.35;
	color: #6b7280;
}
.rf-location__go {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid #111;
	color: #fff;
	background: #111;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.rf-location__go .rf-icon {
	width: 0.95em;
	height: 0.95em;
}
.rf-location__link:hover .rf-location__go {
	background: #111;
	border-color: #111;
	color: #fff;
	transform: translateX(2px);
}

.rf-locations__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: 1.5rem;
	padding: 0.85rem 1.25rem;
	background: #111;
	border: 1px solid #111;
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.18s ease, color 0.18s ease;
}
.rf-locations__cta .rf-icon {
	width: 0.95em;
	height: 0.95em;
	transition: transform 0.18s ease;
}
.rf-locations__cta:hover {
	background: transparent;
	color: #111;
}
.rf-locations__cta:hover .rf-icon {
	transform: translateX(3px);
}

@media (max-width: 960px) {
	.rf-locations__intro {
		max-width: none;
	}
	.rf-locations__bg {
		background-position: center top;
		opacity: 0.5;
	}
}

/* =========================================================================
   34e2. Service Areas archive (dark hero + numbered city tiles)
   ========================================================================= */
.rf-hero--areas {
	background-image: var(--rf-areas-hero);
	background-position: 62% 66%;
	background-size: cover;
}
.rf-hero--areas .rf-hero__inner--areas {
	min-height: clamp(380px, 38vw, 520px);
	padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
}
.rf-hero--areas .rf-breadcrumbs {
	margin-bottom: 1.15rem;
}
.rf-hero--areas .rf-breadcrumbs__link {
	color: rgba(255, 255, 255, 0.55);
}
.rf-hero--areas .rf-breadcrumbs__link:hover {
	color: #fff;
}
.rf-hero--areas .rf-breadcrumbs__sep {
	color: rgba(255, 255, 255, 0.28);
}
.rf-hero--areas .rf-breadcrumbs__current {
	color: rgba(255, 255, 255, 0.9);
}

.rf-section--areas {
	background: #f5f6f7;
}
.rf-section--areas-light {
	background: #fff;
	background-image: none;
}
.rf-section--areas-light.rf-section--loc .rf-pcard.rf-area-card {
	background: #f7f8f9;
	border-color: #e8ebef;
}
.rf-section--areas-light.rf-section--loc .rf-pcard.rf-area-card .rf-pcard__ico {
	background: #f5f6f7;
}
.rf-areas__heading {
	max-width: 40rem;
	margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.rf-areas__heading .rf-heading__eyebrow {
	background: #111;
	border-color: #111;
	color: #fff;
	font-style: normal;
	letter-spacing: 0.1em;
}
.rf-areas__heading .rf-heading__eyebrow::before {
	display: none;
}
.rf-areas__heading .rf-heading__title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.06em;
	margin: 0.85rem 0 0.85rem;
	font-size: clamp(1.55rem, 3.2vw, 2.15rem);
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111;
}
.rf-areas__heading .rf-heading__title-line {
	display: block;
}
.rf-areas__heading .rf-heading__text {
	margin: 0;
	max-width: 36em;
	color: #6b7280;
	font-size: 1.02rem;
	font-style: normal;
	font-weight: 400;
}
.rf-areas__rule {
	display: block;
	width: 120px;
	height: 3px;
	margin: 1.15rem 0 0;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 45%, rgba(17, 17, 17, 0) 100%);
}

.rf-areas__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}
.rf-section--areas .rf-pcard.rf-area-card {
	background: #fff;
	border-color: #e8ebef;
	min-height: 17.5rem;
}
.rf-section--areas .rf-pcard.rf-area-card .rf-pcard__ico {
	background: #f5f6f7;
}
.rf-section--areas .rf-pcard.rf-area-card:hover {
	background: #111;
	border-color: #111;
}
.rf-area-card__region {
	display: block;
	margin: 0 0 0.35rem;
	font-size: 0.72rem;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #6b7280;
}
.rf-area-card .rf-pcard__title a {
	color: inherit;
	text-decoration: none;
}
.rf-area-card .rf-pcard__title a::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}
.rf-area-card__link {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 0.4rem;
	margin-top: auto;
	padding-top: 0.85rem;
	border-top: 1px solid #e5e7eb;
	width: 100%;
	font-size: 0.8rem;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #111;
	text-decoration: none;
}
.rf-area-card__link .rf-icon {
	width: 0.95em;
	height: 0.95em;
	transition: transform 0.18s ease;
}
.rf-pcard.rf-area-card:hover .rf-area-card__region,
.rf-pcard.rf-area-card:hover .rf-pcard__title,
.rf-pcard.rf-area-card:hover .rf-pcard__text,
.rf-pcard.rf-area-card:hover .rf-pcard__num {
	color: #fff;
}
.rf-pcard.rf-area-card:hover .rf-pcard__rule {
	background: linear-gradient(90deg, #fff 0%, #fff 40%, rgba(255, 255, 255, 0) 100%);
}
.rf-pcard.rf-area-card:hover .rf-pcard__ico {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
}
.rf-pcard.rf-area-card:hover .rf-pcard__ico .rf-icon {
	color: #fff;
}
.rf-pcard.rf-area-card:hover .rf-area-card__link {
	color: #fff;
	border-top-color: rgba(255, 255, 255, 0.2);
}
.rf-pcard.rf-area-card:hover .rf-area-card__link .rf-icon {
	transform: translateX(3px);
	color: #fff;
}

.rf-section--areas .rf-pagination {
	margin-top: clamp(2rem, 4vw, 2.75rem);
}

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

/* =========================================================================
   34e3. Appliances archive (dark hero + numbered appliance tiles)
   ========================================================================= */
.rf-hero--appliances-archive {
	background-color: #0a0a0a;
	background-image:
		linear-gradient(90deg, #0a0a0a 0%, #0a0a0a 28%, rgba(10, 10, 10, 0.92) 40%, rgba(10, 10, 10, 0.55) 54%, rgba(10, 10, 10, 0.18) 68%, rgba(10, 10, 10, 0) 80%),
		var(--rf-appliances-hero);
	background-position: left top, right center;
	background-size: auto, cover;
	background-repeat: no-repeat;
}
.rf-hero--appliances-archive .rf-hero__inner--archive {
	min-height: clamp(380px, 38vw, 520px);
	padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
}
.rf-hero--appliances-archive .rf-breadcrumbs {
	margin-bottom: 1.15rem;
}
.rf-hero--appliances-archive .rf-breadcrumbs__link {
	color: rgba(255, 255, 255, 0.55);
}
.rf-hero--appliances-archive .rf-breadcrumbs__link:hover {
	color: #fff;
}
.rf-hero--appliances-archive .rf-breadcrumbs__sep {
	color: rgba(255, 255, 255, 0.28);
}
.rf-hero--appliances-archive .rf-breadcrumbs__current {
	color: rgba(255, 255, 255, 0.9);
}

.rf-section--appliances-archive {
	background: #f5f6f7;
}
.rf-appliances-archive__heading {
	max-width: 40rem;
	margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.rf-appliances-archive__heading .rf-heading__eyebrow {
	background: #111;
	border-color: #111;
	color: #fff;
	font-style: normal;
	letter-spacing: 0.1em;
}
.rf-appliances-archive__heading .rf-heading__eyebrow::before {
	display: none;
}
.rf-appliances-archive__heading .rf-heading__title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.06em;
	margin: 0.85rem 0 0.85rem;
	font-size: clamp(1.55rem, 3.2vw, 2.15rem);
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111;
}
.rf-appliances-archive__heading .rf-heading__title-line {
	display: block;
}
.rf-appliances-archive__heading .rf-heading__text {
	margin: 0;
	max-width: 36em;
	color: #6b7280;
	font-size: 1.02rem;
	font-style: normal;
	font-weight: 400;
}
.rf-appliances-archive__rule {
	display: block;
	width: 120px;
	height: 3px;
	margin: 1.15rem 0 0;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 45%, rgba(17, 17, 17, 0) 100%);
}
.rf-section--appliances-archive .rf-pagination {
	margin-top: clamp(2rem, 4vw, 2.75rem);
}

/* =========================================================================
   34e4. Services archive (dark hero + numbered service tiles)
   ========================================================================= */
.rf-hero--services-archive {
	background-color: #0a0a0a;
	background-image:
		linear-gradient(90deg, #0a0a0a 0%, #0a0a0a 28%, rgba(10, 10, 10, 0.92) 40%, rgba(10, 10, 10, 0.55) 54%, rgba(10, 10, 10, 0.18) 68%, rgba(10, 10, 10, 0) 80%),
		var(--rf-services-hero);
	background-position: left top, right center;
	background-size: auto, cover;
	background-repeat: no-repeat;
}
.rf-hero--services-archive .rf-hero__inner--archive {
	min-height: clamp(380px, 38vw, 520px);
	padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
}
.rf-hero--services-archive .rf-breadcrumbs {
	margin-bottom: 1.15rem;
}
.rf-hero--services-archive .rf-breadcrumbs__link {
	color: rgba(255, 255, 255, 0.55);
}
.rf-hero--services-archive .rf-breadcrumbs__link:hover {
	color: #fff;
}
.rf-hero--services-archive .rf-breadcrumbs__sep {
	color: rgba(255, 255, 255, 0.28);
}
.rf-hero--services-archive .rf-breadcrumbs__current {
	color: rgba(255, 255, 255, 0.9);
}

.rf-section--services-archive {
	background: #f5f6f7;
}
.rf-section--services-archive .rf-service {
	background: #fff;
	border-color: #e8ebef;
}
.rf-section--services-archive .rf-service__icon {
	background: #f5f6f7;
}
.rf-section--services-archive .rf-service:hover {
	background: #111;
	border-color: #111;
}
.rf-section--services-archive .rf-service:hover .rf-service__icon {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}

/* Related service grids (location pages, singles) — match archive tiles. */
.rf-section--services-related .rf-service {
	background: #f7f8f9;
	border-color: #e8ebef;
}
.rf-section--services-related .rf-service__icon {
	background: #fff;
}
.rf-section--services-related .rf-service:hover {
	background: #111;
	border-color: #111;
}
.rf-section--services-related .rf-service:hover .rf-service__icon {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}
.rf-section--services-related .rf-service:hover .rf-service__icon .rf-icon {
	color: #fff;
}
.rf-section--services-related .rf-service:hover .rf-service__index,
.rf-section--services-related .rf-service:hover .rf-service__title,
.rf-section--services-related .rf-service:hover .rf-service__title a,
.rf-section--services-related .rf-service:hover .rf-service__text,
.rf-section--services-related .rf-service:hover .rf-service__link {
	color: #fff;
}
.rf-section--services-related .rf-service:hover .rf-service__title a:hover,
.rf-section--services-related .rf-service:hover .rf-service__link:hover {
	color: #fff;
}

/* Error-code tiles on appliance singles — white cards on alt sections. */
.rf-section--error-codes-related .rf-service {
	background: #fff;
	border-color: #e8ebef;
}
.rf-section--error-codes-related .rf-service__icon {
	background: #f5f6f7;
}
.rf-section--error-codes-related .rf-service:hover {
	background: #111;
	border-color: #111;
}
.rf-section--error-codes-related .rf-service:hover .rf-service__icon {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}
.rf-section--error-codes-related .rf-service:hover .rf-service__icon .rf-icon {
	color: #fff;
}
.rf-section--error-codes-related .rf-service:hover .rf-service__index,
.rf-section--error-codes-related .rf-service:hover .rf-service__title,
.rf-section--error-codes-related .rf-service:hover .rf-service__text,
.rf-section--error-codes-related .rf-service:hover .rf-service__link {
	color: #fff;
}
.rf-section--error-codes-related .rf-service:hover .rf-service__link:hover {
	color: #fff;
}

.rf-section--appliances-related .rf-appliance {
	background: #fff;
	border-color: #e8ebef;
}
.rf-section--appliances-related .rf-appliance__icon {
	background: #f5f6f7;
}
.rf-section--appliances-related .rf-appliance:hover {
	background: #111;
	border-color: #111;
}
.rf-section--appliances-related .rf-appliance:hover .rf-appliance__icon {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}
.rf-section--appliances-related .rf-appliance:hover .rf-appliance__icon .rf-icon {
	color: #fff;
}

.rf-services-archive__heading {
	max-width: 40rem;
	margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.rf-services-archive__heading .rf-heading__eyebrow {
	background: #111;
	border-color: #111;
	color: #fff;
	font-style: normal;
	letter-spacing: 0.1em;
}
.rf-services-archive__heading .rf-heading__eyebrow::before {
	display: none;
}
.rf-services-archive__heading .rf-heading__title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.06em;
	margin: 0.85rem 0 0.85rem;
	font-size: clamp(1.55rem, 3.2vw, 2.15rem);
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111;
}
.rf-services-archive__heading .rf-heading__title-line {
	display: block;
}
.rf-services-archive__heading .rf-heading__text {
	margin: 0;
	max-width: 36em;
	color: #6b7280;
	font-size: 1.02rem;
	font-style: normal;
	font-weight: 400;
}
.rf-services-archive__rule {
	display: block;
	width: 120px;
	height: 3px;
	margin: 1.15rem 0 0;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 45%, rgba(17, 17, 17, 0) 100%);
}
.rf-section--services-archive .rf-pagination {
	margin-top: clamp(2rem, 4vw, 2.75rem);
}

/* =========================================================================
   34e5. Models archive (dark hero + numbered model tiles)
   ========================================================================= */
.rf-hero--models-archive {
	background-color: #0a0a0a;
	background-image:
		linear-gradient(90deg, #0a0a0a 0%, #0a0a0a 28%, rgba(10, 10, 10, 0.92) 40%, rgba(10, 10, 10, 0.55) 54%, rgba(10, 10, 10, 0.18) 68%, rgba(10, 10, 10, 0) 80%),
		var(--rf-models-hero);
	background-position: left top, right center;
	background-size: auto, cover;
	background-repeat: no-repeat;
}
.rf-hero--models-archive .rf-hero__inner--archive {
	min-height: clamp(380px, 38vw, 520px);
	padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
}
.rf-hero--models-archive .rf-breadcrumbs {
	margin-bottom: 1.15rem;
}
.rf-hero--models-archive .rf-breadcrumbs__link {
	color: rgba(255, 255, 255, 0.55);
}
.rf-hero--models-archive .rf-breadcrumbs__link:hover {
	color: #fff;
}
.rf-hero--models-archive .rf-breadcrumbs__sep {
	color: rgba(255, 255, 255, 0.28);
}
.rf-hero--models-archive .rf-breadcrumbs__current {
	color: rgba(255, 255, 255, 0.9);
}

.rf-section--models-archive {
	background: #f5f6f7;
}
.rf-models-archive__heading {
	max-width: 40rem;
	margin: 0 auto clamp(2rem, 4vw, 2.75rem);
	text-align: center;
}
.rf-models-archive__heading .rf-heading__eyebrow {
	background: #111;
	border-color: #111;
	color: #fff;
	font-style: normal;
	letter-spacing: 0.1em;
}
.rf-models-archive__heading .rf-heading__eyebrow::before {
	display: none;
}
.rf-models-archive__heading .rf-heading__title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.06em;
	width: 100%;
	margin: 0.85rem 0 0;
	text-align: center;
	font-size: clamp(1.55rem, 3.2vw, 2.15rem);
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111;
}
.rf-models-archive__heading .rf-heading__title-line {
	display: block;
}
.rf-models-archive__heading .rf-heading__text {
	margin: 0.85rem auto 0;
	max-width: 36em;
	color: #6b7280;
	font-size: 1.02rem;
	font-style: normal;
	font-weight: 400;
}
.rf-models-archive__rule {
	display: block;
	width: 120px;
	height: 3px;
	margin: 1rem auto 0;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 40%, rgba(17, 17, 17, 0) 100%);
}

.rf-models-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}
.rf-section--models-archive .rf-pcard.rf-model-card {
	background: #fff;
	border-color: #e8ebef;
	min-height: 17.5rem;
}
.rf-section--models-archive .rf-pcard.rf-model-card .rf-pcard__ico {
	background: #f5f6f7;
}
.rf-section--models-archive .rf-pcard.rf-model-card:hover {
	background: #111;
	border-color: #111;
	transform: none;
}
.rf-section--models-related .rf-pcard.rf-model-card {
	background: #f7f8f9;
	border-color: #e8ebef;
	min-height: 17.5rem;
}
.rf-section--models-related .rf-pcard.rf-model-card .rf-pcard__ico {
	background: #fff;
}
.rf-section--models-related .rf-pcard.rf-model-card:hover {
	background: #111;
	border-color: #111;
	transform: none;
}
.rf-model-card__cat {
	display: block;
	margin: 0 0 0.35rem;
	font-size: 0.72rem;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #6b7280;
}
.rf-model-card .rf-pcard__title a {
	color: inherit;
	text-decoration: none;
}
.rf-model-card .rf-pcard__title a::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}
.rf-model-card__number {
	margin: 0.35rem 0 0;
	font-family: var(--rf-font-display);
	font-size: 0.95rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.04em;
	color: #111;
}
.rf-model-card__link {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 0.4rem;
	margin-top: auto;
	padding-top: 0.85rem;
	border-top: 1px solid #e5e7eb;
	width: 100%;
	font-size: 0.8rem;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #111;
	text-decoration: none;
}
.rf-model-card__link .rf-icon {
	width: 0.95em;
	height: 0.95em;
	transition: transform 0.18s ease;
}
.rf-pcard.rf-model-card:hover .rf-model-card__cat,
.rf-pcard.rf-model-card:hover .rf-pcard__title,
.rf-pcard.rf-model-card:hover .rf-pcard__text,
.rf-pcard.rf-model-card:hover .rf-pcard__num,
.rf-pcard.rf-model-card:hover .rf-model-card__number {
	color: #fff;
}
.rf-pcard.rf-model-card:hover .rf-pcard__rule {
	background: linear-gradient(90deg, #fff 0%, #fff 40%, rgba(255, 255, 255, 0) 100%);
}
.rf-pcard.rf-model-card:hover .rf-pcard__ico {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
}
.rf-pcard.rf-model-card:hover .rf-model-card__link {
	color: #fff;
	border-top-color: rgba(255, 255, 255, 0.2);
}
.rf-pcard.rf-model-card:hover .rf-model-card__link .rf-icon {
	transform: translateX(3px);
}

.rf-section--models-archive .rf-pagination {
	margin-top: clamp(2rem, 4vw, 2.75rem);
}

.rf-section--models-note {
	background: #fff;
	padding-block: clamp(2rem, 4vw, 3rem);
}
.rf-section--models-note .rf-notice {
	background: #f5f6f7;
	border: 1px solid #e8ebef;
	border-left: 3px solid #111;
	border-radius: 0;
}
.rf-section--models-note .rf-notice .rf-icon {
	color: #111;
}

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

/* Service single (dark hero when a themed image exists) */
.rf-hero--service-single {
	background-color: #0a0a0a;
	background-image:
		linear-gradient(90deg, #0a0a0a 0%, #0a0a0a 28%, rgba(10, 10, 10, 0.92) 40%, rgba(10, 10, 10, 0.55) 54%, rgba(10, 10, 10, 0.18) 68%, rgba(10, 10, 10, 0) 80%),
		var(--rf-service-hero);
	background-position: left top, right center;
	background-size: auto, cover;
	background-repeat: no-repeat;
}
.rf-hero--service-single .rf-hero__inner--archive {
	min-height: clamp(380px, 38vw, 520px);
	padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
}
.rf-hero--service-single .rf-breadcrumbs {
	margin-bottom: 1.15rem;
}
.rf-hero--service-single .rf-breadcrumbs__link {
	color: rgba(255, 255, 255, 0.55);
}
.rf-hero--service-single .rf-breadcrumbs__link:hover {
	color: #fff;
}
.rf-hero--service-single .rf-breadcrumbs__sep {
	color: rgba(255, 255, 255, 0.28);
}
.rf-hero--service-single .rf-breadcrumbs__current {
	color: rgba(255, 255, 255, 0.9);
}
.rf-hero--service-single .rf-hero__note {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: 1.15rem;
	font-size: 0.88rem;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	color: rgba(255, 255, 255, 0.72);
}
.rf-hero--service-single .rf-hero__note .rf-icon {
	width: 1.05em;
	height: 1.05em;
	color: rgba(255, 255, 255, 0.85);
}

/* Model single (dark hero + TOC + themed blocks) */
.rf-hero--model-single {
	background-color: #0a0a0a;
	background-image:
		linear-gradient(90deg, #0a0a0a 0%, #0a0a0a 28%, rgba(10, 10, 10, 0.92) 40%, rgba(10, 10, 10, 0.55) 54%, rgba(10, 10, 10, 0.18) 68%, rgba(10, 10, 10, 0) 80%),
		var(--rf-model-hero);
	background-position: left top, right center;
	background-size: auto, cover;
	background-repeat: no-repeat;
}
.rf-hero--model-single .rf-hero__inner--archive {
	min-height: clamp(380px, 38vw, 520px);
	padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
}
.rf-hero--model-single .rf-breadcrumbs {
	margin-bottom: 1.15rem;
}
.rf-hero--model-single .rf-breadcrumbs__link {
	color: rgba(255, 255, 255, 0.55);
}
.rf-hero--model-single .rf-breadcrumbs__link:hover {
	color: #fff;
}
.rf-hero--model-single .rf-breadcrumbs__sep {
	color: rgba(255, 255, 255, 0.28);
}
.rf-hero--model-single .rf-breadcrumbs__current {
	color: rgba(255, 255, 255, 0.9);
}
.rf-model-page {
	background: #fff;
}
.rf-model-overview__figure {
	margin: 1.25rem 0 0;
	border: 1px solid #e8ebef;
	background: #f5f6f7;
	overflow: hidden;
}
.rf-model-overview__figure img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}
.rf-model-overview__body {
	margin-top: 1.15rem;
	color: #6b7280;
	font-size: 1.02rem;
	line-height: 1.6;
}
.rf-model-block .rf-loc-section__heading {
	margin-bottom: clamp(1.35rem, 3vw, 1.85rem);
}
.rf-model-block__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.rf-model-issue-card {
	background: #f7f8f9;
	border-color: #e8ebef;
	min-height: 13.5rem;
}
.rf-model-issue-card .rf-pcard__ico {
	background: #fff;
}
.rf-model-issue-card:hover {
	background: #111;
	border-color: #111;
}
.rf-model-issue-card:hover .rf-pcard__ico {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}
.rf-model-issue-card:hover .rf-pcard__num,
.rf-model-issue-card:hover .rf-pcard__text {
	color: #fff;
}
.rf-model-block .rf-services-grid .rf-service {
	background: #f7f8f9;
	border-color: #e8ebef;
}
.rf-model-block .rf-services-grid .rf-service:hover {
	background: #111;
	border-color: #111;
	transform: translateY(-2px);
}
.rf-model-block .rf-services-grid .rf-service:hover .rf-service__index,
.rf-model-block .rf-services-grid .rf-service:hover .rf-service__title,
.rf-model-block .rf-services-grid .rf-service:hover .rf-service__text,
.rf-model-block .rf-services-grid .rf-service:hover .rf-service__link {
	color: #fff;
}
.rf-model-block .rf-services-grid .rf-service:hover .rf-service__link:hover {
	color: #fff;
}
.rf-model-block .rf-services-grid .rf-service:hover .rf-service__rule {
	background: linear-gradient(90deg, #fff 0%, #fff 40%, rgba(255, 255, 255, 0) 100%);
}
.rf-model-block .rf-services-grid .rf-service:hover .rf-service__icon {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}
.rf-model-block .rf-services-grid .rf-service:hover .rf-service__link {
	border-top-color: rgba(255, 255, 255, 0.2);
}
#model-codes .rf-ec-card__link {
	gap: 0.7rem;
}
#model-codes .rf-ec-card__top {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.3rem;
}
#model-codes .rf-ec-card__code {
	overflow-wrap: break-word;
}
#model-codes .rf-ec-card__appliance {
	text-align: left;
	letter-spacing: 0.04em;
	line-height: 1.35;
	white-space: normal;
}
#model-codes .rf-ec-card__meaning,
#model-codes .rf-ec-card__symptom {
	line-height: 1.55;
}
#model-codes .rf-ec-card__more {
	margin-top: 0.25rem;
}
@media (max-width: 900px) {
	.rf-model-block__grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 640px) {
	.rf-model-block__grid {
		grid-template-columns: 1fr;
	}
	.rf-model-block .rf-services-grid {
		grid-template-columns: 1fr;
	}
}

/* =========================================================================
   34. Appliances we service (numbered tiles — same language as services)
   ========================================================================= */
.rf-section--appliances {
	background: #f5f6f7;
}
.rf-appliances__heading {
	max-width: 720px;
	margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.rf-appliances__heading .rf-heading__eyebrow {
	background: #111;
	border-color: #111;
	color: #fff;
	font-style: normal;
	letter-spacing: 0.1em;
}
.rf-appliances__heading .rf-heading__title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.06em;
	margin: 0 0 0.85rem;
	font-size: clamp(1.55rem, 3.2vw, 2.15rem);
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.rf-appliances__heading .rf-heading__title-line {
	display: block;
}
.rf-appliances__heading .rf-heading__text {
	max-width: 40em;
	margin: 0 auto;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.55;
	color: #6b7280;
}
.rf-appliances__rule {
	display: block;
	width: 160px;
	height: 3px;
	margin: 1.15rem auto 0;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 40%, rgba(17, 17, 17, 0) 100%);
}
.rf-appliances-grid {
	--rf-appliance-gap: 1.25rem;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: stretch;
	gap: var(--rf-appliance-gap);
}
.rf-appliances-grid > * {
	min-width: 0;
	box-sizing: border-box;
}
.rf-appliance {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.75rem;
	width: 100%;
	height: 100%;
	min-height: 16.75rem;
	min-width: 0;
	overflow: hidden;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid #e8ebef;
	border-radius: 0;
	padding: 1.4rem 1.35rem 1.3rem;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.rf-appliance:hover {
	background: #111;
	border-color: #111;
	transform: translateY(-2px);
}
.rf-appliance__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.15rem;
}
.rf-appliance__index {
	font-family: var(--rf-font-display);
	font-size: 1.65rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.04em;
	line-height: 1;
	color: #111;
}
.rf-appliance__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin: 0;
	border: 1px solid #d1d5db;
	border-radius: 0;
	color: #111;
	background: #f7f8f9;
	box-shadow: none;
}
.rf-appliance__icon .rf-icon {
	width: 22px;
	height: 22px;
}
.rf-appliance__title {
	margin: 0;
	min-width: 0;
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111;
	line-height: 1.25;
	white-space: normal;
	overflow-wrap: normal;
	word-break: keep-all;
}
.rf-appliance__rule {
	display: block;
	width: 96px;
	height: 3px;
	margin: 0.15rem 0 0;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 40%, rgba(17, 17, 17, 0) 100%);
}
.rf-appliance__text {
	margin: 0;
	flex: 1 1 auto;
	width: 100%;
	font-size: 0.9rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	color: #6b7280;
	overflow-wrap: anywhere;
	hyphens: auto;
}
.rf-appliance__link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 0.4rem;
	margin-top: auto;
	padding-top: 0.65rem;
	border-top: 1px solid #e5e7eb;
	width: 100%;
	font-size: 0.8rem;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #111;
	text-decoration: none;
}
.rf-appliance__link .rf-icon {
	width: 0.95em;
	height: 0.95em;
	flex: none;
	transition: transform 0.18s ease;
}
.rf-appliance:hover .rf-appliance__index,
.rf-appliance:hover .rf-appliance__title,
.rf-appliance:hover .rf-appliance__text,
.rf-appliance:hover .rf-appliance__link {
	color: #fff;
}
.rf-appliance:hover .rf-appliance__rule {
	background: linear-gradient(90deg, #fff 0%, #fff 40%, rgba(255, 255, 255, 0) 100%);
}
.rf-appliance:hover .rf-appliance__icon {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}
.rf-appliance:hover .rf-appliance__link {
	border-top-color: rgba(255, 255, 255, 0.2);
}
.rf-appliance:hover .rf-appliance__link .rf-icon {
	transform: translateX(3px);
}

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

/* Blog category filter */
.rf-blog-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.rf-blog-filter__chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.55rem 1.05rem;
	border-radius: 999px;
	border: 1px solid var(--rf-line);
	background: #fff;
	color: var(--rf-charcoal);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.rf-blog-filter__chip:hover {
	border-color: color-mix(in srgb, var(--rf-primary) 35%, var(--rf-line));
	box-shadow: var(--rf-shadow-xs);
}
.rf-blog-filter__chip.is-active {
	background: var(--rf-primary);
	border-color: var(--rf-primary);
	color: #fff;
}
.rf-blog-filter__count {
	display: inline-grid;
	place-items: center;
	min-width: 1.4em;
	height: 1.4em;
	padding: 0 0.4em;
	border-radius: 999px;
	background: color-mix(in srgb, var(--rf-primary) 10%, #fff);
	color: var(--rf-primary);
	font-size: 0.78rem;
	font-weight: 700;
}
.rf-blog-filter__chip.is-active .rf-blog-filter__count {
	background: rgba(255, 255, 255, 0.25);
	color: #fff;
}

/* =========================================================================
   34b. Repair services (numbered tiles — distinct from appliances)
   ========================================================================= */
.rf-section--services {
	background: #fff;
}
.rf-services__heading {
	max-width: 680px;
	margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.rf-services__heading .rf-heading__eyebrow {
	background: #111;
	border-color: #111;
	color: #fff;
	font-style: normal;
	letter-spacing: 0.1em;
}
.rf-services__heading .rf-heading__title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.06em;
	margin: 0 0 0.85rem;
	font-size: clamp(1.55rem, 3.2vw, 2.15rem);
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.rf-services__heading .rf-heading__title-line {
	display: block;
}
.rf-services__heading .rf-heading__text {
	max-width: 38em;
	margin: 0 auto;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.55;
	color: #6b7280;
}
.rf-services__rule {
	display: block;
	width: 160px;
	height: 3px;
	margin: 1.15rem auto 0;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 40%, rgba(17, 17, 17, 0) 100%);
}
.rf-services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	align-items: stretch;
}
.rf-service {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.75rem;
	height: 100%;
	min-height: 16.75rem;
	min-width: 0;
	overflow: hidden;
	box-sizing: border-box;
	background: #f7f8f9;
	border: 1px solid #e8ebef;
	border-radius: 0;
	padding: 1.4rem 1.35rem 1.3rem;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.rf-service:hover {
	background: #111;
	border-color: #111;
	transform: translateY(-2px);
}
.rf-service__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.15rem;
}
.rf-service__index {
	font-family: var(--rf-font-display);
	font-size: 1.65rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.04em;
	line-height: 1;
	color: #111;
}
.rf-service__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid #d1d5db;
	color: #111;
	background: #fff;
}
.rf-service__icon .rf-icon {
	width: 22px;
	height: 22px;
}
.rf-service__title {
	margin: 0;
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111;
	line-height: 1.25;
}
.rf-service__rule {
	display: block;
	width: 96px;
	height: 3px;
	margin: 0.15rem 0 0;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 40%, rgba(17, 17, 17, 0) 100%);
}
.rf-service__text {
	margin: 0;
	flex: 1 1 auto;
	font-size: 0.9rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	color: #6b7280;
	overflow-wrap: anywhere;
}
.rf-service__link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 0.4rem;
	margin-top: auto;
	padding-top: 0.65rem;
	border-top: 1px solid #e5e7eb;
	width: 100%;
	font-size: 0.8rem;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #111;
	text-decoration: none;
}
.rf-service__link .rf-icon {
	width: 0.95em;
	height: 0.95em;
	transition: transform 0.18s ease;
}
.rf-service:hover .rf-service__index,
.rf-service:hover .rf-service__title,
.rf-service:hover .rf-service__title a,
.rf-service:hover .rf-service__text,
.rf-service:hover .rf-service__link {
	color: #fff;
}
.rf-service:hover .rf-service__title a:hover,
.rf-service:hover .rf-service__link:hover {
	color: #fff;
}
.rf-service:hover .rf-service__rule {
	background: linear-gradient(90deg, #fff 0%, #fff 40%, rgba(255, 255, 255, 0) 100%);
}
.rf-service:hover .rf-service__icon {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}
.rf-service:hover .rf-service__link {
	border-top-color: rgba(255, 255, 255, 0.2);
}
.rf-service:hover .rf-service__link .rf-icon {
	transform: translateX(3px);
}

@media (max-width: 960px) {
	.rf-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
	.rf-services-grid { grid-template-columns: 1fr; }
	.rf-service { min-height: 0; }
}

/* =========================================================================
   34c. Common problems (numbered tiles)
   ========================================================================= */
.rf-section--problems {
	background: #fff;
}
.rf-problems__heading {
	max-width: 720px;
	margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.rf-problems__heading .rf-heading__eyebrow {
	background: #111;
	border-color: #111;
	color: #fff;
	font-style: normal;
	letter-spacing: 0.1em;
}
.rf-problems__heading .rf-heading__title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.06em;
	margin: 0 0 0.85rem;
	font-size: clamp(1.55rem, 3.2vw, 2.15rem);
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.rf-problems__heading .rf-heading__title-line {
	display: block;
}
.rf-problems__heading .rf-heading__text {
	max-width: 40em;
	margin: 0 auto;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.55;
	color: #6b7280;
}
.rf-problems__rule {
	display: block;
	width: 160px;
	height: 3px;
	margin: 1.15rem auto 0;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 40%, rgba(17, 17, 17, 0) 100%);
}
.rf-problems-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	align-items: stretch;
}
.rf-problem {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.75rem;
	height: 100%;
	min-height: 13.5rem;
	min-width: 0;
	overflow: hidden;
	box-sizing: border-box;
	background: #f7f8f9;
	border: 1px solid #e8ebef;
	border-radius: 0;
	padding: 1.4rem 1.35rem 1.3rem;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.rf-problem:hover {
	background: #111;
	border-color: #111;
	transform: translateY(-2px);
}
.rf-problem__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.15rem;
}
.rf-problem__index {
	font-family: var(--rf-font-display);
	font-size: 1.65rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.04em;
	line-height: 1;
	color: #111;
}
.rf-problem__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin: 0;
	border: 1px solid #d1d5db;
	border-radius: 0;
	color: #111;
	background: #f7f8f9;
	box-shadow: none;
}
.rf-problem__icon .rf-icon {
	width: 22px;
	height: 22px;
}
.rf-problem__title {
	margin: 0;
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111;
	line-height: 1.25;
}
.rf-problem__rule {
	display: block;
	width: 96px;
	height: 3px;
	margin: 0.15rem 0 0;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 40%, rgba(17, 17, 17, 0) 100%);
}
.rf-problem__text {
	margin: 0;
	flex: 1 1 auto;
	font-size: 0.94rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	color: #6b7280;
}
.rf-problem:hover .rf-problem__index,
.rf-problem:hover .rf-problem__title,
.rf-problem:hover .rf-problem__text {
	color: #fff;
}
.rf-problem:hover .rf-problem__rule {
	background: linear-gradient(90deg, #fff 0%, #fff 40%, rgba(255, 255, 255, 0) 100%);
}
.rf-problem:hover .rf-problem__icon {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}
.rf-problems__notice {
	margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
}
.rf-section--problems .rf-notice {
	background: #fff;
	border: 1px solid #e8ebef;
	border-left: 3px solid #111;
	border-radius: 0;
	box-shadow: none;
}
.rf-section--problems .rf-notice .rf-icon {
	color: #111;
}

@media (max-width: 960px) {
	.rf-problems-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
	.rf-problems-grid { grid-template-columns: 1fr; }
	.rf-problem { min-height: 0; }
}

/* =========================================================================
   34d. Why choose us (numbered tiles)
   ========================================================================= */
.rf-section--why {
	background: #f5f6f7;
}
.rf-why__heading {
	max-width: 720px;
	margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.rf-why__heading .rf-heading__eyebrow {
	background: #111;
	border-color: #111;
	color: #fff;
	font-style: normal;
	letter-spacing: 0.1em;
}
.rf-why__heading .rf-heading__title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.06em;
	margin: 0 0 0.85rem;
	font-size: clamp(1.55rem, 3.2vw, 2.15rem);
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.rf-why__heading .rf-heading__title-line {
	display: block;
}
.rf-why__heading .rf-heading__text {
	max-width: 40em;
	margin: 0 auto;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.55;
	color: #6b7280;
}
.rf-why__rule {
	display: block;
	width: 160px;
	height: 3px;
	margin: 1.15rem auto 0;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 40%, rgba(17, 17, 17, 0) 100%);
}
.rf-why-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	align-items: stretch;
}
.rf-why {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.75rem;
	height: 100%;
	min-height: 13.5rem;
	min-width: 0;
	overflow: hidden;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid #e8ebef;
	border-radius: 0;
	padding: 1.4rem 1.35rem 1.3rem;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.rf-why:hover {
	background: #111;
	border-color: #111;
	transform: translateY(-2px);
}
.rf-why__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.15rem;
}
.rf-why__index {
	font-family: var(--rf-font-display);
	font-size: 1.65rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.04em;
	line-height: 1;
	color: #111;
}
.rf-why__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin: 0;
	border: 1px solid #d1d5db;
	border-radius: 0;
	color: #111;
	background: #fff;
	box-shadow: none;
}
.rf-why__icon .rf-icon {
	width: 22px;
	height: 22px;
}
.rf-why__title {
	margin: 0;
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111;
	line-height: 1.25;
}
.rf-why__card-rule {
	display: block;
	width: 96px;
	height: 3px;
	margin: 0.15rem 0 0;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 40%, rgba(17, 17, 17, 0) 100%);
}
.rf-why__text {
	margin: 0;
	flex: 1 1 auto;
	font-size: 0.9rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	color: #6b7280;
	overflow-wrap: anywhere;
}
.rf-why:hover .rf-why__index,
.rf-why:hover .rf-why__title,
.rf-why:hover .rf-why__text {
	color: #fff;
}
.rf-why:hover .rf-why__card-rule {
	background: linear-gradient(90deg, #fff 0%, #fff 40%, rgba(255, 255, 255, 0) 100%);
}
.rf-why:hover .rf-why__icon {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}

@media (max-width: 960px) {
	.rf-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
	.rf-why-grid { grid-template-columns: 1fr; }
	.rf-why { min-height: 0; }
}

/* =========================================================================
   34f. Guarantees (reuses process heading + rf-pcard grid)
   ========================================================================= */
.rf-section--guarantees.rf-section--process {
	background: #fff;
}

/* =========================================================================
   34g. Transformation stages (3 vertical tiles across full width)
   ========================================================================= */
.rf-section--transform.rf-section--process {
	background: var(--rf-surface-2);
}
.rf-section--transform .rf-pcard {
	background: #fff;
}
.rf-section--transform .rf-pcard:hover {
	background: #111;
	border-color: #111;
}
/* Keep all 3 stages in one full-width row on large screens (no 2-col break). */
.rf-section--transform .rf-transform-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 720px) {
	.rf-section--transform .rf-transform-grid {
		grid-template-columns: 1fr;
	}
	.rf-section--transform .rf-pcard {
		min-height: 0;
	}
}

/* =========================================================================
   34h. Reviews — unique quote layout over backdrop
   ========================================================================= */
.rf-section--reviews {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: #f7f8fa;
}
.rf-reviews__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.99) 0%,
			rgba(255, 255, 255, 0.98) 24%,
			rgba(255, 255, 255, 0.94) 38%,
			rgba(255, 255, 255, 0.82) 52%,
			rgba(255, 255, 255, 0.52) 66%,
			rgba(255, 255, 255, 0.18) 82%,
			rgba(255, 255, 255, 0) 100%
		),
		url(../images/reviews-bg.jpg) center right / cover no-repeat;
}
.rf-section--reviews > .rf-container {
	position: relative;
	z-index: 1;
}
.rf-reviews__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
	gap: clamp(1.75rem, 4vw, 3.25rem);
	align-items: end;
	margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.rf-reviews__intro {
	max-width: 28rem;
}
.rf-reviews__intro .rf-heading__eyebrow {
	background: #111;
	border-color: #111;
	color: #fff;
	font-style: normal;
	letter-spacing: 0.1em;
}
.rf-reviews__title {
	display: flex;
	flex-direction: column;
	gap: 0.06em;
	margin: 0.85rem 0 0.9rem;
	font-family: var(--rf-font-display);
	font-size: clamp(1.55rem, 3.2vw, 2.2rem);
	font-weight: 700;
	font-style: italic;
	line-height: 1.12;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111;
	text-shadow: 0 1px 12px rgba(255, 255, 255, 0.9);
}
.rf-reviews__title-line { display: block; }
.rf-reviews__lead {
	margin: 0;
	max-width: 34em;
	font-size: 1rem;
	line-height: 1.55;
	color: #374151;
	text-shadow: 0 1px 10px rgba(255, 255, 255, 0.85);
}
.rf-reviews__rule {
	display: block;
	width: 140px;
	height: 3px;
	margin: 1.1rem 0 0;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 40%, rgba(17, 17, 17, 0) 100%);
}
.rf-reviews__score {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	margin-top: 1.35rem;
}
.rf-reviews__score-value {
	font-family: var(--rf-font-display);
	font-size: clamp(2.4rem, 5vw, 3.1rem);
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.02em;
	line-height: 1;
	color: #111;
}
.rf-reviews__score-meta {
	display: grid;
	gap: 0.25rem;
}
.rf-reviews__score-stars {
	display: inline-flex;
	gap: 2px;
	color: #111;
}
.rf-reviews__score-stars .rf-icon {
	width: 1rem;
	height: 1rem;
	fill: currentColor;
	stroke: none;
}
.rf-reviews__score-label {
	font-size: 0.86rem;
	color: #5c6570;
}

/* Featured quote — large editorial panel */
.rf-reviews__featured {
	position: relative;
	margin: 0;
	padding: 1.6rem 1.55rem 1.45rem;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(17, 17, 17, 0.08);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
}
.rf-reviews__mark {
	position: absolute;
	top: 0.15rem;
	left: 0.85rem;
	font-family: var(--rf-font-display);
	font-size: clamp(4.5rem, 9vw, 6.5rem);
	font-weight: 700;
	line-height: 0.75;
	color: rgba(17, 17, 17, 0.08);
	pointer-events: none;
	user-select: none;
}
.rf-reviews__featured-quote {
	position: relative;
	margin: 0 0 1.15rem;
	font-family: var(--rf-font-display);
	font-size: clamp(1.05rem, 1.8vw, 1.28rem);
	font-weight: 500;
	font-style: italic;
	line-height: 1.45;
	letter-spacing: 0.01em;
	color: #1a1d21;
}
.rf-reviews__featured-author {
	display: grid;
	gap: 0.2rem;
	padding-top: 0.85rem;
	border-top: 1px solid rgba(17, 17, 17, 0.1);
}
.rf-reviews__featured-name {
	font-family: var(--rf-font-display);
	font-size: 0.92rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #111;
}
.rf-reviews__featured-meta {
	font-size: 0.86rem;
	color: #5c6570;
}

/* Soft quote cards in carousel */
.rf-section--reviews .rf-carousel__track {
	padding: 0.35rem 0.15rem 1rem;
}
.rf-section--reviews .rf-carousel__slide {
	flex: 0 0 calc((100% - 2 * clamp(1rem, 2vw, 1.35rem)) / 3);
}
.rf-section--reviews .rf-review {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	height: 100%;
	min-height: 14.5rem;
	padding: 1.35rem 1.25rem 1.2rem;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(17, 17, 17, 0.08);
	border-radius: 0;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 12px 28px rgba(17, 17, 17, 0.04);
	transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.rf-section--reviews .rf-review:hover {
	background: rgba(255, 255, 255, 0.92);
	border-color: rgba(17, 17, 17, 0.22);
	transform: translateY(-3px);
}
.rf-review__mark {
	position: absolute;
	top: 0.1rem;
	right: 0.75rem;
	font-family: var(--rf-font-display);
	font-size: 3.4rem;
	font-weight: 700;
	line-height: 0.75;
	color: rgba(17, 17, 17, 0.07);
	pointer-events: none;
	user-select: none;
}
.rf-review__stars {
	display: inline-flex;
	gap: 2px;
	color: #111;
}
.rf-review__stars .rf-icon {
	width: 0.95em;
	height: 0.95em;
	fill: currentColor;
	stroke: none;
}
.rf-review__quote {
	position: relative;
	margin: 0;
	flex: 1 1 auto;
	font-size: 0.96rem;
	font-style: italic;
	line-height: 1.55;
	color: #3a4149;
}
.rf-review__author {
	display: grid;
	gap: 0.15rem;
	margin-top: auto;
	padding-top: 0.85rem;
	border-top: 1px solid rgba(17, 17, 17, 0.1);
}
.rf-review__name {
	font-family: var(--rf-font-display);
	font-size: 0.88rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #111;
	line-height: 1.2;
}
.rf-review__loc {
	font-size: 0.84rem;
	color: #5c6570;
}
.rf-section--reviews .rf-carousel__nav {
	background: #111;
	border-color: #111;
	color: #fff;
}
.rf-section--reviews .rf-carousel__nav:hover {
	background: #fff;
	color: #111;
}

@media (max-width: 900px) {
	.rf-reviews__layout {
		grid-template-columns: 1fr;
		align-items: start;
	}
	.rf-reviews__intro { max-width: 36rem; }
	.rf-section--reviews .rf-carousel__slide {
		flex-basis: calc((100% - clamp(1rem, 2vw, 1.35rem)) / 2);
	}
}
@media (max-width: 640px) {
	.rf-reviews__bg {
		background:
			linear-gradient(
				180deg,
				rgba(255, 255, 255, 0.99) 0%,
				rgba(255, 255, 255, 0.97) 42%,
				rgba(255, 255, 255, 0.88) 62%,
				rgba(255, 255, 255, 0.62) 100%
			),
			url(../images/reviews-bg.jpg) 70% center / cover no-repeat;
	}
	.rf-section--reviews .rf-carousel__slide { flex-basis: 88%; }
}

/* =========================================================================
   34i. Parts & warranty (asymmetric promises + dark terms panel)
   ========================================================================= */
.rf-section--parts {
	background: #fff;
}
.rf-parts__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
	gap: clamp(2rem, 4.5vw, 3.5rem);
	align-items: start;
}
.rf-parts__intro {
	max-width: 36rem;
}
.rf-parts__intro .rf-heading__eyebrow {
	background: #111;
	border-color: #111;
	color: #fff;
	font-style: normal;
	letter-spacing: 0.1em;
}
.rf-parts__title {
	display: flex;
	flex-direction: column;
	gap: 0.06em;
	margin: 0.85rem 0 0.9rem;
	font-family: var(--rf-font-display);
	font-size: clamp(1.55rem, 3.2vw, 2.2rem);
	font-weight: 700;
	font-style: italic;
	line-height: 1.12;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111;
}
.rf-parts__title-line { display: block; }
.rf-parts__lead {
	margin: 0;
	max-width: 36em;
	font-size: 1.02rem;
	line-height: 1.55;
	color: #6b7280;
}
.rf-parts__rule {
	display: block;
	width: 140px;
	height: 3px;
	margin: 1.15rem 0 1.6rem;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 45%, rgba(17, 17, 17, 0) 100%);
}

.rf-parts__promises {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
}
.rf-parts__promise {
	display: grid;
	grid-template-columns: 2.5rem 1.5rem 1fr;
	gap: 0.85rem;
	align-items: start;
	padding: 1.05rem 0;
	border-top: 1px solid rgba(17, 17, 17, 0.1);
}
.rf-parts__promise:last-child {
	border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}
.rf-parts__promise-num {
	font-family: var(--rf-font-display);
	font-size: 1.15rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.04em;
	line-height: 1.2;
	color: #111;
}
.rf-parts__promise-ico {
	display: grid;
	place-items: center;
	margin-top: 0.1rem;
	color: #111;
}
.rf-parts__promise-ico .rf-icon {
	width: 1.15rem;
	height: 1.15rem;
}
.rf-parts__promise-body {
	display: grid;
	gap: 0.25rem;
	min-width: 0;
}
.rf-parts__promise-body strong {
	font-family: var(--rf-font-display);
	font-size: 0.98rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #111;
	line-height: 1.25;
}
.rf-parts__promise-body span {
	font-size: 0.94rem;
	line-height: 1.5;
	color: #6b7280;
}

/* Dark warranty panel */
.rf-parts__panel {
	background: #111;
	color: #fff;
	padding: clamp(1.5rem, 3vw, 2rem) clamp(1.35rem, 2.8vw, 1.85rem);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}
.rf-parts__panel-head {
	margin-bottom: 0.35rem;
	padding-bottom: 1.1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.rf-parts__panel-eyebrow {
	display: inline-block;
	margin-bottom: 0.55rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}
.rf-parts__panel-title {
	margin: 0;
	font-family: var(--rf-font-display);
	font-size: clamp(1.15rem, 2vw, 1.4rem);
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	line-height: 1.2;
	color: #fff;
}
.rf-parts__terms {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
}
.rf-parts__term {
	display: grid;
	grid-template-columns: 2.4rem 1fr;
	gap: 0.75rem;
	padding: 1.05rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.rf-parts__term:last-child { border-bottom: 0; }
.rf-parts__term-num {
	font-family: var(--rf-font-display);
	font-size: 1.05rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.04em;
	line-height: 1.3;
	color: rgba(255, 255, 255, 0.45);
}
.rf-parts__term-body {
	display: grid;
	gap: 0.3rem;
	min-width: 0;
}
.rf-parts__term-body strong {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-family: var(--rf-font-display);
	font-size: 0.92rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.25;
}
.rf-parts__term-ico {
	display: inline-grid;
	place-items: center;
	color: rgba(255, 255, 255, 0.7);
}
.rf-parts__term-ico .rf-icon {
	width: 1rem;
	height: 1rem;
}
.rf-parts__term-body > span {
	font-size: 0.92rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.62);
}
.rf-parts__panel-foot {
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.rf-parts__panel-foot .rf-btn {
	justify-content: center;
}

@media (max-width: 900px) {
	.rf-parts__layout {
		grid-template-columns: 1fr;
	}
	.rf-parts__intro { max-width: none; }
}

/* =========================================================================
   34j. Resources (vertical numbered tiles + expert strip)
   ========================================================================= */
.rf-section--resources.rf-section--process {
	background: #f5f6f7;
}
.rf-section--resources .rf-resources-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.rf-section--resources .rf-pcard.rf-resource {
	background: #fff;
	border-color: #e8ebef;
}
.rf-section--resources .rf-pcard.rf-resource .rf-pcard__ico {
	background: #f5f6f7;
}
.rf-section--resources .rf-pcard.rf-resource:hover {
	background: #111;
	border-color: #111;
}
.rf-section--resources .rf-pcard.rf-resource:hover .rf-pcard__ico {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}
.rf-section--resources .rf-pcard.rf-resource:hover .rf-pcard__num,
.rf-section--resources .rf-pcard.rf-resource:hover .rf-pcard__title,
.rf-section--resources .rf-pcard.rf-resource:hover .rf-pcard__text {
	color: #fff;
}
.rf-section--resources .rf-pcard.rf-resource:hover .rf-pcard__rule {
	background: linear-gradient(90deg, #fff 0%, #fff 40%, rgba(255, 255, 255, 0) 100%);
}
.rf-resource {
	min-height: 17rem;
}
.rf-resource__link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 0.4rem;
	margin-top: auto;
	padding-top: 0.85rem;
	border-top: 1px solid #e5e7eb;
	width: 100%;
	font-size: 0.8rem;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #111;
	text-decoration: none;
}
.rf-resource__link .rf-icon {
	width: 0.95em;
	height: 0.95em;
	transition: transform 0.18s ease;
}
.rf-pcard.rf-resource:hover .rf-resource__link {
	color: #fff;
	border-top-color: rgba(255, 255, 255, 0.2);
}
.rf-pcard.rf-resource:hover .rf-resource__link .rf-icon {
	transform: translateX(3px);
	color: #fff;
}
.rf-section--resources .rf-pcard.rf-resource:hover .rf-pcard__ico .rf-icon {
	color: #fff;
}

.rf-resources__expert {
	margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
}
.rf-section--resources .rf-expert {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.1rem;
	align-items: start;
	padding: 1.35rem 1.4rem;
	background: #fff;
	border: 1px solid #e8ebef;
}
.rf-section--resources .rf-expert__avatar {
	width: 64px;
	height: 64px;
	border-radius: 0;
	background: #111;
	color: #fff;
	border: 1px solid #111;
}
.rf-section--resources .rf-expert__avatar img {
	border-radius: 0;
}
.rf-section--resources .rf-expert__role {
	color: #6b7280;
	font-family: var(--rf-font-display);
	font-style: italic;
	letter-spacing: 0.08em;
}
.rf-section--resources .rf-expert__name,
.rf-section--resources .rf-expert__name a {
	font-family: var(--rf-font-display);
	font-style: italic;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #111;
}
.rf-section--resources .rf-expert__text {
	color: #6b7280;
}
.rf-section--resources .rf-link-more {
	color: #111;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-size: 0.8rem;
}

@media (max-width: 900px) {
	.rf-section--resources .rf-resources-grid {
		grid-template-columns: 1fr;
	}
	.rf-resource { min-height: 0; }
}

/* =========================================================================
   34k. Blog (home teasers — white section, gray cards, B&W thumbs)
   ========================================================================= */
.rf-section--blog {
	background: #fff;
}
.rf-posts--home {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}
.rf-section--blog .rf-post-card {
	border-radius: 0;
	border-color: #e8ebef;
	box-shadow: none;
	background: #f5f6f7;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.rf-section--blog .rf-post-card:hover {
	background: #111;
	border-color: #111;
	box-shadow: none;
	transform: translateY(-2px);
}
.rf-section--blog .rf-post-card__thumb {
	aspect-ratio: 16 / 10;
	background: #111;
}
.rf-section--blog .rf-post-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1);
	transition: transform 0.35s ease, opacity 0.2s ease;
}
.rf-section--blog .rf-post-card:hover .rf-post-card__thumb img {
	transform: scale(1.03);
	opacity: 0.92;
}
.rf-section--blog .rf-post-card__body {
	padding: 1.25rem 1.25rem 1.2rem;
	gap: 0.55rem;
}
.rf-section--blog .rf-post-card__meta {
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #6b7280;
}
.rf-section--blog .rf-post-card__meta a {
	color: inherit;
	text-decoration: none;
}
.rf-section--blog .rf-post-card__title {
	font-family: var(--rf-font-display);
	font-size: clamp(1rem, 1.4vw, 1.12rem);
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: 1.25;
}
.rf-section--blog .rf-post-card__title a {
	color: #111;
	text-decoration: none;
}
.rf-section--blog .rf-post-card__excerpt {
	font-size: 0.92rem;
	line-height: 1.5;
	color: #6b7280;
}
.rf-section--blog .rf-post-card__foot {
	padding-top: 0.75rem;
	border-top: 1px solid #e5e7eb;
}
.rf-section--blog .rf-link-more {
	color: #111;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.rf-section--blog .rf-post-card:hover .rf-post-card__meta,
.rf-section--blog .rf-post-card:hover .rf-post-card__title a,
.rf-section--blog .rf-post-card:hover .rf-post-card__excerpt,
.rf-section--blog .rf-post-card:hover .rf-link-more {
	color: #fff;
}
.rf-section--blog .rf-post-card:hover .rf-post-card__foot {
	border-top-color: rgba(255, 255, 255, 0.2);
}
.rf-blog__more {
	margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
	text-align: center;
}
.rf-section--blog .rf-btn--secondary {
	border-color: #111;
	color: #111;
	background: #fff;
}
.rf-section--blog .rf-btn--secondary:hover {
	background: #111;
	color: #fff;
}

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

/* =========================================================================
   34k1. Blog archive (dark hero + article grid)
   ========================================================================= */
.rf-hero--blog-archive {
	background-color: #0a0a0a;
	background-image:
		linear-gradient(90deg, #0a0a0a 0%, #0a0a0a 28%, rgba(10, 10, 10, 0.92) 40%, rgba(10, 10, 10, 0.55) 54%, rgba(10, 10, 10, 0.18) 68%, rgba(10, 10, 10, 0) 80%),
		var(--rf-blog-archive-hero);
	background-position: left top, right center;
	background-size: auto, cover;
	background-repeat: no-repeat;
}
.rf-hero--blog-archive .rf-hero__inner--archive {
	min-height: clamp(380px, 38vw, 520px);
	padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
}
.rf-hero--blog-archive .rf-breadcrumbs {
	margin-bottom: 1.15rem;
}
.rf-hero--blog-archive .rf-breadcrumbs__link {
	color: rgba(255, 255, 255, 0.55);
}
.rf-hero--blog-archive .rf-breadcrumbs__link:hover {
	color: #fff;
}
.rf-hero--blog-archive .rf-breadcrumbs__sep {
	color: rgba(255, 255, 255, 0.28);
}
.rf-hero--blog-archive .rf-breadcrumbs__current {
	color: rgba(255, 255, 255, 0.9);
}

.rf-section--blog-archive {
	background: #f5f6f7;
}
.rf-section--blog-archive .rf-blog-filter {
	margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.rf-section--blog-archive .rf-post-card {
	background: #fff;
	border-color: #e8ebef;
	border-radius: 0;
	box-shadow: none;
}
.rf-section--blog-archive .rf-post-card:hover {
	transform: translateY(-2px);
	box-shadow: none;
	border-color: #111;
}
.rf-section--blog-archive .rf-pagination {
	margin-top: clamp(2rem, 4vw, 2.75rem);
}

/* =========================================================================
   34k2. Blog single (dark hero + article layout)
   ========================================================================= */
.rf-hero--blog {
	background-color: #0a0a0a;
	background-image: var(--rf-blog-hero);
	background-position: 68% center;
	background-size: cover;
	background-repeat: no-repeat;
}
.rf-hero--blog .rf-hero__inner--archive {
	min-height: clamp(380px, 38vw, 520px);
	padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
}
.rf-hero--blog .rf-breadcrumbs {
	margin-bottom: 1.15rem;
}
.rf-hero--blog .rf-breadcrumbs__link {
	color: rgba(255, 255, 255, 0.55);
}
.rf-hero--blog .rf-breadcrumbs__link:hover {
	color: #fff;
}
.rf-hero--blog .rf-breadcrumbs__sep {
	color: rgba(255, 255, 255, 0.28);
}
.rf-hero--blog .rf-breadcrumbs__current {
	color: rgba(255, 255, 255, 0.9);
}
.rf-post-page {
	background: #fff;
}
.rf-post-page .rf-post-overview {
	padding-bottom: 0;
	border-bottom: 1px solid #e8ebef;
	margin-bottom: 0.5rem;
}
.rf-post-page .rf-byline {
	margin: 0 0 1.5rem;
	padding-bottom: 1.25rem;
}
.rf-post-page .rf-prose {
	padding-top: 0.5rem;
}
.rf-post-page .rf-proscons__col {
	border-radius: 0;
	box-shadow: none;
}
.rf-post-page .rf-table-wrap {
	border: 1px solid #e8ebef;
}
/* =========================================================================
   34k3. Location single (dark hero + overview)
   ========================================================================= */
.rf-hero--dark.rf-hero--location {
	background-color: #0a0a0a;
	background-image: var(--rf-location-hero);
	background-position: 72% center;
	background-size: cover;
	background-repeat: no-repeat;
}
.rf-hero--location .rf-hero__inner--archive {
	min-height: clamp(380px, 38vw, 520px);
	padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
}
.rf-hero--location .rf-breadcrumbs {
	margin-bottom: 1.15rem;
}
.rf-hero--location .rf-breadcrumbs__link {
	color: rgba(255, 255, 255, 0.55);
}
.rf-hero--location .rf-breadcrumbs__link:hover {
	color: #fff;
}
.rf-hero--location .rf-breadcrumbs__sep {
	color: rgba(255, 255, 255, 0.28);
}
.rf-hero--location .rf-breadcrumbs__current {
	color: rgba(255, 255, 255, 0.9);
}
.rf-hero__note {
	margin: 0 0 1.25rem;
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}
.rf-loc-overview {
	background: #fff;
}
.rf-loc-overview__body {
	max-width: 46rem;
	margin: 0 auto;
	color: #6b7280;
	font-size: 1.02rem;
	line-height: 1.6;
}
.rf-loc-overview__body p {
	margin: 0 0 1rem;
}
.rf-loc-overview__body p:last-child {
	margin-bottom: 0;
}
/* =========================================================================
   34l. Contact / booking (asymmetric intro + white form panel)
   ========================================================================= */
.rf-section--contact {
	background: #fff;
}
.rf-contact__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 1.05fr);
	gap: clamp(2rem, 4.5vw, 3.5rem);
	align-items: start;
}
.rf-contact__intro {
	max-width: 34rem;
}
.rf-contact__intro .rf-heading__eyebrow {
	background: #111;
	border-color: #111;
	color: #fff;
	font-style: normal;
	letter-spacing: 0.1em;
}
.rf-contact__title {
	margin: 0.85rem 0 0;
	font-family: var(--rf-font-display);
	font-size: clamp(1.5rem, 3.1vw, 2.15rem);
	font-weight: 700;
	font-style: italic;
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111;
}
.rf-contact__rule {
	display: block;
	width: 140px;
	height: 3px;
	margin: 1rem 0 0.95rem;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 45%, rgba(17, 17, 17, 0) 100%);
}
.rf-contact__lead {
	margin: 0 0 1.6rem;
	max-width: 36em;
	font-size: 1.02rem;
	line-height: 1.55;
	color: #6b7280;
}

.rf-contact__nap .rf-nap {
	gap: 0;
}
.rf-contact__nap .rf-nap__item {
	display: grid;
	grid-template-columns: 2.5rem 1fr;
	gap: 0.85rem;
	align-items: start;
	padding: 1rem 0;
	border-top: 1px solid rgba(17, 17, 17, 0.1);
}
.rf-contact__nap .rf-nap__item:last-child {
	border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}
.rf-contact__nap .rf-nap__icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0;
	background: #111;
	color: #fff;
	box-shadow: none;
}
.rf-contact__nap .rf-nap__icon .rf-icon {
	width: 1.1rem;
	height: 1.1rem;
}
.rf-contact__nap .rf-nap__label {
	display: block;
	margin-bottom: 0.15rem;
	font-family: var(--rf-font-display);
	font-size: 0.72rem;
	font-style: italic;
	letter-spacing: 0.08em;
	color: #6b7280;
}
.rf-contact__nap .rf-nap__value {
	font-family: var(--rf-font-display);
	font-size: 0.95rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111;
	line-height: 1.35;
}
.rf-contact__nap .rf-nap__value a {
	color: #111;
	text-decoration: none;
}
.rf-contact__nap .rf-nap__value a:hover {
	opacity: 0.7;
}

.rf-contact__panel {
	background: #f5f6f7;
	border: 1px solid #e8ebef;
	border-radius: 0;
	box-shadow: none;
	padding: clamp(1.5rem, 3vw, 2rem) clamp(1.35rem, 2.8vw, 1.85rem);
	position: sticky;
	top: calc(var(--rf-header-h, 72px) + 16px);
}
.rf-contact__panel-head {
	margin-bottom: 1.25rem;
	padding-bottom: 1.1rem;
	border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}
.rf-contact__panel-eyebrow {
	display: inline-block;
	margin-bottom: 0.5rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #6b7280;
}
.rf-contact__panel-title {
	margin: 0 0 0.45rem;
	font-family: var(--rf-font-display);
	font-size: clamp(1.15rem, 2vw, 1.35rem);
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	line-height: 1.2;
	color: #111;
}
.rf-contact__panel-sub {
	margin: 0;
	font-size: 0.9rem;
	color: #6b7280;
}
.rf-section--contact .rf-field label {
	font-family: var(--rf-font-display);
	font-size: 0.78rem;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #111;
}
.rf-section--contact .rf-field .rf-req {
	color: #111;
}
.rf-section--contact .rf-field input,
.rf-section--contact .rf-field select,
.rf-section--contact .rf-field textarea {
	border-radius: 0;
	border-color: #d1d5db;
	background: #f5f6f7;
	box-shadow: none;
}
.rf-section--contact .rf-field input:focus,
.rf-section--contact .rf-field select:focus,
.rf-section--contact .rf-field textarea:focus {
	border-color: #111;
	outline: none;
	box-shadow: 0 0 0 1px #111;
}
.rf-section--contact .rf-btn--primary {
	border-radius: 0;
	background: #111;
	border-color: #111;
}
.rf-section--contact .rf-btn--primary:hover {
	background: #fff;
	color: #111;
}

@media (max-width: 960px) {
	.rf-contact__layout {
		grid-template-columns: 1fr;
	}
	.rf-contact__intro { max-width: none; }
	.rf-contact__panel { position: static; }
}

/* =========================================================================
   35. Booking modal + cookie consent
   ========================================================================= */
.rf-modal {
	position: fixed;
	inset: 0;
	z-index: 240;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	visibility: hidden;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.22s ease, visibility 0.22s ease;
}
.rf-modal.is-open {
	visibility: visible;
	pointer-events: auto;
	opacity: 1;
}
.rf-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(18, 24, 32, 0.55);
	backdrop-filter: blur(3px);
}
.rf-modal__panel {
	position: relative;
	z-index: 1;
	width: min(560px, 100%);
	max-height: min(92vh, 860px);
	overflow: auto;
	background: #fff;
	border-radius: calc(var(--rf-radius-lg) + 4px);
	box-shadow: 0 24px 64px rgba(15, 22, 30, 0.28);
	padding: clamp(1.35rem, 3vw, 2rem);
	transform: translateY(14px) scale(0.98);
	transition: transform 0.24s ease;
}
.rf-modal.is-open .rf-modal__panel { transform: none; }
.rf-modal__close {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border: 1px solid var(--rf-line);
	border-radius: 50%;
	background: #fff;
	color: var(--rf-charcoal);
	cursor: pointer;
	transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.rf-modal__close:hover {
	background: var(--rf-primary);
	border-color: var(--rf-primary);
	color: #fff;
}
.rf-modal__close .rf-icon { width: 18px; height: 18px; }
.rf-modal__head { padding-right: 2.5rem; margin-bottom: 1.25rem; }
.rf-modal__title {
	margin: 0.55rem 0 0.55rem;
	font-size: clamp(1.45rem, 3vw, 1.85rem);
	letter-spacing: -0.02em;
}
.rf-modal__lead {
	margin: 0;
	color: var(--rf-muted);
	font-size: 0.98rem;
	line-height: 1.55;
}
.rf-modal__phone {
	margin: 0.85rem 0 0;
	font-size: 0.92rem;
	color: var(--rf-muted);
}
.rf-modal__phone a {
	color: var(--rf-primary);
	font-weight: 700;
	margin-left: 0.25rem;
}
.rf-modal__body .rf-form__note { margin-bottom: 0; }

.rf-modal__panel--booking {
	width: min(640px, 100%);
	max-height: min(94vh, 920px);
}
.rf-booking-embed {
	width: 100%;
}
.rf-booking-embed__title {
	margin: 0 0 0.85rem;
	font-size: 1.05rem;
}
.rf-booking-embed__frame {
	display: block;
	width: 100%;
	min-height: 600px;
	height: 600px;
	border: 0;
	background: #fff;
}

/* Cookie banner */
.rf-cookie {
	position: fixed;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 230;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.25s ease, transform 0.25s ease;
	pointer-events: none;
}
.rf-cookie.is-visible {
	opacity: 1;
	transform: none;
	pointer-events: auto;
}
.rf-cookie__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	flex-wrap: wrap;
	max-width: 920px;
	margin-inline: auto;
	padding: 1rem 1.15rem;
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius-lg);
	box-shadow: 0 16px 40px rgba(15, 22, 30, 0.16);
}
.rf-cookie__copy { flex: 1 1 240px; min-width: 0; }
.rf-cookie__title {
	display: block;
	font-size: 0.98rem;
	color: var(--rf-charcoal);
	margin-bottom: 0.25rem;
}
.rf-cookie__text {
	margin: 0;
	color: var(--rf-muted);
	font-size: 0.9rem;
	line-height: 1.5;
}
.rf-cookie__text a {
	color: var(--rf-primary);
	font-weight: 600;
	white-space: nowrap;
}
.rf-cookie__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	flex: 0 0 auto;
}
.rf-cookie__btn {
	padding: 0.7rem 1.1rem;
	font-size: 0.92rem;
}

@media (max-width: 640px) {
	.rf-modal { padding: 0.65rem; align-items: flex-end; }
	.rf-modal__panel {
		width: 100%;
		max-height: min(94vh, 920px);
		border-radius: var(--rf-radius-lg) var(--rf-radius-lg) 0 0;
		padding: 1.25rem 1rem 1.35rem;
	}
	body.rf-has-sticky .rf-cookie {
		bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
	}
	.rf-cookie {
		left: 0.65rem;
		right: 0.65rem;
		bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
	}
	.rf-cookie__inner {
		padding: 0.95rem 1rem;
		flex-direction: column;
		align-items: stretch;
	}
	.rf-cookie__actions { width: 100%; }
	.rf-cookie__btn { flex: 1 1 auto; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
	.rf-modal,
	.rf-modal__panel,
	.rf-cookie { transition: none; }
}

/* =========================================================================
   36. Error-code single: TOC + content grid
   ========================================================================= */
.rf-similar__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 0.75rem 1.25rem;
	margin-bottom: 0.25rem;
}
.rf-similar__head .rf-heading { margin-bottom: 0; }
.rf-posts--similar {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}
.rf-similar__foot {
	margin: 1.5rem 0 0;
	text-align: center;
}

@media (max-width: 900px) {
	.rf-posts--similar { grid-template-columns: 1fr; }
}
.rf-ec-page__grid {
	display: grid;
	grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
	gap: clamp(1.75rem, 4vw, 3.25rem);
	align-items: start;
}
.rf-ec-page__main {
	min-width: 0;
	display: grid;
	gap: clamp(1.75rem, 3vw, 2.5rem);
}
.rf-ec-page__main .rf-prose { max-width: none; }
.rf-ec-block {
	scroll-margin-top: calc(var(--rf-header-h) + 1rem);
}
.rf-ec-block .rf-heading { margin-bottom: 1.1rem; }
.rf-ec-block .rf-factgrid,
.rf-ec-block .rf-ec-quick,
.rf-ec-block .rf-ec-disclaimer,
.rf-ec-block .rf-ec-single-status { margin-top: 1rem; }
.rf-ec-related-grid { margin-bottom: 1.5rem; }
.rf-ec-block--cta { margin-block: 0.25rem; }

/* Sticky table of contents */
.rf-toc {
	position: sticky;
	top: calc(var(--rf-header-h) + 1rem);
	padding: 1.15rem 1.2rem;
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius-lg);
	box-shadow: var(--rf-shadow-xs);
}
.rf-toc__title {
	margin: 0 0 0.85rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--rf-muted);
}
.rf-toc__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.15rem;
}
.rf-toc__link {
	display: block;
	padding: 0.45rem 0.6rem;
	border-radius: var(--rf-radius-sm);
	color: var(--rf-ink-2);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	border-left: 2px solid transparent;
}
.rf-toc__link:hover { color: var(--rf-primary); background: var(--rf-primary-soft); }
.rf-toc__link.is-active {
	color: var(--rf-primary);
	background: var(--rf-primary-soft);
	border-left-color: var(--rf-primary);
}
.rf-toc__cta {
	display: grid;
	gap: 0.55rem;
	margin-top: 1.15rem;
	padding-top: 1.1rem;
	border-top: 1px solid var(--rf-line);
}

@media (max-width: 900px) {
	.rf-ec-page__grid { grid-template-columns: 1fr; gap: 1.5rem; }
	.rf-toc {
		position: static;
		padding: 1rem;
	}
	.rf-toc__list {
		display: flex;
		flex-wrap: wrap;
		gap: 0.4rem;
	}
	.rf-toc__link {
		border-left: 0;
		border: 1px solid var(--rf-line);
		border-radius: 999px;
		padding: 0.4rem 0.8rem;
		font-size: 0.85rem;
	}
	.rf-toc__link.is-active {
		border-color: var(--rf-primary);
		background: var(--rf-primary);
		color: #fff;
	}
	.rf-toc__cta {
		grid-template-columns: 1fr 1fr;
		align-items: stretch;
	}
}
@media (max-width: 560px) {
	.rf-toc__cta { grid-template-columns: 1fr; }
	.rf-ec-page__main .rf-checklist--cols-2 { grid-template-columns: 1fr; }
}

/* =========================================================================
   About page
   ========================================================================= */
.rf-hero--about {
	background-color: #0a0a0a;
	background-image:
		linear-gradient(90deg, #0a0a0a 0%, #0a0a0a 28%, rgba(10, 10, 10, 0.92) 40%, rgba(10, 10, 10, 0.55) 54%, rgba(10, 10, 10, 0.18) 68%, rgba(10, 10, 10, 0) 80%),
		var(--rf-about-hero);
	background-position: left top, right center;
	background-size: auto, cover;
	background-repeat: no-repeat;
}
.rf-hero--about .rf-hero__inner--archive {
	min-height: clamp(380px, 38vw, 520px);
	padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
}
.rf-hero--about .rf-breadcrumbs {
	margin-bottom: 1.15rem;
}
.rf-hero--about .rf-breadcrumbs__link {
	color: rgba(255, 255, 255, 0.55);
}
.rf-hero--about .rf-breadcrumbs__link:hover {
	color: #fff;
}
.rf-hero--about .rf-breadcrumbs__sep {
	color: rgba(255, 255, 255, 0.28);
}
.rf-hero--about .rf-breadcrumbs__current {
	color: rgba(255, 255, 255, 0.9);
}

.rf-about-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: center;
}
.rf-about-intro__title {
	margin: 0.35rem 0 1rem;
	font-size: clamp(1.7rem, 3vw, 2.35rem);
}
.rf-about-intro__copy p {
	color: var(--rf-ink-2);
	font-size: 1.05rem;
	max-width: 38rem;
}
.rf-about-intro__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.75rem;
}
.rf-about-photo {
	margin: 0;
	position: relative;
}
.rf-about-photo img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: var(--rf-radius-lg);
	box-shadow: var(--rf-shadow-lg);
	background: var(--rf-surface-2);
}
.rf-about-photo__placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	aspect-ratio: 4 / 5;
	border-radius: var(--rf-radius-lg);
	border: 2px dashed color-mix(in srgb, var(--rf-primary) 28%, var(--rf-line));
	background:
		linear-gradient(160deg, color-mix(in srgb, var(--rf-accent-soft) 70%, #fff), #fff);
	color: var(--rf-muted);
	text-align: center;
	padding: 2rem;
}
.rf-about-photo__placeholder .rf-icon {
	width: 48px;
	height: 48px;
	color: var(--rf-accent);
}
.rf-about-photo__placeholder span {
	font-weight: 700;
	color: var(--rf-charcoal);
	font-size: 1.05rem;
}
.rf-about-photo__placeholder small {
	font-size: 0.85rem;
}
.rf-about-photo__hint {
	margin: 0.75rem 0 0;
	font-size: 0.82rem;
	color: var(--rf-muted);
	text-align: center;
}
.rf-about-start__cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-top: clamp(1.5rem, 3vw, 2rem);
}

@media (max-width: 900px) {
	.rf-about-intro__grid {
		grid-template-columns: 1fr;
	}
	.rf-about-photo {
		order: -1;
		max-width: 420px;
		margin-inline: auto;
		width: 100%;
	}
}

/* =========================================================================
   Location single (themed sections + numbered tiles)
   ========================================================================= */
.rf-section--loc.rf-section--alt {
	background: #f5f6f7;
}
.rf-loc-section__heading {
	max-width: 40rem;
	margin: 0 auto clamp(2rem, 4vw, 2.75rem);
	text-align: center;
}
.rf-loc-section__heading .rf-heading__eyebrow {
	display: inline-flex;
	background: #111;
	border-color: #111;
	color: #fff;
	font-style: normal;
	letter-spacing: 0.1em;
}
.rf-loc-section__heading .rf-heading__eyebrow::before {
	display: none;
}
.rf-loc-section__heading .rf-heading__title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.06em;
	width: 100%;
	margin: 0.85rem 0 0;
	text-align: center;
	font-family: var(--rf-font-display);
	font-size: clamp(1.55rem, 3.2vw, 2.15rem);
	font-weight: 700;
	font-style: italic;
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #111;
}
.rf-loc-section__heading .rf-heading__title-line {
	display: block;
}
.rf-loc-section__heading .rf-heading__text {
	margin: 0.85rem auto 0;
	max-width: 36em;
	color: #6b7280;
	font-size: 1.02rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.55;
}
.rf-loc-section__rule {
	display: block;
	width: 120px;
	height: 3px;
	margin: 1rem auto 0;
	border-radius: 2px;
	background: linear-gradient(90deg, #111 0%, #111 40%, rgba(17, 17, 17, 0) 100%);
}
.rf-loc-section__heading:not(.rf-heading--center) {
	max-width: 34rem;
	margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
	text-align: left;
}
.rf-loc-section__heading:not(.rf-heading--center) .rf-heading__title {
	align-items: flex-start;
	text-align: left;
}
.rf-loc-section__heading:not(.rf-heading--center) .rf-heading__text {
	margin-left: 0;
	margin-right: 0;
}
.rf-loc-section__heading:not(.rf-heading--center) .rf-loc-section__rule {
	width: 140px;
	margin: 1rem 0 0;
}
.rf-section--loc .rf-pcard {
	background: #fff;
	border-color: #e8ebef;
}
.rf-section--loc .rf-pcard:hover {
	background: #111;
	border-color: #111;
}
.rf-section--loc .rf-pcard__ico {
	background: #f5f6f7;
}
.rf-section--loc .rf-pcard:hover .rf-pcard__ico {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
}
.rf-section--loc .rf-pcard:hover .rf-pcard__ico .rf-icon {
	color: #fff;
}
.rf-section--loc .rf-pcard.rf-area-card:hover .rf-pcard__ico {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
}
.rf-section--loc .rf-pcard.rf-area-card:hover .rf-pcard__ico .rf-icon,
.rf-section--loc .rf-pcard.rf-area-card:hover .rf-area-card__link .rf-icon {
	color: #fff;
}
.rf-section--loc .rf-pcard:hover .rf-pcard__num,
.rf-section--loc .rf-pcard:hover .rf-pcard__title,
.rf-section--loc .rf-pcard:hover .rf-pcard__text,
.rf-section--loc .rf-pcard:hover .rf-pcard__text--lead {
	color: #fff;
}
.rf-section--loc .rf-pcard:hover .rf-pcard__rule {
	background: linear-gradient(90deg, #fff 0%, #fff 40%, rgba(255, 255, 255, 0) 100%);
}
.rf-section--loc .rf-pcard__text--lead {
	margin-top: 0.15rem;
	font-size: 0.95rem;
	line-height: 1.55;
}
.rf-loc-coverage {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 2.5vw, 1.5rem);
}
.rf-loc-coverage-section .rf-pcard {
	background: #f7f8f9;
	border-color: #e8ebef;
}
.rf-loc-coverage-section .rf-pcard__ico {
	background: #fff;
}
.rf-loc-process .rf-pcard {
	background: #f7f8f9;
	border-color: #e8ebef;
}
.rf-loc-process .rf-pcard__badge {
	background: #fff;
	box-shadow: inset 0 0 0 1px #e8ebef;
	color: #111;
}
.rf-loc-process .rf-pcard__ico {
	background: #fff;
}
.rf-section--alt.rf-loc-process .rf-pcard {
	background: #fff;
	border-color: #e8ebef;
}
.rf-section--alt.rf-loc-process .rf-pcard__ico {
	background: #f5f6f7;
}
.rf-section--alt.rf-loc-process .rf-pcard:hover {
	background: #111;
	border-color: #111;
	transform: translateY(-2px);
}
.rf-section--alt.rf-loc-process .rf-pcard:hover .rf-pcard__num,
.rf-section--alt.rf-loc-process .rf-pcard:hover .rf-pcard__title,
.rf-section--alt.rf-loc-process .rf-pcard:hover .rf-pcard__text {
	color: #fff;
}
.rf-section--alt.rf-loc-process .rf-pcard:hover .rf-pcard__rule {
	background: linear-gradient(90deg, #fff 0%, #fff 40%, rgba(255, 255, 255, 0) 100%);
}
.rf-section--alt.rf-loc-process .rf-pcard:hover .rf-pcard__ico {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
}
.rf-section--alt.rf-loc-process .rf-pcard:hover .rf-pcard__ico .rf-icon {
	color: #fff;
}
.rf-loc-coverage__panel {
	min-height: 0;
}
.rf-loc-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.75rem 1.25rem;
}
.rf-loc-checklist--cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.rf-loc-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	color: #6b7280;
	font-size: 0.92rem;
	line-height: 1.45;
}
.rf-loc-checklist .rf-icon {
	flex: none;
	width: 22px;
	height: 22px;
	margin-top: 1px;
	padding: 0;
	color: #111;
	background: #f5f6f7;
	border: 1px solid #d1d5db;
}
.rf-pcard:hover .rf-loc-checklist li,
.rf-pcard:hover .rf-loc-checklist li span,
.rf-pcard:hover .rf-loc-checklist .rf-icon {
	color: rgba(255, 255, 255, 0.88);
}
.rf-section--loc .rf-pcard:hover .rf-loc-checklist li,
.rf-section--loc .rf-pcard:hover .rf-loc-checklist li span,
.rf-section--loc .rf-pcard:hover .rf-loc-checklist .rf-icon {
	color: rgba(255, 255, 255, 0.88);
}
.rf-pcard:hover .rf-loc-checklist .rf-icon {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.35);
}
.rf-loc-contact__link {
	color: inherit;
	font-weight: 600;
	text-decoration: none;
}
.rf-pcard:hover .rf-loc-contact__link {
	color: #fff;
}
.rf-loc-requests .rf-process__grid,
.rf-loc-contact__grid {
	align-items: stretch;
}
.rf-loc-requests .rf-pcard,
.rf-loc-contact .rf-pcard {
	min-height: 13.5rem;
	height: auto;
	padding: 1.4rem 1.35rem 1.3rem;
}
.rf-loc-requests .rf-pcard .rf-pcard__top,
.rf-loc-contact .rf-pcard .rf-pcard__top {
	margin-bottom: 0.9rem;
}
.rf-loc-requests .rf-pcard .rf-pcard__text,
.rf-loc-contact .rf-pcard .rf-pcard__text {
	flex: 1 1 auto;
}
.rf-svc-problems__grid {
	align-items: start;
	gap: 1.15rem;
}
.rf-loc-requests .rf-svc-problem-card,
.rf-svc-problem-card {
	min-height: 0;
	height: auto;
	padding: 1.1rem 1.15rem 1.05rem;
}
.rf-loc-requests .rf-svc-problem-card .rf-pcard__top,
.rf-svc-problem-card .rf-pcard__top {
	margin-bottom: 0.65rem;
}
.rf-svc-problem-card .rf-pcard__num {
	font-size: 1.35rem;
}
.rf-svc-problem-card .rf-pcard__ico {
	background: #f5f6f7;
	width: 38px;
	height: 38px;
}
.rf-svc-problem-card .rf-pcard__ico .rf-icon {
	width: 20px;
	height: 20px;
}
.rf-svc-problem-card .rf-pcard__text--lead {
	font-size: 0.92rem;
	line-height: 1.4;
	letter-spacing: 0.01em;
	hyphens: auto;
}
.rf-section--loc.rf-loc-requests .rf-svc-problem-card:hover .rf-pcard__ico .rf-icon {
	color: #fff;
}
.rf-loc-contact__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.rf-section--loc-booking {
	background-image: none;
}
.rf-section--loc-booking .rf-loc-section__heading {
	max-width: 34rem;
	margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
}
.rf-section--loc-booking .rf-panel {
	border-radius: 0;
	border-color: #e8ebef;
	box-shadow: none;
}

/* Loc sections — card tiles contrast with section background. */
.rf-section--loc:not(.rf-section--alt).rf-loc-requests .rf-pcard,
.rf-section--loc:not(.rf-section--alt) .rf-ec-card__link,
.rf-section--loc:not(.rf-section--alt) .rf-grid .rf-card {
	background: #f7f8f9;
	border-color: #e8ebef;
}
.rf-section--loc:not(.rf-section--alt).rf-loc-requests .rf-pcard__ico {
	background: #fff;
}
.rf-section--loc:not(.rf-section--alt).rf-section--services-related .rf-service,
.rf-section--loc:not(.rf-section--alt).rf-section--models-related .rf-pcard.rf-model-card,
.rf-section--loc:not(.rf-section--alt).rf-section--error-codes-related .rf-service,
.rf-section--loc:not(.rf-section--alt).rf-section--appliances-related .rf-appliance {
	background: #f7f8f9;
	border-color: #e8ebef;
}
.rf-section--loc:not(.rf-section--alt).rf-section--services-related .rf-service__icon,
.rf-section--loc:not(.rf-section--alt).rf-section--models-related .rf-pcard.rf-model-card .rf-pcard__ico,
.rf-section--loc:not(.rf-section--alt).rf-section--error-codes-related .rf-service__icon,
.rf-section--loc:not(.rf-section--alt).rf-section--appliances-related .rf-appliance__icon {
	background: #fff;
}
.rf-section--loc.rf-section--alt.rf-loc-requests .rf-pcard,
.rf-section--loc.rf-section--alt .rf-ec-card__link,
.rf-section--loc.rf-section--alt .rf-grid .rf-card {
	background: #fff;
	border-color: #e8ebef;
}
.rf-section--loc.rf-section--alt.rf-loc-requests .rf-pcard__ico {
	background: #f5f6f7;
}
.rf-section--loc.rf-section--alt.rf-section--services-related .rf-service,
.rf-section--loc.rf-section--alt.rf-section--models-related .rf-pcard.rf-model-card,
.rf-section--loc.rf-section--alt.rf-section--appliances-related .rf-appliance {
	background: #fff;
	border-color: #e8ebef;
}
.rf-section--loc.rf-section--alt.rf-section--services-related .rf-service__icon,
.rf-section--loc.rf-section--alt.rf-section--models-related .rf-pcard.rf-model-card .rf-pcard__ico,
.rf-section--loc.rf-section--alt.rf-section--appliances-related .rf-appliance__icon {
	background: #f5f6f7;
}

/* Loc sections — hover invert (must beat stripe base rules above). */
.rf-section--loc:not(.rf-section--alt).rf-loc-requests .rf-pcard:hover,
.rf-section--loc.rf-section--alt.rf-loc-requests .rf-pcard:hover,
.rf-section--loc:not(.rf-section--alt).rf-section--services-related .rf-service:hover,
.rf-section--loc.rf-section--alt.rf-section--services-related .rf-service:hover,
.rf-section--loc:not(.rf-section--alt).rf-section--models-related .rf-pcard.rf-model-card:hover,
.rf-section--loc.rf-section--alt.rf-section--models-related .rf-pcard.rf-model-card:hover,
.rf-section--loc:not(.rf-section--alt).rf-section--error-codes-related .rf-service:hover,
.rf-section--loc.rf-section--alt.rf-section--error-codes-related .rf-service:hover,
.rf-section--loc:not(.rf-section--alt).rf-section--appliances-related .rf-appliance:hover,
.rf-section--loc.rf-section--alt.rf-section--appliances-related .rf-appliance:hover,
.rf-section--loc:not(.rf-section--alt) .rf-grid .rf-card.rf-card--hover:hover,
.rf-section--loc.rf-section--alt .rf-grid .rf-card.rf-card--hover:hover {
	background: #111;
	border-color: #111;
	transform: translateY(-2px);
	box-shadow: none;
}
.rf-section--loc .rf-grid .rf-card.rf-card--hover:hover::after {
	transform: scaleX(0);
}
.rf-section--loc:not(.rf-section--alt).rf-loc-requests .rf-pcard:hover .rf-pcard__num,
.rf-section--loc.rf-section--alt.rf-loc-requests .rf-pcard:hover .rf-pcard__num,
.rf-section--loc:not(.rf-section--alt).rf-loc-requests .rf-pcard:hover .rf-pcard__text,
.rf-section--loc.rf-section--alt.rf-loc-requests .rf-pcard:hover .rf-pcard__text,
.rf-section--loc:not(.rf-section--alt).rf-loc-requests .rf-pcard:hover .rf-pcard__text--lead,
.rf-section--loc.rf-section--alt.rf-loc-requests .rf-pcard:hover .rf-pcard__text--lead,
.rf-section--loc:not(.rf-section--alt).rf-section--services-related .rf-service:hover .rf-service__index,
.rf-section--loc.rf-section--alt.rf-section--services-related .rf-service:hover .rf-service__index,
.rf-section--loc:not(.rf-section--alt).rf-section--services-related .rf-service:hover .rf-service__title,
.rf-section--loc.rf-section--alt.rf-section--services-related .rf-service:hover .rf-service__title,
.rf-section--loc:not(.rf-section--alt).rf-section--services-related .rf-service:hover .rf-service__title a,
.rf-section--loc.rf-section--alt.rf-section--services-related .rf-service:hover .rf-service__title a,
.rf-section--loc:not(.rf-section--alt).rf-section--services-related .rf-service:hover .rf-service__text,
.rf-section--loc.rf-section--alt.rf-section--services-related .rf-service:hover .rf-service__text,
.rf-section--loc:not(.rf-section--alt).rf-section--services-related .rf-service:hover .rf-service__link,
.rf-section--loc.rf-section--alt.rf-section--services-related .rf-service:hover .rf-service__link,
.rf-section--loc:not(.rf-section--alt).rf-section--error-codes-related .rf-service:hover .rf-service__index,
.rf-section--loc.rf-section--alt.rf-section--error-codes-related .rf-service:hover .rf-service__index,
.rf-section--loc:not(.rf-section--alt).rf-section--error-codes-related .rf-service:hover .rf-service__title,
.rf-section--loc.rf-section--alt.rf-section--error-codes-related .rf-service:hover .rf-service__title,
.rf-section--loc:not(.rf-section--alt).rf-section--error-codes-related .rf-service:hover .rf-service__text,
.rf-section--loc.rf-section--alt.rf-section--error-codes-related .rf-service:hover .rf-service__text,
.rf-section--loc:not(.rf-section--alt).rf-section--error-codes-related .rf-service:hover .rf-service__link,
.rf-section--loc.rf-section--alt.rf-section--error-codes-related .rf-service:hover .rf-service__link,
.rf-section--loc:not(.rf-section--alt).rf-section--appliances-related .rf-appliance:hover .rf-appliance__index,
.rf-section--loc.rf-section--alt.rf-section--appliances-related .rf-appliance:hover .rf-appliance__index,
.rf-section--loc:not(.rf-section--alt).rf-section--appliances-related .rf-appliance:hover .rf-appliance__title,
.rf-section--loc.rf-section--alt.rf-section--appliances-related .rf-appliance:hover .rf-appliance__title,
.rf-section--loc:not(.rf-section--alt).rf-section--appliances-related .rf-appliance:hover .rf-appliance__text,
.rf-section--loc.rf-section--alt.rf-section--appliances-related .rf-appliance:hover .rf-appliance__text,
.rf-section--loc:not(.rf-section--alt).rf-section--appliances-related .rf-appliance:hover .rf-appliance__link,
.rf-section--loc.rf-section--alt.rf-section--appliances-related .rf-appliance:hover .rf-appliance__link,
.rf-section--loc:not(.rf-section--alt) .rf-grid .rf-card.rf-card--hover:hover .rf-card__title,
.rf-section--loc.rf-section--alt .rf-grid .rf-card.rf-card--hover:hover .rf-card__title,
.rf-section--loc:not(.rf-section--alt) .rf-grid .rf-card.rf-card--hover:hover .rf-card__title a,
.rf-section--loc.rf-section--alt .rf-grid .rf-card.rf-card--hover:hover .rf-card__title a,
.rf-section--loc:not(.rf-section--alt) .rf-grid .rf-card.rf-card--hover:hover .rf-card__text,
.rf-section--loc.rf-section--alt .rf-grid .rf-card.rf-card--hover:hover .rf-card__text,
.rf-section--loc:not(.rf-section--alt) .rf-grid .rf-card.rf-card--hover:hover .rf-link-more,
.rf-section--loc.rf-section--alt .rf-grid .rf-card.rf-card--hover:hover .rf-link-more,
.rf-section--loc:not(.rf-section--alt) .rf-grid .rf-card.rf-card--hover:hover .rf-link-more .rf-icon,
.rf-section--loc.rf-section--alt .rf-grid .rf-card.rf-card--hover:hover .rf-link-more .rf-icon {
	color: #fff;
}
.rf-section--loc:not(.rf-section--alt).rf-loc-requests .rf-pcard:hover .rf-pcard__ico,
.rf-section--loc.rf-section--alt.rf-loc-requests .rf-pcard:hover .rf-pcard__ico,
.rf-section--loc:not(.rf-section--alt).rf-section--services-related .rf-service:hover .rf-service__icon,
.rf-section--loc.rf-section--alt.rf-section--services-related .rf-service:hover .rf-service__icon,
.rf-section--loc:not(.rf-section--alt).rf-section--error-codes-related .rf-service:hover .rf-service__icon,
.rf-section--loc.rf-section--alt.rf-section--error-codes-related .rf-service:hover .rf-service__icon,
.rf-section--loc:not(.rf-section--alt).rf-section--models-related .rf-pcard.rf-model-card:hover .rf-pcard__ico,
.rf-section--loc.rf-section--alt.rf-section--models-related .rf-pcard.rf-model-card:hover .rf-pcard__ico,
.rf-section--loc:not(.rf-section--alt).rf-section--appliances-related .rf-appliance:hover .rf-appliance__icon,
.rf-section--loc.rf-section--alt.rf-section--appliances-related .rf-appliance:hover .rf-appliance__icon,
.rf-section--loc:not(.rf-section--alt) .rf-grid .rf-card.rf-card--hover:hover .rf-card__icon,
.rf-section--loc.rf-section--alt .rf-grid .rf-card.rf-card--hover:hover .rf-card__icon {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
	box-shadow: none;
	transform: none;
}
.rf-section--loc:not(.rf-section--alt).rf-loc-requests .rf-pcard:hover .rf-pcard__ico .rf-icon,
.rf-section--loc.rf-section--alt.rf-loc-requests .rf-pcard:hover .rf-pcard__ico .rf-icon,
.rf-section--loc:not(.rf-section--alt).rf-section--services-related .rf-service:hover .rf-service__icon .rf-icon,
.rf-section--loc.rf-section--alt.rf-section--services-related .rf-service:hover .rf-service__icon .rf-icon,
.rf-section--loc:not(.rf-section--alt).rf-section--error-codes-related .rf-service:hover .rf-service__icon .rf-icon,
.rf-section--loc.rf-section--alt.rf-section--error-codes-related .rf-service:hover .rf-service__icon .rf-icon,
.rf-section--loc:not(.rf-section--alt).rf-section--models-related .rf-pcard.rf-model-card:hover .rf-pcard__ico .rf-icon,
.rf-section--loc.rf-section--alt.rf-section--models-related .rf-pcard.rf-model-card:hover .rf-pcard__ico .rf-icon,
.rf-section--loc:not(.rf-section--alt).rf-section--appliances-related .rf-appliance:hover .rf-appliance__icon .rf-icon,
.rf-section--loc.rf-section--alt.rf-section--appliances-related .rf-appliance:hover .rf-appliance__icon .rf-icon,
.rf-section--loc:not(.rf-section--alt) .rf-grid .rf-card.rf-card--hover:hover .rf-card__icon .rf-icon,
.rf-section--loc.rf-section--alt .rf-grid .rf-card.rf-card--hover:hover .rf-card__icon .rf-icon {
	color: #fff;
}
.rf-section--loc:not(.rf-section--alt).rf-section--models-related .rf-pcard.rf-model-card:hover .rf-model-card__cat,
.rf-section--loc.rf-section--alt.rf-section--models-related .rf-pcard.rf-model-card:hover .rf-model-card__cat,
.rf-section--loc:not(.rf-section--alt).rf-section--models-related .rf-pcard.rf-model-card:hover .rf-pcard__title,
.rf-section--loc.rf-section--alt.rf-section--models-related .rf-pcard.rf-model-card:hover .rf-pcard__title,
.rf-section--loc:not(.rf-section--alt).rf-section--models-related .rf-pcard.rf-model-card:hover .rf-pcard__text,
.rf-section--loc.rf-section--alt.rf-section--models-related .rf-pcard.rf-model-card:hover .rf-pcard__text,
.rf-section--loc:not(.rf-section--alt).rf-section--models-related .rf-pcard.rf-model-card:hover .rf-pcard__num,
.rf-section--loc.rf-section--alt.rf-section--models-related .rf-pcard.rf-model-card:hover .rf-pcard__num,
.rf-section--loc:not(.rf-section--alt).rf-section--models-related .rf-pcard.rf-model-card:hover .rf-model-card__number,
.rf-section--loc.rf-section--alt.rf-section--models-related .rf-pcard.rf-model-card:hover .rf-model-card__number {
	color: #fff;
}
.rf-section--loc:not(.rf-section--alt).rf-section--models-related .rf-pcard.rf-model-card:hover .rf-pcard__rule,
.rf-section--loc.rf-section--alt.rf-section--models-related .rf-pcard.rf-model-card:hover .rf-pcard__rule {
	background: linear-gradient(90deg, #fff 0%, #fff 40%, rgba(255, 255, 255, 0) 100%);
}
.rf-section--loc:not(.rf-section--alt).rf-section--models-related .rf-pcard.rf-model-card:hover .rf-model-card__link,
.rf-section--loc.rf-section--alt.rf-section--models-related .rf-pcard.rf-model-card:hover .rf-model-card__link {
	color: #fff;
	border-top-color: rgba(255, 255, 255, 0.2);
}
.rf-section--loc:not(.rf-section--alt).rf-section--appliances-related .rf-appliance:hover .rf-appliance__rule,
.rf-section--loc.rf-section--alt.rf-section--appliances-related .rf-appliance:hover .rf-appliance__rule {
	background: linear-gradient(90deg, #fff 0%, #fff 40%, rgba(255, 255, 255, 0) 100%);
}
.rf-section--loc:not(.rf-section--alt).rf-section--services-related .rf-service:hover .rf-service__title a:hover,
.rf-section--loc.rf-section--alt.rf-section--services-related .rf-service:hover .rf-service__title a:hover,
.rf-section--loc:not(.rf-section--alt).rf-section--services-related .rf-service:hover .rf-service__link:hover,
.rf-section--loc.rf-section--alt.rf-section--services-related .rf-service:hover .rf-service__link:hover,
.rf-section--loc:not(.rf-section--alt).rf-section--error-codes-related .rf-service:hover .rf-service__link:hover,
.rf-section--loc.rf-section--alt.rf-section--error-codes-related .rf-service:hover .rf-service__link:hover,
.rf-section--loc:not(.rf-section--alt) .rf-grid .rf-card.rf-card--hover:hover .rf-card__title a:hover,
.rf-section--loc.rf-section--alt .rf-grid .rf-card.rf-card--hover:hover .rf-card__title a:hover,
.rf-section--loc:not(.rf-section--alt) .rf-grid .rf-card.rf-card--hover:hover .rf-link-more:hover,
.rf-section--loc.rf-section--alt .rf-grid .rf-card.rf-card--hover:hover .rf-link-more:hover {
	color: #fff;
}

@media (max-width: 900px) {
	.rf-loc-coverage,
	.rf-loc-contact__grid {
		grid-template-columns: 1fr 1fr;
	}
	.rf-loc-checklist--cols-2 {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 640px) {
	.rf-loc-coverage,
	.rf-loc-contact__grid {
		grid-template-columns: 1fr;
	}
}

/* Legacy location intro styles (unused on current template) */
.rf-loc-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: center;
}
.rf-loc-intro__title {
	margin: 0.35rem 0 1rem;
	font-size: clamp(1.55rem, 2.8vw, 2.15rem);
}
.rf-loc-intro__copy p,
.rf-loc-intro__overview p {
	color: var(--rf-ink-2);
	font-size: 1.05rem;
	max-width: 38rem;
}
.rf-loc-intro__overview p:last-child { margin-bottom: 0; }
.rf-loc-photo { margin: 0; }
.rf-loc-photo img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: var(--rf-radius-lg);
	box-shadow: var(--rf-shadow-lg);
	background: var(--rf-surface-2);
}
.rf-loc-photo--illustration img {
	object-fit: contain;
	background: #fff;
}
.rf-loc-photo__hint {
	margin: 0.75rem 0 0;
	font-size: 0.82rem;
	color: var(--rf-muted);
	text-align: center;
}

@media (max-width: 900px) {
	.rf-loc-intro__grid { grid-template-columns: 1fr; }
	.rf-loc-photo {
		order: -1;
		max-width: 420px;
		margin-inline: auto;
		width: 100%;
	}
}
@media (max-width: 640px) {
	.rf-loc-intro__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   31. Thermador brand — square UI surfaces
   ========================================================================= */
body.rf-theme :where(*, *::before, *::after) {
	border-radius: 0 !important;
}
