/**
 * Ruili Furniture — site styles.
 *
 * Visual direction: architectural navy, soft grey and warm wood tones for an office-furniture B2B brand,
 * with rounded furniture forms inspired by the product's "square outside, arch inside"
 * panel shape. Layout rules are mobile-first and use single-class selectors so
 * they stay easy to override from the Elementor panel.
 */

:root {
	--rl-ink: #172334;
	--rl-ink-soft: #435062;
	--rl-ink-muted: #758193;
	--rl-cream: #f8f6f1;
	--rl-sand: #f1ede4;
	--rl-sand-deep: #e4ddcf;
	--rl-line: #e5dfd3;
	--rl-white: #ffffff;
	--rl-orange: #a5642d;
	--rl-orange-deep: #7d471e;
	--rl-orange-soft: #f3e7d7;
	--rl-green: #1f5c48;
	--rl-green-soft: #e4efea;
	--rl-radius: 16px;
	--rl-radius-sm: 10px;
	--rl-arch: 999px 999px 18px 18px;
	--rl-shadow: 0 18px 40px rgba(30, 27, 23, 0.08);
	--rl-shadow-sm: 0 8px 20px rgba(30, 27, 23, 0.06);
	--rl-wrap: 1560px;
	--rl-gap: 24px;
	--rl-display: Georgia, "Times New Roman", "Songti SC", "SimSun", serif;
	--rl-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--rl-white);
	color: var(--rl-ink);
	font-family: var(--rl-body);
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
}

h1,
h2,
h3,
h4 {
	font-family: var(--rl-display);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 16px;
	letter-spacing: -0.01em;
}

h1 {
	font-size: clamp(2.1rem, 4.4vw, 3.4rem);
}

h2 {
	font-size: clamp(1.7rem, 3vw, 2.4rem);
}

h3 {
	font-size: 1.25rem;
}

p {
	margin: 0 0 16px;
}

/* Wide desktops: scale type up slightly so the wider container stays balanced. */
@media (min-width: 1500px) {
	h1 {
		font-size: clamp(2.6rem, 3vw, 3.9rem);
	}

	h2 {
		font-size: clamp(2rem, 2.2vw, 2.8rem);
	}

	.rl-section {
		padding: 96px 0;
	}
}

.rl-skip {
	position: absolute;
	left: -9999px;
}

.rl-skip:focus {
	left: 16px;
	top: 16px;
	z-index: 999;
	background: var(--rl-white);
	padding: 10px 16px;
	border-radius: var(--rl-radius-sm);
	box-shadow: var(--rl-shadow-sm);
}

.rl-wrap {
	width: 100%;
	max-width: var(--rl-wrap);
	margin: 0 auto;
	padding: 0 24px;
}

/*
 * The five pages and the header/footer are Elementor documents whose sections
 * use the default boxed layout (1140px). Our widgets carry the real section
 * backgrounds, so keep the Elementor container full width and let .rl-wrap
 * control the readable content width.
 */
.elementor-section.elementor-section-boxed > .elementor-container {
	max-width: 100%;
}

.elementor-section.elementor-section-boxed > .elementor-container > .elementor-column {
	padding-left: 0;
	padding-right: 0;
}

.rl-wrap--narrow {
	max-width: 880px;
}

.rl-section {
	padding: 84px 0;
}

.rl-section--tight {
	padding: 56px 0;
}

.rl-section--ivory {
	background: var(--rl-cream);
}

.rl-section--sand {
	background: var(--rl-sand);
}

.rl-section--dark {
	background: var(--rl-ink);
	color: var(--rl-cream);
}

.rl-section--dark h1,
.rl-section--dark h2,
.rl-section--dark h3 {
	color: var(--rl-white);
}

.rl-eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--rl-body);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--rl-orange);
	margin: 0 0 14px;
}

.rl-eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--rl-orange);
	border-radius: 2px;
}

.rl-hero__copy .rl-eyebrow,
.rl-section__head .rl-eyebrow {
	justify-content: flex-start;
}

.rl-section--dark .rl-eyebrow {
	color: var(--rl-orange-soft);
}

.rl-section__head {
	max-width: 720px;
	margin-bottom: 44px;
}

.rl-section__head--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.rl-lede {
	font-size: 1.06rem;
	color: var(--rl-ink-soft);
}

.rl-note {
	font-size: 0.9rem;
	color: var(--rl-ink-muted);
}

.rl-prose {
	max-width: 780px;
}

.rl-prose h2 {
	margin-top: 40px;
}

.rl-prose ul {
	padding-left: 20px;
}

.rl-link {
	color: var(--rl-orange-deep);
	text-decoration: none;
	border-bottom: 1px solid rgba(196, 104, 42, 0.4);
	padding-bottom: 1px;
}

.rl-link:hover {
	border-bottom-color: var(--rl-orange-deep);
}

/* Buttons */
.rl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.16s ease, background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.rl-btn:hover {
	transform: translateY(-1px);
}

.rl-btn--primary {
	background: linear-gradient(160deg, #b06d31, var(--rl-orange-deep));
	color: var(--rl-white);
	box-shadow: 0 10px 22px rgba(125, 71, 30, 0.28);
}

.rl-btn--primary:hover {
	background: var(--rl-orange-deep);
	box-shadow: 0 12px 26px rgba(125, 71, 30, 0.34);
}

.rl-btn--ghost {
	background: var(--rl-white);
	border-color: var(--rl-line);
	color: var(--rl-ink);
	box-shadow: var(--rl-shadow-sm);
}

.rl-btn--ghost:hover {
	border-color: var(--rl-orange);
	color: var(--rl-orange-deep);
}

.rl-btn--light {
	background: var(--rl-white);
	color: var(--rl-ink);
}

.rl-btn--outline-light {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--rl-white);
}

.rl-btn--whatsapp {
	background: #1f9d55;
	color: var(--rl-white);
}

/* Header */
.rl-utility {
	background: var(--rl-ink);
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.8rem;
	letter-spacing: 0.02em;
}

.rl-utility__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	align-items: center;
	justify-content: space-between;
	padding: 9px 24px;
	max-width: var(--rl-wrap);
	margin: 0 auto;
}

.rl-utility strong {
	color: var(--rl-white);
	font-weight: 600;
}

.rl-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--rl-line);
}

.rl-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 24px;
	max-width: var(--rl-wrap);
	margin: 0 auto;
}
.rl-header .custom-logo {
	height: 58px;
	width: auto;
	max-width: 220px;
	display: block;
}

.rl-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.rl-brand__mark {
	width: 42px;
	height: 42px;
	border-radius: 12px 12px 8px 8px;
	background: var(--rl-orange);
	color: var(--rl-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--rl-display);
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.rl-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.rl-brand__name {
	font-family: var(--rl-display);
	font-size: 1.12rem;
	font-weight: 700;
}

.rl-brand__sub {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rl-ink-muted);
}

.rl-nav {
	display: flex;
	align-items: center;
	gap: 26px;
}

.rl-nav a {
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--rl-ink-soft);
	padding: 6px 0;
	border-bottom: 2px solid transparent;
}

.rl-nav a:hover,
.rl-nav .current-menu-item > a,
.rl-nav a[aria-current="page"] {
	color: var(--rl-orange-deep);
	border-bottom-color: var(--rl-orange);
}

.rl-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.rl-header__phone {
	font-size: 0.9rem;
	color: var(--rl-ink-soft);
	white-space: nowrap;
}

.rl-nav__toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--rl-line);
	border-radius: 12px;
	background: var(--rl-white);
	cursor: pointer;
}

.rl-nav__toggle span,
.rl-nav__toggle span::before,
.rl-nav__toggle span::after {
	display: block;
	width: 18px;
	height: 2px;
	margin: 0 auto;
	background: var(--rl-ink);
	content: "";
}

.rl-nav__toggle span::before {
	transform: translateY(-6px);
}

.rl-nav__toggle span::after {
	transform: translateY(4px);
}

/* Hero */
.rl-hero {
	position: relative;
	overflow: hidden;
	padding: 84px 0 76px;
	background: var(--rl-cream);
}

/* Soft brand glow + arch motif so the opening band feels designed, not empty. */
.rl-hero::before {
	content: "";
	position: absolute;
	top: -220px;
	right: -160px;
	width: 640px;
	height: 640px;
	background: radial-gradient(circle, rgba(165, 100, 45, 0.12) 0%, rgba(165, 100, 45, 0) 62%);
	pointer-events: none;
}

.rl-hero::after {
	content: "";
	position: absolute;
	bottom: -170px;
	left: -110px;
	width: 380px;
	height: 380px;
	border: 1.5px solid rgba(23, 35, 52, 0.07);
	border-radius: 999px 999px 40px 40px;
	pointer-events: none;
}

.rl-hero .rl-wrap {
	position: relative;
	z-index: 1;
}

.rl-hero--dark::before {
	background: radial-gradient(circle, rgba(240, 229, 216, 0.10) 0%, rgba(240, 229, 216, 0) 62%);
}

.rl-hero--dark::after {
	border-color: rgba(255, 255, 255, 0.08);
}

.rl-hero--simple {
	position: relative;
	overflow: hidden;
	padding: 56px 0 48px;
	border-bottom: 1px solid var(--rl-line);
}

.rl-hero--dark {
	background: var(--rl-ink);
	color: var(--rl-cream);
}

.rl-hero--dark h1 {
	color: var(--rl-white);
}

.rl-hero--dark .rl-eyebrow {
	color: var(--rl-orange-soft);
}

.rl-hero--dark .rl-hero__text {
	color: rgba(255, 255, 255, 0.82);
}

.rl-hero--dark .rl-btn--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.45);
	color: var(--rl-white);
	box-shadow: none;
}

.rl-hero--dark .rl-btn--ghost:hover {
	border-color: var(--rl-orange-soft);
	color: var(--rl-orange-soft);
}

/*
 * Home hero — dark immersive style.
 * Full-width brand navy, white serif headline, orange accents and a glowing
 * outlined arch behind the photo: the same layout, a completely different mood.
 */
.rl-hero--home {
	background:
		radial-gradient(900px 520px at 82% 8%, rgba(176, 109, 49, 0.20) 0%, rgba(176, 109, 49, 0) 60%),
		linear-gradient(140deg, #131e2e 0%, #1c2c44 52%, #131e2e 100%);
	color: var(--rl-cream);
	padding: 92px 0 78px;
}

.rl-hero--home::before {
	display: none;
}

.rl-hero--home::after {
	bottom: auto;
	left: -140px;
	top: 46%;
	width: 420px;
	height: 420px;
	border-color: rgba(255, 255, 255, 0.07);
}

.rl-hero--home h1 {
	color: var(--rl-white);
}

.rl-hero--home .rl-eyebrow {
	color: #dfa967;
}

.rl-hero--home .rl-eyebrow::before {
	background: #dfa967;
}

.rl-hero--home .rl-hero__text {
	color: rgba(246, 247, 250, 0.78);
}

.rl-hero--home .rl-hero__actions .rl-btn--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.45);
	color: var(--rl-white);
	box-shadow: none;
}

.rl-hero--home .rl-hero__actions .rl-btn--ghost:hover {
	border-color: #dfa967;
	color: #dfa967;
}

.rl-hero--home .rl-stats {
	border-top-color: rgba(255, 255, 255, 0.14);
}

.rl-hero--home .rl-stat {
	border-left-color: #dfa967;
}

.rl-hero--home .rl-stat__value {
	color: #e8b26d;
}

.rl-hero--home .rl-stat__label {
	color: rgba(246, 247, 250, 0.62);
}

/* Photo: glowing outlined arch instead of the warm offset panel. */
.rl-hero--home .rl-hero__media::before {
	inset: 30px -30px -30px 30px;
	background: transparent;
	border: 1.5px solid rgba(223, 169, 103, 0.55);
}

.rl-hero--home .rl-hero__media img {
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}

.rl-hero--home .rl-hero__caption {
	background: rgba(15, 24, 38, 0.72);
	border-color: rgba(255, 255, 255, 0.14);
	color: rgba(246, 247, 250, 0.78);
}

.rl-hero--home .rl-hero__caption strong {
	color: var(--rl-white);
}

.rl-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}

.rl-hero__grid > .rl-hero__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

/* Hero typography: the headline anchors the whole page. */
.rl-hero h1 {
	font-size: clamp(2.4rem, 3.1vw, 3.7rem);
	letter-spacing: -0.015em;
	margin-bottom: 20px;
}

.rl-hero__copy .rl-hero__text {
	margin: 0;
}

.rl-hero__copy .rl-hero__actions {
	margin-top: 32px;
}

.rl-hero__text {
	font-size: 1.08rem;
	color: var(--rl-ink-soft);
	max-width: 54ch;
}

.rl-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.rl-hero__media {
	position: relative;
}

/* Offset arch panel behind the photo adds depth and echoes the product motif. */
.rl-hero__media::before {
	content: "";
	position: absolute;
	inset: 26px -26px -26px 26px;
	background: linear-gradient(160deg, var(--rl-orange-soft), rgba(243, 231, 215, 0.4));
	border-radius: var(--rl-arch);
	pointer-events: none;
}

.rl-hero__media img {
	position: relative;
	z-index: 1;
	width: 100%;
	border-radius: var(--rl-arch);
	box-shadow: var(--rl-shadow);
	object-fit: cover;
}

.rl-hero__media--plain img {
	border-radius: var(--rl-radius);
}

.rl-hero__caption {
	position: absolute;
	left: 18px;
	bottom: 18px;
	right: 18px;
	z-index: 2;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(6px);
	border-radius: var(--rl-radius-sm);
	border: 1px solid rgba(229, 223, 211, 0.8);
	padding: 16px 18px;
	box-shadow: 0 14px 34px rgba(30, 27, 23, 0.14);
	font-size: 0.86rem;
	color: var(--rl-ink-soft);
}

.rl-hero__caption strong {
	display: block;
	font-family: var(--rl-display);
	font-size: 1rem;
	color: var(--rl-ink);
}

.rl-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 36px;
	padding-top: 26px;
	border-top: 1px solid var(--rl-line);
}

.rl-stat {
	padding-left: 16px;
	border-left: 3px solid var(--rl-orange);
}

.rl-stat__value {
	font-family: var(--rl-display);
	font-size: 2rem;
	font-weight: 700;
	color: var(--rl-orange-deep);
	line-height: 1.15;
}

.rl-stat__label {
	font-size: 0.88rem;
	color: var(--rl-ink-soft);
}

/* Highlights */
.rl-highlights {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--rl-gap);
}

.rl-highlight {
	position: relative;
	background: var(--rl-white);
	border: 1px solid var(--rl-line);
	border-radius: var(--rl-radius);
	padding: 30px 26px 28px;
	box-shadow: var(--rl-shadow-sm);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rl-highlight::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--rl-orange), rgba(165, 100, 45, 0.25));
}

.rl-highlight:hover {
	transform: translateY(-4px);
	box-shadow: var(--rl-shadow);
}

.rl-highlight__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 999px 999px 12px 12px;
	background: var(--rl-orange-soft);
	color: var(--rl-orange-deep);
	font-family: var(--rl-display);
	font-weight: 700;
	margin-bottom: 18px;
}

.rl-highlight h3 {
	margin-bottom: 8px;
	font-size: 1.14rem;
}

.rl-highlight p {
	margin: 0;
	font-size: 0.92rem;
	color: var(--rl-ink-soft);
}

/* Cards and grids */
.rl-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.rl-card-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rl-card-grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rl-card {
	background: var(--rl-white);
	border: 1px solid var(--rl-line);
	border-radius: var(--rl-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: var(--rl-shadow-sm);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.rl-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--rl-shadow);
}

.rl-card__media {
	background: var(--rl-sand);
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.rl-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.rl-card:hover .rl-card__media img {
	transform: scale(1.045);
}

.rl-card__body {
	padding: 22px 22px 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.rl-card__tag {
	align-self: flex-start;
	background: var(--rl-green-soft);
	color: var(--rl-green);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 999px;
}

.rl-card__title {
	margin: 0;
	font-size: 1.16rem;
}

.rl-card__title a {
	text-decoration: none;
}

.rl-card__meta {
	margin: 0;
	font-size: 0.8rem;
	color: var(--rl-ink-muted);
}

.rl-card__text {
	margin: 0;
	font-size: 0.94rem;
	color: var(--rl-ink-soft);
}

.rl-card__specs {
	margin: 4px 0 0;
	padding: 0;
	list-style: none;
	font-size: 0.86rem;
	color: var(--rl-ink-muted);
	display: grid;
	gap: 4px;
}

.rl-card__specs li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	border-top: 1px dashed var(--rl-line);
	padding-top: 4px;
}

.rl-card__actions {
	margin-top: auto;
	padding-top: 14px;
}

/* Catalogue */
.rl-catalogue__head {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 28px;
}

.rl-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 32px;
}
.rl-filters__label {
	align-self: center;
	margin-left: 10px;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rl-ink-muted);
}

.rl-chip {
	display: inline-flex;
	align-items: center;
	padding: 9px 18px;
	border-radius: 999px;
	border: 1px solid var(--rl-line);
	background: var(--rl-white);
	font-size: 0.9rem;
	text-decoration: none;
	color: var(--rl-ink-soft);
}

.rl-chip:hover {
	border-color: var(--rl-orange);
	color: var(--rl-orange-deep);
}

.rl-chip.is-active {
	background: var(--rl-ink);
	border-color: var(--rl-ink);
	color: var(--rl-white);
}

.rl-empty {
	background: var(--rl-cream);
	border: 1px dashed var(--rl-line);
	border-radius: var(--rl-radius);
	padding: 40px;
	text-align: center;
}

.rl-pagination {
	margin-top: 44px;
	display: flex;
	justify-content: center;
}

.rl-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	margin: 0 4px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid var(--rl-line);
	text-decoration: none;
	color: var(--rl-ink-soft);
	font-size: 0.9rem;
}

.rl-pagination .page-numbers.current {
	background: var(--rl-ink);
	border-color: var(--rl-ink);
	color: var(--rl-white);
}

/* Feature list */
.rl-features {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 26px 40px;
}

.rl-feature {
	display: flex;
	gap: 18px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--rl-line);
}

.rl-feature__index {
	font-family: var(--rl-display);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--rl-orange);
	min-width: 34px;
}

.rl-feature__title {
	margin: 0 0 6px;
	font-size: 1.08rem;
	font-family: var(--rl-body);
	font-weight: 700;
}

.rl-feature__text {
	margin: 0;
	font-size: 0.94rem;
	color: var(--rl-ink-soft);
}

/* Steps */
.rl-steps {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	counter-reset: rl-step;
}

.rl-step {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 8px 18px;
	align-items: start;
	background: var(--rl-white);
	border-radius: var(--rl-radius);
	padding: 22px 24px;
	box-shadow: var(--rl-shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rl-step:hover {
	transform: translateY(-3px);
	box-shadow: var(--rl-shadow);
}

.rl-step__num {
	font-family: var(--rl-display);
	font-size: 1.55rem;
	line-height: 1.2;
	color: var(--rl-orange);
	grid-row: 1;
}

.rl-step__body {
	grid-row: 1;
}

.rl-step__title {
	margin: 2px 0 4px;
	font-size: 1.06rem;
	font-family: var(--rl-body);
	font-weight: 700;
}

.rl-step__text {
	margin: 0;
	font-size: 0.92rem;
	color: var(--rl-ink-soft);
}

.rl-step__media {
	grid-column: 1 / -1;
}

.rl-step__media img {
	border-radius: var(--rl-radius-sm);
	width: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

/* Media block */
.rl-media-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.rl-media-block--reverse .rl-media-block__media {
	order: 2;
}

.rl-media-block__media img {
	width: 100%;
	border-radius: var(--rl-arch);
	box-shadow: var(--rl-shadow);
}

.rl-media-block--plain .rl-media-block__media img {
	border-radius: var(--rl-radius);
}

/* Panoramic photos get the offset outline frame, echoing the hero motif. */
.rl-media-block--plain .rl-media-block__media {
	position: relative;
}

.rl-media-block--plain .rl-media-block__media:has(img)::before {
	content: "";
	position: absolute;
	inset: 20px -20px -20px 20px;
	border: 1.5px solid rgba(165, 100, 45, 0.35);
	border-radius: var(--rl-radius);
	pointer-events: none;
}

.rl-media-block--plain .rl-media-block__media img {
	position: relative;
	z-index: 1;
}

/* Specifications */
.rl-specs {
	width: 100%;
	border-collapse: collapse;
	background: var(--rl-white);
	border: 1px solid var(--rl-line);
	border-radius: var(--rl-radius);
	overflow: hidden;
}

.rl-specs th,
.rl-specs td {
	text-align: left;
	padding: 14px 18px;
	border-bottom: 1px solid var(--rl-line);
	font-size: 0.94rem;
	vertical-align: top;
}

.rl-specs th {
	width: 34%;
	background: var(--rl-cream);
	font-weight: 600;
	color: var(--rl-ink);
}

.rl-specs tr:last-child th,
.rl-specs tr:last-child td {
	border-bottom: 0;
}

/* Gallery */
.rl-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.rl-gallery__item {
	margin: 0;
	background: var(--rl-sand);
	border-radius: var(--rl-radius);
	overflow: hidden;
}

.rl-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

.rl-gallery--arch .rl-gallery__item {
	border-radius: var(--rl-arch);
}

/* Certifications */
.rl-certs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.rl-cert {
	background: var(--rl-white);
	border: 1px solid var(--rl-line);
	border-radius: var(--rl-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.rl-cert__media {
	aspect-ratio: 4 / 3;
	background: var(--rl-cream);
	overflow: hidden;
}

.rl-cert__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rl-cert__body {
	padding: 20px;
}

.rl-cert__title {
	margin: 0 0 6px;
	font-size: 1.04rem;
	font-family: var(--rl-body);
	font-weight: 700;
}

.rl-cert__meta {
	margin: 0;
	font-size: 0.88rem;
	color: var(--rl-ink-muted);
}

/* CTA band */
.rl-cta {
	position: relative;
	overflow: hidden;
	background: linear-gradient(130deg, #172334 0%, #1e2f47 58%, #172334 100%);
	color: var(--rl-cream);
	border-radius: 22px;
	padding: 56px;
	display: grid;
	grid-template-columns: 1.4fr auto;
	gap: 32px;
	align-items: center;
	box-shadow: var(--rl-shadow);
}

/* Faint arch motif echoing the hero, on the right side of the band. */
.rl-cta::after {
	content: "";
	position: absolute;
	right: -70px;
	bottom: -120px;
	width: 300px;
	height: 300px;
	border: 1.5px solid rgba(255, 255, 255, 0.09);
	border-radius: 999px 999px 30px 30px;
	pointer-events: none;
}

.rl-cta > * {
	position: relative;
	z-index: 1;
}

.rl-cta h2 {
	color: var(--rl-white);
	margin-bottom: 10px;
}

.rl-cta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	max-width: 60ch;
}

.rl-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* Contact */
.rl-contact {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 56px;
	align-items: start;
}

.rl-contact__list {
	display: grid;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rl-contact__row {
	border-bottom: 1px solid var(--rl-line);
	padding-bottom: 14px;
}

.rl-contact__label {
	display: block;
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--rl-ink-muted);
	margin-bottom: 4px;
}

.rl-contact__value {
	font-size: 1rem;
	color: var(--rl-ink);
	word-break: break-word;
}

/* Forms */
.rl-form {
	background: var(--rl-white);
	border: 1px solid var(--rl-line);
	border-radius: var(--rl-radius);
	padding: 32px;
	box-shadow: var(--rl-shadow-sm);
}

.rl-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 20px;
}

.rl-form__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.rl-form__field--full {
	grid-column: 1 / -1;
}

.rl-form__field label {
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--rl-ink-soft);
}

.rl-form__field .rl-required {
	color: var(--rl-orange-deep);
}

.rl-form input[type="text"],
.rl-form input[type="email"],
.rl-form input[type="tel"],
.rl-form select,
.rl-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--rl-line);
	border-radius: var(--rl-radius-sm);
	background: var(--rl-cream);
	font-family: inherit;
	font-size: 0.95rem;
	color: var(--rl-ink);
}

.rl-form input:focus,
.rl-form select:focus,
.rl-form textarea:focus {
	outline: 2px solid rgba(196, 104, 42, 0.35);
	outline-offset: 1px;
	border-color: var(--rl-orange);
}

.rl-form textarea {
	min-height: 130px;
	resize: vertical;
}

.rl-form__consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 0.86rem;
	color: var(--rl-ink-muted);
	margin-top: 18px;
}

.rl-form__consent input {
	margin-top: 4px;
}

.rl-form__actions {
	margin-top: 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
}

.rl-form__note {
	font-size: 0.84rem;
	color: var(--rl-ink-muted);
	margin: 0;
}

.rl-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.rl-alert {
	border-radius: var(--rl-radius-sm);
	padding: 14px 16px;
	margin-bottom: 20px;
	font-size: 0.92rem;
}

.rl-alert--ok {
	background: var(--rl-green-soft);
	color: var(--rl-green);
	border: 1px solid rgba(47, 91, 76, 0.25);
}

.rl-alert--error {
	background: #fbe9e2;
	color: #8c3312;
	border: 1px solid rgba(140, 51, 18, 0.22);
}

/* Product detail */
.rl-product-hero {
	padding: 56px 0 64px;
	background: var(--rl-cream);
}

.rl-breadcrumb {
	font-size: 0.85rem;
	color: var(--rl-ink-muted);
	margin-bottom: 22px;
}

.rl-breadcrumb a {
	text-decoration: none;
	color: var(--rl-ink-muted);
}

.rl-breadcrumb a:hover {
	color: var(--rl-orange-deep);
}

.rl-product-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: start;
}

.rl-gallery-main {
	border-radius: var(--rl-radius);
	overflow: hidden;
	background: var(--rl-sand);
	box-shadow: var(--rl-shadow-sm);
}

.rl-gallery-main img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.rl-gallery-thumbs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-top: 14px;
}

.rl-gallery-thumbs button {
	padding: 0;
	border: 1px solid var(--rl-line);
	border-radius: var(--rl-radius-sm);
	overflow: hidden;
	background: var(--rl-white);
	cursor: pointer;
}

.rl-gallery-thumbs button.is-active {
	border-color: var(--rl-orange);
	box-shadow: 0 0 0 2px rgba(196, 104, 42, 0.2);
}

.rl-gallery-thumbs img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.rl-product-panel h1 {
	margin-bottom: 10px;
}

.rl-product-panel__model {
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rl-ink-muted);
	margin-bottom: 12px;
}

.rl-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 18px 0 22px;
}

.rl-badge {
	font-size: 0.78rem;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--rl-white);
	border: 1px solid var(--rl-line);
	color: var(--rl-ink-soft);
}

.rl-badge--green {
	background: var(--rl-green-soft);
	border-color: rgba(47, 91, 76, 0.2);
	color: var(--rl-green);
}

.rl-badge--orange {
	background: var(--rl-orange-soft);
	border-color: rgba(196, 104, 42, 0.22);
	color: var(--rl-orange-deep);
}

.rl-product-highlights {
	margin: 0 0 26px;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.rl-product-highlights li {
	position: relative;
	padding-left: 26px;
	font-size: 0.96rem;
	color: var(--rl-ink-soft);
}

.rl-product-highlights li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 12px;
	height: 12px;
	border-radius: 999px 999px 4px 4px;
	background: var(--rl-orange-soft);
	border: 1px solid var(--rl-orange);
}

.rl-product-panel__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 18px;
}

.rl-product-quick {
	display: grid;
	gap: 8px;
	font-size: 0.9rem;
	color: var(--rl-ink-muted);
	border-top: 1px solid var(--rl-line);
	padding-top: 18px;
}

.rl-product-quick span {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.rl-product-quick strong {
	color: var(--rl-ink);
	font-weight: 600;
}

/* Footer */
.rl-footer {
	background: var(--rl-ink);
	color: rgba(255, 255, 255, 0.76);
	padding: 64px 0 28px;
	font-size: 0.92rem;
}

.rl-footer a {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.76);
}

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

.rl-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
	gap: 36px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.rl-footer__brand {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.rl-footer__brand .rl-brand__mark {
	background: var(--rl-orange);
}

.rl-footer__brand-name {
	font-family: var(--rl-display);
	font-size: 1.16rem;
	color: var(--rl-white);
}

.rl-footer h3 {
	font-family: var(--rl-body);
	font-size: 0.8rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 16px;
}

.rl-footer__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.rl-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	justify-content: space-between;
	padding-top: 22px;
	font-size: 0.84rem;
	color: rgba(255, 255, 255, 0.5);
}

.rl-footer__certs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.rl-footer__certs span {
	font-size: 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	padding: 5px 12px;
}

/* Responsive */
@media (max-width: 1024px) {
	.rl-hero__grid,
	.rl-media-block,
	.rl-contact,
	.rl-product-hero__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.rl-highlights,
	.rl-card-grid--four,
	.rl-card-grid,
	.rl-certs,
	.rl-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rl-steps {
		grid-template-columns: 1fr;
	}

	.rl-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rl-cta {
		grid-template-columns: 1fr;
		padding: 38px;
	}
}

@media (max-width: 720px) {
	.rl-section {
		padding: 60px 0;
	}

	.rl-hero {
		padding: 48px 0;
	}

	.rl-nav__toggle {
		display: block;
	}

	.rl-nav {
		position: absolute;
		left: 16px;
		right: 16px;
		top: 100%;
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		background: var(--rl-white);
		border: 1px solid var(--rl-line);
		border-radius: var(--rl-radius);
		padding: 16px;
		box-shadow: var(--rl-shadow);
		display: none;
	}

	.rl-nav.is-open {
		display: flex;
	}

	.rl-header__phone {
		display: none;
	}

	.rl-highlights,
	.rl-card-grid,
	.rl-card-grid--two,
	.rl-card-grid--four,
	.rl-certs,
	.rl-gallery,
	.rl-features,
	.rl-form__grid,
	.rl-stats {
		grid-template-columns: 1fr;
	}

	.rl-footer__grid {
		grid-template-columns: 1fr;
	}

	.rl-cta {
		padding: 28px;
	}

	.rl-gallery-thumbs {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.rl-header .custom-logo {
		height: 46px;
		max-width: 170px;
	}
}

/* ---- Visual polish ---- */

/* Warm orange list markers instead of default dots. */
.rl-prose-list {
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}

.rl-prose-list li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 8px;
}

.rl-prose-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 8px;
	height: 8px;
	border-radius: 2px 6px 2px 6px;
	background: var(--rl-orange);
	opacity: 0.85;
}

/* Eyebrow dash picks up the light tone on dark surfaces. */
.rl-section--dark .rl-eyebrow::before,
.rl-hero--dark .rl-eyebrow::before {
	background: var(--rl-orange-soft);
}

/* Keep the sticky header separable from the page while scrolling. */
.rl-header {
	box-shadow: 0 8px 28px rgba(23, 35, 52, 0.06);
}
