/*
 * Viking.com visual language — architectural, Proxima Nova, black/white/gray.
 * Overrides main.css for homepage and global brand presentation.
 */

/* =========================================================================
   Design tokens (Viking reference palette)
   ========================================================================= */
:root {
	--rf-black: #000000;
	--rf-deep-black: #000000;
	--rf-white: #ffffff;
	--rf-warm-white: #ffffff;
	--rf-soft-gray: #f5f5f5;
	--rf-border: #e6e6e6;
	--rf-text-dark: #333333;
	--rf-muted: #5C5C5C;
	--rf-brass: #967b4c;

	--rf-ink: var(--rf-text-dark);
	--rf-charcoal: var(--rf-deep-black);
	--rf-surface: var(--rf-warm-white);
	--rf-surface-2: var(--rf-soft-gray);
	--rf-line: var(--rf-border);
	--rf-bg-dark: var(--rf-black);
	--rf-bg-deep: var(--rf-deep-black);
	--rf-text-on-dark: var(--rf-white);
	--rf-text-on-dark-muted: rgba(255, 255, 255, 0.78);
	--rf-border-dark: rgba(255, 255, 255, 0.22);
	--rf-primary: var(--rf-brass);

	--rf-font-display: "Proxima Nova", Montserrat, "Helvetica Neue", Arial, sans-serif;
	--rf-font-serif: "EB Garamond", "Garamond Premier Pro", Garamond, "Times New Roman", serif;
	--rf-fs-base: 1rem;
	--rf-lh-base: 1.6;

	--rf-radius-sm: 0;
	--rf-radius: 0;
	--rf-radius-lg: 2px;
	--rf-shadow-sm: none;
	--rf-shadow: none;
	--rf-shadow-lg: none;

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

/* =========================================================================
   Typography — Proxima Nova display, serif eyebrows only
   ========================================================================= */
body {
	color: var(--rf-text-dark);
	background: var(--rf-warm-white);
	font-weight: 400;
	font-style: normal;
}

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

h1, .rf-display, .rf-hero__title {
	font-size: clamp(3.375rem, 5vw, 5.125rem);
	letter-spacing: 0.07em;
}

h2, .rf-heading__title, .rf-editorial__title {
	font-size: clamp(2.875rem, 3.8vw, 3.625rem);
	letter-spacing: 0.09em;
}

h3 {
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 500;
	letter-spacing: 0.06em;
}

.rf-eyebrow,
.rf-heading__eyebrow,
.rf-hero__badge,
.rf-editorial__eyebrow {
	font-family: var(--rf-font-serif);
	font-size: 1rem;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rf-muted);
}

.rf-heading__text,
.rf-hero__lead,
.rf-editorial__text,
p {
	font-family: var(--rf-font);
	font-weight: 400;
	font-style: normal;
	font-size: clamp(1rem, 1.1vw, 1.125rem);
	line-height: 1.6;
}

.rf-serif-accent {
	font-family: var(--rf-font);
	font-style: normal;
	font-weight: 400;
	font-size: clamp(1rem, 1.1vw, 1.125rem);
	line-height: 1.6;
	color: var(--rf-text-on-dark-muted);
}

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

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

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

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

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

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

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

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

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

/* =========================================================================
   Buttons — square outline Viking style
   ========================================================================= */
.rf-btn {
	border-radius: 0;
	font-family: var(--rf-font);
	font-weight: 500;
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: none;
	transform: none;
	padding: 0 1.5rem;
	min-height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

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

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

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

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

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

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

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

/* Dark-surface CTA — single white primary + inline phone dial */
.rf-cta-banner .rf-btn--white,
.rf-cta-banner .rf-btn--primary.rf-btn--white {
	background: #fff;
	color: #111;
	border-color: #fff;
}

.rf-cta-banner .rf-btn--white .rf-icon {
	color: #111;
}

.rf-cta-banner__dial {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.1rem;
	text-decoration: none;
	color: var(--rf-white);
	min-width: 0;
	border: 0;
	background: transparent;
	padding: 0;
}

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

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

@media (hover: hover) {
	.rf-cta-banner .rf-btn--white:hover,
	.rf-cta-banner .rf-btn--white:focus-visible {
		background: rgba(255, 255, 255, 0.92);
		color: #111;
		border-color: rgba(255, 255, 255, 0.92);
	}

	.rf-cta-banner__dial:hover .rf-cta-banner__dial-num,
	.rf-cta-banner__dial:focus-visible .rf-cta-banner__dial-num {
		color: var(--rf-brass);
	}
}

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

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

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

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

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

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

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

.rf-announce a:hover {
	color: var(--rf-white);
	opacity: 0.85;
}

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

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

/* =========================================================================
   Header
   ========================================================================= */
.rf-header--luxury {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--rf-black);
	border-bottom: 1px solid var(--rf-border-dark);
	backdrop-filter: none;
}

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

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

/* PNG lockups — explicit height preserves aspect ratio at 52px header height. */
.rf-header--luxury .rf-brand__img--header,
.rf-brand__img--footer {
	display: block;
	flex: none;
	width: auto;
	object-fit: contain;
	object-position: left center;
	filter: none;
}

.rf-header--luxury .rf-brand__img--header {
	height: 52px;
	max-width: min(200px, 42vw);
}

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

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

.rf-header--luxury .rf-phone-btn {
	color: var(--rf-white);
	font-weight: 500;
	font-size: 0.875rem;
	letter-spacing: 0.02em;
}

.rf-header--luxury .rf-phone-btn .rf-icon {
	color: var(--rf-white);
	opacity: 0.85;
}

@media (hover: hover) {
	.rf-header--luxury .rf-phone-btn:hover,
	.rf-header--luxury .rf-phone-btn:focus-visible {
		color: var(--rf-white);
		background: rgba(255, 255, 255, 0.1);
	}
}

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

.rf-nav a {
	color: rgba(255, 255, 255, 0.72);
	font-weight: 500;
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.25rem 0;
}

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

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

.rf-nav-toggle {
	color: var(--rf-white);
	border: 1px solid var(--rf-border-dark);
	border-radius: 0;
	background: transparent;
}

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

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

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

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

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

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

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

.rf-hero--campaign .rf-hero__title {
	color: var(--rf-white);
	margin-bottom: 1rem;
	font-weight: 300;
	font-size: clamp(2.25rem, 3.6vw, 3.375rem);
	line-height: 1.06;
	letter-spacing: 0.05em;
	text-shadow: none;
	max-width: 11em;
}

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

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

.rf-hero--campaign .rf-hero__card {
	display: block !important;
	position: relative;
	background: var(--rf-white);
	color: var(--rf-text-dark);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0;
	box-shadow: 0 28px 72px rgba(0, 0, 0, 0.38);
	padding: 1.35rem 1.65rem 1.15rem;
}

.rf-hero--campaign .rf-hero__card--embed {
	padding: 0;
	overflow: visible;
	border: 2px solid var(--rf-black);
	box-shadow: 0 28px 72px rgba(0, 0, 0, 0.38);
}

.rf-hero--campaign .rf-hero__card--embed .rf-hero__flag {
	position: absolute;
	top: -46px;
	right: 0;
	z-index: 2;
	margin: 0;
	width: max-content;
}

.rf-hero--campaign .rf-hero__card--embed .rf-booking-embed {
	height: 478px;
	overflow: hidden;
}

.rf-hero--campaign .rf-hero__card--embed .rf-booking-embed__frame {
	height: 620px !important;
	margin-top: -14px;
}

.rf-hero--campaign .rf-hero__flag {
	position: absolute;
	top: -0.85rem;
	right: 1.25rem;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	background: var(--rf-black);
	color: var(--rf-white);
	border-radius: 0;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
	padding: 0.5rem 0.9rem;
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.rf-hero--campaign .rf-hero__flag .rf-icon {
	width: 1.25em;
	height: 1.25em;
}

.rf-hero--campaign .rf-hero__flag small {
	display: block;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
	opacity: 0.82;
	font-size: 0.68rem;
}

.rf-hero--campaign .rf-hero__form-title {
	font-family: var(--rf-font-body);
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rf-text-dark);
	margin-bottom: 0.75rem;
}

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

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

.rf-hero--campaign .rf-hero__card .rf-field label {
	color: var(--rf-text-dark);
	font-size: 0.72rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.rf-hero--campaign .rf-hero__card .rf-field input,
.rf-hero--campaign .rf-hero__card .rf-field select {
	padding: 0.55rem 0.7rem;
	font-size: 0.9375rem;
	min-height: 2.65rem;
}

.rf-hero--campaign .rf-hero__card .rf-consent input[type="checkbox"] {
	min-height: 0;
	padding: 0;
	margin-top: 0.12em;
}

.rf-hero--campaign .rf-hero__card .rf-consent label {
	text-transform: none;
	letter-spacing: 0;
	font-size: 0.72rem;
	line-height: 1.4;
}

.rf-hero--campaign .rf-hero__card .rf-form__note {
	font-size: 0.72rem;
	margin-top: -0.15rem;
}

.rf-hero--campaign .rf-hero__card .rf-btn--lg {
	padding: 0.7rem 1rem;
	font-size: 0.8125rem;
}

.rf-hero--campaign .rf-hero__card-foot {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin-top: 0.75rem;
	padding-top: 0.75rem;
	border-top: 1px solid var(--rf-border);
}

.rf-hero--campaign .rf-hero__card-foot p {
	margin: 0;
	font-size: 0.8125rem;
	color: var(--rf-muted);
}

.rf-hero--campaign .rf-hero__card-foot .rf-icon {
	flex: none;
	width: 1.1em;
	height: 1.1em;
	color: var(--rf-black);
}

.rf-hero--campaign .rf-hero__card-foot strong {
	font-size: inherit;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--rf-text-dark);
	margin-right: 0.35rem;
}

.rf-hero--campaign .rf-hero__card-foot a {
	color: var(--rf-text-dark);
	text-decoration: none;
	font-weight: 500;
}

.rf-hero--campaign .rf-hero__card-foot a:hover {
	color: var(--rf-brass);
}

.rf-hero--campaign .rf-hero__trust {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 0.65rem 1.75rem;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.875rem;
}

.rf-hero--campaign .rf-hero__trust li {
	position: relative;
	display: block;
	padding-left: calc(5px + 0.55rem);
	max-width: 15rem;
}

.rf-hero--campaign .rf-hero__trust li::before {
	content: "";
	position: absolute;
	left: 0;
	top: calc(0.5lh - 2.5px);
	width: 5px;
	height: 5px;
	margin-top: 0;
	border-radius: 50%;
	background: var(--rf-brass);
}

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

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

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

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

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

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

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

/* =========================================================================
   Category photo tiles (Viking product grid)
   ========================================================================= */
.rf-cat-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
	width: 100%;
}

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

.rf-cat-tile {
	position: relative;
	display: block;
	min-height: clamp(220px, 28vw, 340px);
	overflow: hidden;
	text-decoration: none;
	color: var(--rf-white);
	border: none;
	background: var(--rf-deep-black);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* =========================================================================
   Cards & grids — flat architectural
   ========================================================================= */
.rf-card,
.rf-service-card,
.rf-appliance,
.rf-location,
.rf-step,
.rf-guarantee,
.rf-review,
.rf-ec-card {
	border-radius: 0;
	box-shadow: none;
	border: 1px solid var(--rf-border);
	background: var(--rf-white);
}

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

.rf-contact-tiles {
	align-items: stretch;
}

.rf-contact-tile {
	border-radius: 0;
	box-shadow: none;
	text-decoration: none;
}

a.rf-contact-tile:hover,
a.rf-contact-tile:focus-visible {
	transform: none;
	box-shadow: none;
	border-color: var(--rf-text-dark);
	background: var(--rf-soft-gray);
	color: inherit;
}

.rf-contact-tile__icon {
	border-radius: 0;
	background: var(--rf-soft-gray);
	box-shadow: none;
	color: var(--rf-brass);
}

.rf-contact-tile__value {
	color: var(--rf-text-dark);
}

a.rf-contact-tile:hover .rf-contact-tile__value,
a.rf-contact-tile:focus-visible .rf-contact-tile__value {
	color: var(--rf-brass);
}

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

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

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

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

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

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

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

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

.rf-locations__map {
	background: transparent;
}

.rf-locations__map img {
	background: transparent;
}

.rf-card--dual-action {
	cursor: pointer;
}

.rf-card--dual-action:focus-visible {
	outline: 2px solid var(--rf-brass);
	outline-offset: 3px;
}

.rf-card--dual-action .rf-card__detail-link,
.rf-card--dual-action .rf-appliance__link {
	position: relative;
	z-index: 2;
}

@media (hover: hover) {
	.rf-card--dual-action:hover {
		border-color: var(--rf-text-dark);
	}
}

.rf-appliances-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.rf-appliances-grid > * {
	min-width: 0;
}

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

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

.rf-grid.rf-grid--3 {
	gap: 1px;
	background-color: var(--rf-border);
	border: 1px solid var(--rf-border);
}

.rf-grid.rf-grid--3 > .rf-card,
.rf-grid.rf-grid--3 > .rf-service-card,
.rf-grid.rf-grid--3 > .rf-guarantee,
.rf-grid.rf-grid--3 > .rf-step,
.rf-grid.rf-grid--3 > .rf-problem {
	border: none;
	border-radius: 0;
	background: var(--rf-white);
}

.rf-grid.rf-grid--3 > .rf-card--hover:hover,
.rf-grid.rf-grid--3 > .rf-service-card:hover {
	border: none;
	box-shadow: inset 0 0 0 1px var(--rf-text-dark);
}

/* =========================================================================
   CTA banner — ink panel with brass accent
   ========================================================================= */
.rf-cta-banner {
	--rf-cta-bg-image: none;
	position: relative;
	display: flex;
	align-items: center;
	color: var(--rf-white);
	overflow: hidden;
	border: none;
	background-color: var(--rf-black);
	background-image:
		radial-gradient(ellipse 80% 120% at 100% 50%, rgba(150, 123, 76, 0.12) 0%, transparent 58%),
		linear-gradient(100deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.72) 42%, rgba(10, 10, 10, 0.55) 70%, rgba(10, 10, 10, 0.45) 100%),
		var(--rf-cta-bg-image);
	background-position: center, center right, center right;
	background-size: auto, auto, cover;
	background-repeat: no-repeat, no-repeat, no-repeat;
	border-block: 1px solid var(--rf-border-dark);
	padding: clamp(2.75rem, 5vw, 3.75rem) clamp(1.5rem, 4vw, 3.25rem);
}

@media (max-width: 640px) {
	.rf-cta-banner {
		background-image:
			radial-gradient(ellipse 80% 120% at 100% 50%, rgba(150, 123, 76, 0.1) 0%, transparent 58%),
			linear-gradient(180deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.78) 100%),
			var(--rf-cta-bg-image);
		background-position: center, center, center;
		background-size: auto, auto, cover;
	}
}

.rf-cta-banner::before {
	content: "";
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--rf-brass) 0%,
		rgba(150, 123, 76, 0.45) 42%,
		transparent 100%
	);
	pointer-events: none;
}

.rf-cta-banner__inner {
	position: relative;
	z-index: 1;
	width: 100%;
}

.rf-cta-banner__content {
	max-width: 38rem;
	padding-inline-start: clamp(1rem, 2vw, 1.35rem);
	border-inline-start: 2px solid rgba(150, 123, 76, 0.55);
}

.rf-cta-banner__eyebrow {
	margin: 0 0 0.75rem;
	font-family: var(--rf-font-serif);
	font-size: 0.9375rem;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rf-brass);
}

.rf-cta-banner h2 {
	color: var(--rf-white);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	letter-spacing: 0.06em;
	line-height: 1.08;
	margin-bottom: 0.625rem;
}

.rf-cta-banner p,
.rf-cta-banner__text {
	margin: 0;
	color: var(--rf-text-on-dark-muted);
	font-size: clamp(0.9375rem, 1.05vw, 1.0625rem);
	line-height: 1.55;
	max-width: 48ch;
}

.rf-cta-banner__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem;
	margin-top: clamp(1.15rem, 2vw, 1.5rem);
}

.rf-section:has(.rf-cta-banner) {
	padding-block: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.rf-sticky-bar .rf-btn--secondary {
	background: transparent;
	color: var(--rf-white);
}

@media (hover: hover) {
	.rf-sticky-bar .rf-btn--primary:hover,
	.rf-sticky-bar .rf-btn--primary:focus-visible {
		background: rgba(255, 255, 255, 0.9);
		color: var(--rf-text-dark);
	}

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

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

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

/* Full-height side drawer: square edges + fill the viewport shell from main.css. */
.rf-drawer__panel {
	border-radius: 0;
	top: 0;
	bottom: 0;
	height: 100%;
	max-height: 100%;
}

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

.rf-expertise__bg {
	opacity: 0.06;
}

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

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

/* =========================================================================
   Interior / database pages — shared layout system, Viking palette only
   ========================================================================= */
.rf-ec-page.rf-section,
.rf-post-page.rf-section {
	padding-block: clamp(1.5rem, 3vw, 2.5rem);
}

.rf-ec-page__main {
	gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

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

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

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

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

/* Interior pages — compact section headings (editorial, not homepage display) */
body.rf-interior .rf-section .rf-heading .rf-heading__title,
body.rf-interior .rf-section .rf-heading h2 {
	font-family: var(--rf-font);
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.2;
	text-transform: none;
	color: var(--rf-charcoal);
	margin-bottom: 0.45rem;
}

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

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

body.rf-interior .rf-loc-intro__title,
body.rf-interior .rf-about-intro__title,
body.rf-interior .rf-loc-card__title,
body.rf-interior .rf-about-card__title {
	font-family: var(--rf-font);
	font-weight: 700;
	letter-spacing: -0.015em;
	text-transform: none;
	line-height: 1.25;
	color: var(--rf-charcoal);
}

body.rf-interior .rf-ec-hero h1,
body.rf-interior .rf-ec-popular__title {
	font-family: var(--rf-font);
	font-weight: 700;
	letter-spacing: -0.02em;
	text-transform: none;
	line-height: 1.2;
	color: var(--rf-charcoal);
}

body.rf-interior .rf-prose h2,
body.rf-interior .rf-prose h3 {
	font-family: var(--rf-font);
	font-weight: 700;
	letter-spacing: -0.015em;
	text-transform: none;
	line-height: 1.25;
	color: var(--rf-charcoal);
}

body.rf-interior .rf-page-content .rf-prose > h2 {
	font-family: var(--rf-font-display);
	font-weight: 300;
	font-size: clamp(1.75rem, 2.8vw, 2.25rem);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.12;
	color: var(--rf-charcoal);
}

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

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

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

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

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

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

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

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

.rf-ec-page .rf-ec-disclaimer,
.rf-post-page .rf-ec-disclaimer {
	border-radius: 0;
}

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

.rf-ec-page .rf-cta-banner,
.rf-ec-block .rf-cta-banner {
	padding: 1.5rem 1.25rem;
	min-height: 0;
	background: var(--rf-black);
	border: 1px solid var(--rf-border-dark);
}

.rf-ec-page .rf-cta-banner::before,
.rf-ec-block .rf-cta-banner::before {
	display: none;
}

.rf-ec-page .rf-cta-banner__content,
.rf-ec-block .rf-cta-banner__content {
	flex: 0 1 auto;
	border-inline-start: none;
	padding-inline-start: 0;
	max-width: none;
}

.rf-ec-page .rf-cta-banner__eyebrow,
.rf-ec-block .rf-cta-banner__eyebrow {
	font-size: 0.8125rem;
	margin-bottom: 0.5rem;
}

.rf-ec-page .rf-cta-banner__inner,
.rf-ec-block .rf-cta-banner__inner {
	padding: 0;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 1rem;
}

.rf-ec-page .rf-cta-banner h2,
.rf-ec-block .rf-cta-banner h2 {
	font-family: var(--rf-font);
	font-size: clamp(1.2rem, 2.2vw, 1.45rem);
	font-weight: 700;
	letter-spacing: -0.01em;
	text-transform: none;
	line-height: 1.25;
	color: var(--rf-white);
}

.rf-ec-page .rf-cta-banner p,
.rf-ec-block .rf-cta-banner p {
	font-size: 0.98rem;
	line-height: 1.55;
}

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

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

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

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

/* =========================================================================
   Editorial numbered steps — repair methodology layout
   ========================================================================= */
.rf-editorial-steps {
	list-style: none;
	margin: clamp(1.25rem, 2.5vw, 1.75rem) 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: clamp(2.25rem, 4vw, 3.25rem);
}

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

.rf-editorial-step__title {
	font-family: var(--rf-font-display);
	font-weight: 300;
	font-size: clamp(1.75rem, 2.8vw, 2.25rem);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.12;
	color: var(--rf-charcoal);
	margin: 0 0 0.65rem;
}

.rf-editorial-step__num {
	font-weight: 300;
}

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

.rf-page-content .rf-prose > h2 {
	font-family: var(--rf-font-display);
	font-weight: 300;
	font-size: clamp(1.75rem, 2.8vw, 2.25rem);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.12;
	color: var(--rf-charcoal);
	margin-top: clamp(2.25rem, 4vw, 3.25rem);
	margin-bottom: 0.65rem;
}

.rf-page-content .rf-prose > h2 + p {
	margin-top: 0;
	color: var(--rf-muted);
	max-width: 65ch;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rf-ec-block--author {
	padding-top: 0.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.rf-cta-banner {
		padding: clamp(2.25rem, 6vw, 2.75rem) clamp(1.25rem, 4vw, 1.75rem);
	}

	.rf-cta-banner__content {
		border-inline-start: none;
		padding-inline-start: 0;
		max-width: none;
	}

	.rf-cta-banner__actions {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.rf-cta-banner__actions .rf-btn {
		flex: 0 0 auto;
		width: 100%;
		min-width: 0;
	}

	.rf-cta-banner__dial {
		width: auto;
		align-self: flex-start;
	}
}

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

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

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

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

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

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

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

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

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

	.rf-announce__inner {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0.15rem;
		padding-block: 0.2rem;
		text-align: center;
	}

	.rf-announce__item {
		gap: 0.35rem;
	}

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

	h1, .rf-display, .rf-hero__title {
		font-size: clamp(2.25rem, 10vw, 3rem);
	}

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

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

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

.rf-booking-embed {
	background: #fff;
}
