/* ==========================================================================
   Rezlynxhotel — main.css
   Wine + cream palette, DM Sans + Lora typography, asymmetric magazine layout.
   Prefix: rz-
   ========================================================================== */

:root {
	--rz-primary: #6d1e3a;
	--rz-primary-dark: #241820;
	--rz-accent: #c99a5b;
	--rz-accent-soft: #dbb37a;
	--rz-bg: #fbf6f2;
	--rz-panel: #ffffff;
	--rz-ink: #241820;
	--rz-mut: #6b5560;
	--rz-line: #ebe0d6;
	--rz-highlight: #f5ebe0;

	--rz-font-body: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	--rz-font-display: 'Lora', Georgia, 'Times New Roman', serif;

	--rz-wrap: 1200px;
	--rz-radius: 8px;
	--rz-radius-sm: 4px;
	--rz-shadow-sm: 0 1px 2px rgba(36,24,32,.05);
	--rz-shadow-md: 0 6px 24px rgba(36,24,32,.06);
}

/* Reset-lite */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--rz-bg);
	color: var(--rz-ink);
	font-family: var(--rz-font-body);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a { color: var(--rz-primary); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--rz-primary-dark); }
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

.rz-wrap { max-width: var(--rz-wrap); margin: 0 auto; padding: 0 24px; width: 100%; }
.rz-sr { position: absolute; left: -9999px; }

/* Typography */
h1, h2, h3, h4, h5 {
	font-family: var(--rz-font-display);
	font-weight: 500;
	color: var(--rz-ink);
	line-height: 1.15;
	margin: 0 0 .5em;
	letter-spacing: -0.005em;
}
h1 em, h2 em, h3 em, h4 em {
	font-style: italic;
	color: var(--rz-primary);
	font-weight: 500;
}
.rz-eyebrow {
	font-family: var(--rz-font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rz-primary);
	margin-bottom: 14px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.rz-hdr {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(251, 246, 242, 0.92);
	backdrop-filter: saturate(1.2) blur(8px);
	-webkit-backdrop-filter: saturate(1.2) blur(8px);
	border-bottom: 1px solid transparent;
	transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.rz-hdr.is-scrolled {
	border-bottom-color: var(--rz-line);
	box-shadow: var(--rz-shadow-sm);
	background: rgba(255, 255, 255, 0.96);
}
.rz-hdr-inner {
	max-width: var(--rz-wrap);
	margin: 0 auto;
	padding: 0 24px;
	height: 72px;
	display: flex;
	align-items: center;
	gap: 32px;
}
.rz-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--rz-ink);
	font-weight: 700;
}
.rz-brand:hover { color: var(--rz-ink); }
.rz-brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--rz-primary);
	color: var(--rz-accent);
	font-family: var(--rz-font-body);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.02em;
}
.rz-brand-name {
	font-family: var(--rz-font-display);
	font-weight: 600;
	font-size: 20px;
	letter-spacing: -0.01em;
	color: var(--rz-ink);
}
.rz-nav-wrap { flex: 1; display: flex; justify-content: center; }
.rz-nav, ul.rz-nav {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 32px;
}
.rz-nav li a, ul.rz-nav > li > a {
	color: var(--rz-ink);
	font-weight: 500;
	font-size: 14.5px;
	letter-spacing: 0;
	padding: 8px 0;
	position: relative;
}
.rz-nav li a::after, ul.rz-nav > li > a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2px;
	height: 1px;
	background: var(--rz-primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .2s ease;
}
.rz-nav li a:hover, ul.rz-nav > li > a:hover { color: var(--rz-primary); }
.rz-nav li a:hover::after, ul.rz-nav > li > a:hover::after { transform: scaleX(1); }
.rz-nav .current-menu-item > a, ul.rz-nav > li.current-menu-item > a { color: var(--rz-primary); }
.rz-nav .current-menu-item > a::after { transform: scaleX(1); }

.rz-actions { display: flex; align-items: center; gap: 12px; }
.rz-btn-key {
	display: inline-flex;
	align-items: center;
	background: var(--rz-primary);
	color: #fff;
	font-weight: 600;
	font-size: 13.5px;
	padding: 10px 16px;
	border-radius: 999px;
	letter-spacing: 0;
	transition: background .15s ease;
}
.rz-btn-key:hover { background: var(--rz-primary-dark); color: #fff; }
.rz-cart-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border: 1px solid var(--rz-line);
	border-radius: 999px;
	background: #fff;
	color: var(--rz-ink);
	font-weight: 500;
	font-size: 13.5px;
}
.rz-cart-btn:hover { border-color: var(--rz-primary); color: var(--rz-primary); }
.rz-cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	background: var(--rz-primary);
	color: #fff;
	border-radius: 999px;
	font-size: 11.5px;
	font-weight: 600;
}

.rz-burger {
	display: none;
	background: transparent;
	border: 0;
	width: 40px;
	height: 40px;
	padding: 8px;
	margin-left: auto;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
}
.rz-burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--rz-ink);
	border-radius: 1px;
	transition: transform .2s ease, opacity .2s ease;
}
.rz-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.rz-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.rz-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   Hero — asymmetric 65/35
   ========================================================================== */
.rz-hero {
	background: var(--rz-bg);
	padding: 96px 0 80px;
	position: relative;
}
.rz-hero::before {
	content: '';
	position: absolute;
	inset: auto 0 0 0;
	height: 1px;
	background: var(--rz-line);
}
.rz-hero-inner {
	max-width: var(--rz-wrap);
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 65% 35%;
	gap: 56px;
	align-items: center;
}
.rz-hero-copy { padding-right: 8px; }
.rz-hero-eyebrow {
	display: inline-block;
	padding: 6px 14px;
	background: var(--rz-highlight);
	border-radius: 999px;
	color: var(--rz-primary);
	font-size: 11.5px;
	letter-spacing: 0.12em;
	margin-bottom: 24px;
}
.rz-hero-title {
	font-family: var(--rz-font-display);
	font-style: italic;
	font-weight: 500;
	font-size: 68px;
	line-height: 1.02;
	letter-spacing: -0.02em;
	margin: 0 0 24px;
}
.rz-hero-title em {
	font-style: italic;
	color: var(--rz-primary);
	font-weight: 600;
}
.rz-hero-sub {
	font-family: var(--rz-font-body);
	font-size: 20px;
	line-height: 1.5;
	color: var(--rz-mut);
	max-width: 640px;
	margin: 0 0 32px;
}
.rz-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.rz-hero-facts {
	list-style: none;
	margin: 0;
	padding: 24px 0 0;
	border-top: 1px solid var(--rz-line);
	display: flex;
	gap: 40px;
	color: var(--rz-mut);
	font-size: 13.5px;
}
.rz-hero-facts strong {
	display: block;
	color: var(--rz-primary);
	font-family: var(--rz-font-display);
	font-style: italic;
	font-weight: 500;
	font-size: 26px;
	line-height: 1;
	margin-bottom: 4px;
}

.rz-hero-mockup {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
.rz-hero-mockup svg {
	width: 320px;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 30px 60px rgba(109, 30, 58, .18), 0 8px 20px rgba(36, 24, 32, .08);
	transform: rotate(-2deg);
	transition: transform .3s ease;
}
.rz-hero-mockup:hover svg { transform: rotate(-1deg) translateY(-4px); }
.rz-hero-caption {
	font-size: 12px;
	color: var(--rz-mut);
	letter-spacing: 0.02em;
	font-style: italic;
	font-family: var(--rz-font-display);
}

/* Buttons */
.rz-btn-primary {
	display: inline-flex;
	align-items: center;
	background: var(--rz-primary);
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	padding: 14px 22px;
	border-radius: 999px;
	transition: background .15s ease, transform .15s ease;
}
.rz-btn-primary:hover { background: var(--rz-primary-dark); color: #fff; transform: translateY(-1px); }
.rz-btn-ghost {
	display: inline-flex;
	align-items: center;
	background: transparent;
	color: var(--rz-ink);
	font-weight: 600;
	font-size: 15px;
	padding: 14px 22px;
	border-radius: 999px;
	border: 1px solid var(--rz-line);
}
.rz-btn-ghost:hover { border-color: var(--rz-primary); color: var(--rz-primary); }
.rz-btn-outline {
	display: inline-flex;
	align-items: center;
	background: transparent;
	color: var(--rz-primary);
	font-weight: 600;
	font-size: 15px;
	padding: 14px 24px;
	border-radius: 999px;
	border: 1.5px solid var(--rz-primary);
	transition: background .15s ease, color .15s ease;
}
.rz-btn-outline:hover { background: var(--rz-primary); color: #fff; }

/* ==========================================================================
   Quote strip — burgundy band
   ========================================================================== */
.rz-quote-strip {
	background: var(--rz-primary);
	color: #fff;
	padding: 64px 0;
	position: relative;
	overflow: hidden;
}
.rz-quote-strip::before {
	content: '\201C';
	position: absolute;
	top: -32px;
	left: 24px;
	font-family: var(--rz-font-display);
	font-size: 320px;
	line-height: 1;
	color: var(--rz-accent);
	opacity: 0.14;
	pointer-events: none;
}
.rz-quote-strip blockquote { margin: 0; position: relative; }
.rz-quote {
	font-family: var(--rz-font-display);
	font-style: italic;
	font-weight: 500;
	font-size: 34px;
	line-height: 1.28;
	color: #fff;
	max-width: 940px;
	margin: 0 0 20px;
	letter-spacing: -0.01em;
}
.rz-quote-meta {
	font-family: var(--rz-font-body);
	font-size: 14px;
	color: var(--rz-accent-soft);
	letter-spacing: 0.02em;
}
.rz-quote-meta strong { color: #fff; font-weight: 600; }

/* ==========================================================================
   Sections
   ========================================================================== */
.rz-modules, .rz-ruler-sec, .rz-faq-sec { padding: 96px 0; }
.rz-modules { background: var(--rz-bg); }
.rz-ruler-sec { background: var(--rz-panel); border-top: 1px solid var(--rz-line); border-bottom: 1px solid var(--rz-line); }
.rz-faq-sec { background: var(--rz-bg); }

.rz-sec-head {
	max-width: 780px;
	margin: 0 0 56px;
}
.rz-sec-title {
	font-family: var(--rz-font-display);
	font-weight: 500;
	font-size: 44px;
	line-height: 1.1;
	letter-spacing: -0.015em;
	margin: 0 0 16px;
}
.rz-sec-lead {
	font-size: 17px;
	line-height: 1.55;
	color: var(--rz-mut);
	margin: 0;
}

/* ==========================================================================
   Modules grid — masonry-ish varying heights
   ========================================================================== */
.rz-modules-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
	grid-auto-flow: dense;
}
.rz-card {
	background: var(--rz-panel);
	border: 1px solid var(--rz-line);
	border-left: 4px solid var(--rz-accent);
	border-radius: var(--rz-radius);
	padding: 28px 26px;
	color: var(--rz-ink);
	display: flex;
	flex-direction: column;
	transition: transform .2s ease, box-shadow .2s ease, border-left-color .2s ease;
	position: relative;
	overflow: hidden;
	text-decoration: none;
}
.rz-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--rz-shadow-md);
	border-left-color: var(--rz-primary);
	color: var(--rz-ink);
}
.rz-card-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--rz-cream, #f5ebe0);
	border-radius: 12px;
	margin-bottom: 20px;
	color: var(--rz-primary, #6d1e3a);
}
.rz-card-icon img {
	width: 40px;
	height: 40px;
	display: block;
}
.rz-card:hover .rz-card-icon {
	background: var(--rz-primary, #6d1e3a);
}
.rz-card:hover .rz-card-icon img {
	filter: brightness(0) invert(1);
}
.rz-card--tall  { min-height: 320px; }
.rz-card--med   { min-height: 260px; }
.rz-card--short { min-height: 220px; }

.rz-card-cat {
	font-family: var(--rz-font-body);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rz-primary);
	margin-bottom: 12px;
}
.rz-card-title {
	font-family: var(--rz-font-display);
	font-style: italic;
	font-weight: 500;
	font-size: 22px;
	line-height: 1.2;
	color: var(--rz-ink);
	margin: 0 0 12px;
}
.rz-card-desc {
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--rz-mut);
	margin: 0 0 20px;
	flex: 1;
}
.rz-card-foot {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	border-top: 1px dashed var(--rz-line);
	padding-top: 16px;
	margin-top: auto;
}
.rz-card-price {
	font-family: var(--rz-font-display);
	font-weight: 600;
	font-size: 22px;
	color: var(--rz-primary);
}
.rz-price-unit {
	font-family: var(--rz-font-body);
	font-size: 12px;
	font-weight: 500;
	color: var(--rz-mut);
	margin-left: 2px;
	letter-spacing: 0.04em;
}
.rz-card-cta {
	font-family: var(--rz-font-body);
	font-size: 13px;
	font-weight: 600;
	color: var(--rz-ink);
	letter-spacing: 0.02em;
}
.rz-card-buy { margin-top: 12px; }
.rz-card-buy .button {
	display: inline-block;
	background: var(--rz-primary);
	color: #fff !important;
	font-weight: 600;
	font-size: 13px;
	padding: 8px 14px;
	border-radius: 999px;
	text-decoration: none;
}
.rz-card-buy .button:hover { background: var(--rz-primary-dark); }

/* ==========================================================================
   Ruler — 4-step how it works
   ========================================================================== */
.rz-ruler {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	position: relative;
}
.rz-ruler::before {
	content: '';
	position: absolute;
	top: 30px;
	left: 60px;
	right: 60px;
	height: 0;
	border-top: 2px dashed var(--rz-accent-soft);
	z-index: 0;
}
.rz-ruler-step {
	position: relative;
	background: var(--rz-panel);
	z-index: 1;
	padding-top: 0;
}
.rz-ruler-num {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--rz-primary);
	color: var(--rz-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	box-shadow: 0 0 0 6px var(--rz-panel);
}
.rz-ruler-num em {
	font-family: var(--rz-font-display);
	font-style: italic;
	font-weight: 500;
	font-size: 22px;
}
.rz-ruler-step h4 {
	font-family: var(--rz-font-display);
	font-style: italic;
	font-weight: 500;
	font-size: 20px;
	margin: 0 0 8px;
	color: var(--rz-ink);
}
.rz-ruler-step p {
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--rz-mut);
	margin: 0;
}

/* ==========================================================================
   FAQ blocks — no accordion, all open, distinct visual
   ========================================================================== */
.rz-faq-blocks {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.rz-faq-block {
	background: var(--rz-panel);
	border: 1px solid var(--rz-line);
	border-radius: var(--rz-radius);
	padding: 26px 26px 26px 32px;
	position: relative;
	overflow: hidden;
}
.rz-faq-block::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 6px;
	background: var(--rz-primary);
}
.rz-faq-q {
	font-family: var(--rz-font-display);
	font-style: italic;
	font-weight: 500;
	font-size: 20px;
	color: var(--rz-ink);
	margin: 0 0 10px;
	line-height: 1.25;
}
.rz-faq-a {
	font-size: 15px;
	line-height: 1.6;
	color: var(--rz-mut);
	margin: 0;
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.rz-cta-band {
	background: var(--rz-bg);
	padding: 96px 0;
	border-top: 1px solid var(--rz-line);
}
.rz-cta-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: center;
	background: var(--rz-panel);
	border: 1.5px solid var(--rz-primary);
	border-radius: var(--rz-radius);
	padding: 48px;
}
.rz-cta-title {
	font-family: var(--rz-font-display);
	font-weight: 500;
	font-size: 38px;
	line-height: 1.1;
	color: var(--rz-primary);
	margin: 0 0 12px;
}
.rz-cta-title em { color: var(--rz-primary); font-style: italic; }
.rz-cta-sub {
	font-size: 16px;
	line-height: 1.55;
	color: var(--rz-mut);
	margin: 0;
	max-width: 620px;
}

/* ==========================================================================
   Footer — wine-dark
   ========================================================================== */
.rz-ftr {
	background: var(--rz-primary-dark);
	color: #d4c3ba;
	padding: 72px 0 0;
	margin-top: 0;
}
.rz-ftr a { color: var(--rz-accent-soft); }
.rz-ftr a:hover { color: var(--rz-accent); }
.rz-ftr-main {
	max-width: var(--rz-wrap);
	margin: 0 auto;
	padding: 0 24px 56px;
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 48px;
	border-bottom: 1px solid rgba(219, 179, 122, 0.18);
}
.rz-ftr-brand h3 {
	font-family: var(--rz-font-display);
	color: #fff;
	font-weight: 600;
	font-size: 22px;
	margin: 0 0 14px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.rz-ftr-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: var(--rz-primary);
	color: var(--rz-accent);
	border-radius: 50%;
	font-family: var(--rz-font-body);
	font-weight: 700;
	font-size: 12px;
}
.rz-ftr-tagline {
	font-size: 14px;
	line-height: 1.55;
	color: #cbb8ad;
	margin: 0 0 18px;
	max-width: 400px;
}
.rz-ftr-addr {
	font-style: normal;
	font-size: 13px;
	line-height: 1.7;
	color: #cbb8ad;
}
.rz-ftr-addr strong { color: #fff; }
.rz-ftr-col h4 {
	font-family: var(--rz-font-body);
	font-size: 11.5px;
	font-weight: 700;
	color: var(--rz-accent);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 0 0 18px;
}
.rz-ftr-col ul, ul.rz-foot-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}
.rz-ftr-col li, ul.rz-foot-nav li { margin-bottom: 10px; }
.rz-ftr-col a, ul.rz-foot-nav li a {
	font-size: 14px;
	color: #d4c3ba;
}
.rz-ftr-col a:hover, ul.rz-foot-nav li a:hover { color: var(--rz-accent); }
.rz-ftr-legal-note {
	margin: 24px 0 0;
	font-size: 12px;
	line-height: 1.7;
	color: #a89689;
}
.rz-ftr-legal-note strong { color: var(--rz-accent-soft); }
.rz-ftr-bar {
	max-width: var(--rz-wrap);
	margin: 0 auto;
	padding: 22px 24px;
	font-size: 12px;
	color: #a89689;
	text-align: center;
}
.rz-ftr-bar strong { color: #d4c3ba; }

/* ==========================================================================
   Page templates — /about, /pricing etc.
   ========================================================================== */
.rz-page { padding: 64px 0 96px; background: var(--rz-bg); min-height: 60vh; }
.rz-page .rz-wrap { max-width: 900px; }
.rz-page-body {
	background: var(--rz-panel);
	border: 1px solid var(--rz-line);
	border-radius: var(--rz-radius);
	padding: 56px 56px;
}
.rz-page-hero {
	padding: 0 0 32px;
	margin-bottom: 32px;
	border-bottom: 1px solid var(--rz-line);
}
.rz-page-title {
	font-family: var(--rz-font-display);
	font-weight: 500;
	font-size: 46px;
	line-height: 1.08;
	letter-spacing: -0.015em;
	margin: 0 0 14px;
}
.rz-page-title em { color: var(--rz-primary); font-style: italic; }
.rz-page .rz-lead, .rz-lead {
	font-size: 18px;
	line-height: 1.55;
	color: var(--rz-mut);
	margin: 0;
}
.rz-page-body section { margin-bottom: 40px; }
.rz-page-body section:last-child { margin-bottom: 0; }
.rz-page-body h2 {
	font-family: var(--rz-font-display);
	font-weight: 500;
	font-size: 28px;
	color: var(--rz-ink);
	margin: 32px 0 14px;
	line-height: 1.2;
}
.rz-page-body h2 em { color: var(--rz-primary); font-style: italic; }
.rz-page-body h3 {
	font-family: var(--rz-font-display);
	font-weight: 500;
	font-size: 20px;
	color: var(--rz-ink);
	margin: 24px 0 8px;
	font-style: italic;
}
.rz-page-body p { margin: 0 0 14px; line-height: 1.65; color: var(--rz-ink); }
.rz-page-body ul, .rz-page-body ol { margin: 0 0 18px; padding-left: 22px; line-height: 1.7; }
.rz-page-body li { margin-bottom: 6px; }
.rz-page-body a { color: var(--rz-primary); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.rz-page-body strong { color: var(--rz-ink); }
.rz-page-body code {
	background: var(--rz-highlight);
	padding: 2px 6px;
	border-radius: 3px;
	font-size: 13px;
	color: var(--rz-primary-dark);
}

/* FAQ dl on the /faq page */
.rz-dl { margin: 0; }
.rz-dl-row {
	background: var(--rz-panel);
	border: 1px solid var(--rz-line);
	border-radius: var(--rz-radius);
	padding: 20px 20px 20px 26px;
	margin-bottom: 12px;
	position: relative;
	overflow: hidden;
}
.rz-dl-row::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: var(--rz-primary);
}
.rz-dl-q {
	font-family: var(--rz-font-display);
	font-style: italic;
	font-weight: 500;
	font-size: 18px;
	color: var(--rz-ink);
	margin: 0 0 8px;
}
.rz-dl-a { font-size: 14.5px; line-height: 1.6; color: var(--rz-mut); margin: 0; }

/* Compact price table used in /pricing */
.rz-cmp {
	width: 100%;
	border-collapse: collapse;
	margin: 16px 0;
	font-size: 14px;
}
.rz-cmp th, .rz-cmp td {
	text-align: left;
	padding: 12px 14px;
	border-bottom: 1px solid var(--rz-line);
	vertical-align: top;
}
.rz-cmp thead th {
	background: var(--rz-highlight);
	font-family: var(--rz-font-body);
	font-weight: 700;
	color: var(--rz-primary-dark);
	font-size: 12.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.rz-cmp-price {
	white-space: nowrap;
	font-family: var(--rz-font-display);
	font-weight: 600;
	color: var(--rz-primary);
}

/* Reviews list */
.rz-reviews-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.rz-review {
	background: var(--rz-panel);
	border: 1px solid var(--rz-line);
	border-radius: var(--rz-radius);
	padding: 22px;
	border-top: 3px solid var(--rz-accent);
}
.rz-review-stars { color: var(--rz-accent); font-size: 15px; margin-bottom: 8px; letter-spacing: 2px; }
.rz-review-quote {
	font-family: var(--rz-font-display);
	font-style: italic;
	font-size: 15px;
	line-height: 1.55;
	margin: 0 0 12px;
	color: var(--rz-ink);
}
.rz-review-meta { font-size: 12.5px; color: var(--rz-mut); line-height: 1.5; }
.rz-review-meta strong { color: var(--rz-ink); }

.rz-addr {
	background: var(--rz-highlight);
	padding: 18px 20px;
	border-radius: var(--rz-radius);
	font-size: 14px;
	line-height: 1.7;
	border-left: 4px solid var(--rz-accent);
}

.rz-contact-form { display: grid; gap: 12px; max-width: 520px; }
.rz-contact-form label { font-size: 13px; font-weight: 600; margin-bottom: 4px; display: block; color: var(--rz-primary-dark); }
.rz-contact-form input, .rz-contact-form select, .rz-contact-form textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--rz-line);
	border-radius: var(--rz-radius-sm);
	background: var(--rz-panel);
	font-family: var(--rz-font-body);
	font-size: 14px;
	color: var(--rz-ink);
}
.rz-contact-form input:focus, .rz-contact-form select:focus, .rz-contact-form textarea:focus {
	outline: none;
	border-color: var(--rz-primary);
	box-shadow: 0 0 0 3px rgba(109, 30, 58, 0.12);
}
.rz-contact-form button {
	background: var(--rz-primary);
	color: #fff;
	border: 0;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 14px;
	justify-self: start;
}
.rz-contact-form button:hover { background: var(--rz-primary-dark); }

/* Blog list */
.rz-blog-list { display: grid; gap: 24px; }
.rz-blog-item {
	background: var(--rz-panel);
	border: 1px solid var(--rz-line);
	border-radius: var(--rz-radius);
	padding: 28px;
	border-left: 4px solid var(--rz-accent);
}
.rz-blog-item h2 {
	font-family: var(--rz-font-display);
	font-weight: 500;
	font-size: 26px;
	margin: 0 0 8px;
	font-style: italic;
}
.rz-blog-item h2 a { color: var(--rz-ink); }
.rz-blog-item h2 a:hover { color: var(--rz-primary); }
.rz-blog-meta { font-size: 12px; letter-spacing: 0.08em; color: var(--rz-mut); text-transform: uppercase; margin: 0 0 12px; }
.rz-blog-excerpt { color: var(--rz-mut); font-size: 14.5px; line-height: 1.6; margin-bottom: 10px; }
.rz-blog-more { font-weight: 600; font-size: 13.5px; color: var(--rz-primary); }
.rz-prose p { font-size: 16px; line-height: 1.7; margin: 0 0 16px; }

/* ==========================================================================
   WooCommerce overrides (kill-switch — force our grid)
   ========================================================================== */
.rz-shop { padding: 64px 0 96px; background: var(--rz-bg); }
.rz-shop .rz-wrap { max-width: var(--rz-wrap); }
.woocommerce ul.products, .woocommerce-page ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 20px !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
	width: auto !important;
	float: none !important;
	margin: 0 !important;
	clear: none !important;
}
.woocommerce ul.products li.product .price {
	color: var(--rz-primary) !important;
	font-family: var(--rz-font-display) !important;
	font-weight: 600 !important;
	font-size: 22px !important;
}
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce .button {
	background: var(--rz-primary) !important;
	color: #fff !important;
	border-radius: 999px !important;
	padding: 10px 18px !important;
	font-weight: 600 !important;
	font-size: 13.5px !important;
	border: 0 !important;
	text-decoration: none !important;
	transition: background .15s ease !important;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce .button:hover { background: var(--rz-primary-dark) !important; }
.woocommerce a.button.alt, .woocommerce button.button.alt { background: var(--rz-primary) !important; color: #fff !important; }
.woocommerce div.product .product_title {
	font-family: var(--rz-font-display) !important;
	font-weight: 500 !important;
	font-style: italic !important;
	font-size: 40px !important;
	color: var(--rz-ink) !important;
	line-height: 1.1 !important;
	margin: 0 0 16px !important;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
	color: var(--rz-primary) !important;
	font-family: var(--rz-font-display) !important;
	font-weight: 600 !important;
	font-size: 32px !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: var(--rz-panel) !important;
	border-color: var(--rz-line) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--rz-primary) !important; }
.woocommerce .quantity input.qty {
	padding: 8px !important;
	border: 1px solid var(--rz-line) !important;
	border-radius: var(--rz-radius-sm) !important;
}
.woocommerce nav.woocommerce-breadcrumb {
	font-size: 12.5px;
	color: var(--rz-mut);
	margin-bottom: 24px;
	letter-spacing: 0.04em;
}
.woocommerce nav.woocommerce-breadcrumb a { color: var(--rz-primary); }
.woocommerce table.shop_table {
	background: var(--rz-panel);
	border: 1px solid var(--rz-line);
	border-radius: var(--rz-radius);
	border-collapse: separate;
}
.woocommerce table.shop_table th { background: var(--rz-highlight); font-weight: 700; color: var(--rz-primary-dark); }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	border-top-color: var(--rz-primary) !important;
	background: var(--rz-highlight) !important;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
	.rz-hero-title { font-size: 56px; }
	.rz-sec-title { font-size: 38px; }
	.rz-hero-inner { gap: 40px; grid-template-columns: 60% 40%; }
	.rz-hero-mockup svg { width: 280px; }
}

@media (max-width: 900px) {
	.rz-hdr-inner { height: 64px; gap: 12px; }
	.rz-burger { display: inline-flex; }
	.rz-nav-wrap {
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: var(--rz-panel);
		border-top: 1px solid var(--rz-line);
		border-bottom: 1px solid var(--rz-line);
		padding: 12px 24px;
		display: none;
	}
	.rz-nav-wrap.is-open { display: flex; }
	.rz-nav, ul.rz-nav { flex-direction: column; gap: 8px; width: 100%; }
	.rz-actions .rz-cart-btn .rz-cart-label { display: none; }
	.rz-btn-key { padding: 8px 12px; font-size: 12.5px; }

	.rz-hero { padding: 64px 0; }
	.rz-hero-inner { grid-template-columns: 1fr; gap: 40px; }
	.rz-hero-title { font-size: 44px; }
	.rz-hero-sub { font-size: 17px; }
	.rz-hero-mockup { align-items: flex-start; }
	.rz-hero-mockup svg { width: 260px; transform: rotate(-1deg); }
	.rz-hero-facts { gap: 24px; flex-wrap: wrap; }

	.rz-quote { font-size: 24px; }
	.rz-modules-grid { grid-template-columns: repeat(2, 1fr); }
	.rz-modules-grid .rz-card { min-height: auto; }

	.rz-ruler { grid-template-columns: repeat(2, 1fr); gap: 32px; }
	.rz-ruler::before { display: none; }

	.rz-faq-blocks { grid-template-columns: 1fr; }
	.rz-cta-inner { grid-template-columns: 1fr; padding: 32px; }
	.rz-cta-title { font-size: 30px; }
	.rz-reviews-list { grid-template-columns: 1fr; }

	.rz-ftr-main { grid-template-columns: 1fr; gap: 32px; }
	.rz-page-body { padding: 32px 24px; }
	.rz-page-title { font-size: 34px; }

	.woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 560px) {
	.rz-hero-title { font-size: 34px; }
	.rz-sec-title { font-size: 28px; }
	.rz-modules-grid { grid-template-columns: 1fr; }
	.rz-ruler { grid-template-columns: 1fr; }
	.rz-quote-strip { padding: 40px 0; }
	.rz-quote { font-size: 20px; }
	.rz-modules, .rz-ruler-sec, .rz-faq-sec, .rz-cta-band { padding: 56px 0; }
	.woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: 1fr !important; }
}

/* Safety */
html, body { max-width: 100vw; overflow-x: hidden; }
img, svg, video { max-width: 100%; height: auto; }
