/* ============================================================
   RASPINA CUSTOM PAGES — Awwwards-inspired editorial system
   ============================================================ */

:root {
	--rsp-red: #c62828;
	--rsp-red-dark: #8e0000;
	--rsp-gold: #d4a13b;
	--rsp-cream: #f5f0e6;
	--rsp-ink: #121212;
	--rsp-ink-soft: #2d2d2d;
	--rsp-muted: #6b6560;
	--rsp-white: #ffffff;
	--rsp-radius: 20px;
	--rsp-radius-sm: 12px;
	--rsp-shadow: 0 24px 60px rgba(18, 18, 18, 0.12);
	--rsp-font: 'Vazirmatn', system-ui, sans-serif;
	--rsp-max: 1280px;
	--rsp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset Woodmart container on custom pages */
body.rsp-custom-page-active .wd-page-content.main-page-wrapper,
body.rsp-custom-page-active .wd-content-layout.content-layout-wrapper {
	max-width: none;
	padding: 0;
	margin: 0;
	width: 100%;
}

body.rsp-custom-page-active .wd-content-area.site-content {
	padding: 0;
	margin: 0;
}

body.rsp-custom-page-active .page-title,
body.rsp-custom-page-active .wd-page-title {
	display: none !important;
}

.rsp-page-shell {
	direction: rtl;
	font-family: var(--rsp-font);
	color: var(--rsp-ink-soft);
	background: var(--rsp-cream);
	overflow: hidden;
	margin: 0;
	padding: 0;
}

/* Keep the first custom-page hero flush with the header. The fixed-header
   offset remains owned by the global header layout; this only removes the
   extra content spacing added by page/theme wrappers. */
body.rsp-custom-page-active .wd-page-content.main-page-wrapper > .rsp-page-shell,
body.rsp-custom-page-active .wd-content-area.site-content > .rsp-page-shell,
body.rsp-custom-page-active .rsp-page-shell > .rsp-hero:first-child {
	margin-top: 0 !important;
	padding-top: 0;
}

body.rsp-custom-page-active .rsp-page-shell > .rsp-hero:first-child {
	/* Preserve the hero's internal title spacing while keeping its outer edge flush. */
	padding-top: clamp(100px, 14vw, 140px);
}

/* ── HERO ── */
.rsp-hero {
	position: relative;
	min-height: clamp(420px, 72vh, 640px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(100px, 14vw, 140px) clamp(20px, 5vw, 48px) clamp(60px, 8vw, 80px);
	color: var(--rsp-white);
	isolation: isolate;
}

.rsp-hero__bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, #0a0a0a 0%, #1a1010 40%, #2a0f0f 100%);
	overflow: hidden;
}

.rsp-hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.55;
	animation: rsp-float 12s ease-in-out infinite;
}

.rsp-hero__orb--1 {
	width: 420px;
	height: 420px;
	background: var(--rsp-red);
	top: -10%;
	right: -5%;
}

.rsp-hero__orb--2 {
	width: 320px;
	height: 320px;
	background: var(--rsp-gold);
	bottom: -15%;
	left: 5%;
	animation-delay: -4s;
}

.rsp-hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
}

.rsp-hero__inner {
	position: relative;
	z-index: 2;
	max-width: var(--rsp-max);
	width: 100%;
	text-align: center;
}

.rsp-hero__eyebrow {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--rsp-gold);
	margin-bottom: 1rem;
	padding: 0.35rem 1rem;
	border: 1px solid rgba(212, 161, 59, 0.35);
	border-radius: 999px;
	background: rgba(212, 161, 59, 0.08);
}

.rsp-hero__title {
	font-size: clamp(2.2rem, 6vw, 4.5rem);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
}

.rsp-hero__subtitle {
	font-size: clamp(1rem, 2.2vw, 1.25rem);
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.78);
	max-width: 640px;
	margin: 0 auto 2rem;
}

.rsp-hero__stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(12px, 2vw, 24px);
	margin-top: 2rem;
}

.rsp-hero__stat {
	min-width: 120px;
	padding: 1rem 1.25rem;
	border-radius: var(--rsp-radius-sm);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
}

.rsp-hero__stat strong {
	display: block;
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--rsp-gold);
	margin-bottom: 0.25rem;
}

.rsp-hero__stat span {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.65);
}

.rsp-hero__scroll {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.rsp-hero__scroll span {
	display: block;
	width: 24px;
	height: 40px;
	border: 2px solid rgba(255,255,255,0.3);
	border-radius: 12px;
	position: relative;
}

.rsp-hero__scroll span::after {
	content: '';
	position: absolute;
	top: 8px;
	left: 50%;
	width: 4px;
	height: 8px;
	background: var(--rsp-gold);
	border-radius: 2px;
	transform: translateX(-50%);
	animation: rsp-scroll 2s ease infinite;
}

/* Hero variants */
.rsp-hero--film .rsp-hero__bg {
	background: linear-gradient(160deg, #050505 0%, #120808 50%, #1a0505 100%);
}

.rsp-hero--film .rsp-hero__orb--1 {
	background: #ff1744;
}

.rsp-hero--news .rsp-hero__orb--2 {
	background: #ff8a65;
}

.rsp-hero--guide .rsp-hero__title,
.rsp-hero--tracking .rsp-hero__title,
.rsp-hero--policy .rsp-hero__title,
.rsp-hero--faq .rsp-hero__title {
	background: linear-gradient(135deg, #fff 0%, #ffe082 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* ── ARCHIVE SECTION ── */
.rsp-archive,
.rsp-static {
	max-width: var(--rsp-max);
	margin: 0 auto;
	padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 40px);
}

.rsp-static-intro {
	background: var(--rsp-white);
	border-radius: var(--rsp-radius);
	padding: clamp(20px, 4vw, 32px);
	box-shadow: var(--rsp-shadow);
	margin-bottom: clamp(24px, 4vw, 36px);
}

.rsp-static-intro h2 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.1rem, 2.5vw, 1.45rem);
	font-weight: 800;
	color: var(--rsp-ink);
}

.rsp-static-intro p {
	margin: 0 0 0.85rem;
	line-height: 1.95;
	color: var(--rsp-muted);
	font-size: 0.98rem;
}

.rsp-static-intro p:last-child {
	margin-bottom: 0;
}

.rsp-static-intro ul {
	margin: 0;
	padding-right: 1.2rem;
}

.rsp-static-intro li {
	margin: 0 0 0.6rem;
	line-height: 1.9;
	color: var(--rsp-muted);
	font-size: 0.96rem;
}

.rsp-static-intro li:last-child {
	margin-bottom: 0;
}

.rsp-archive__head {
	margin-bottom: clamp(32px, 5vw, 56px);
}

.rsp-archive__label {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	margin: 0 0 0.5rem;
	color: var(--rsp-ink);
}

.rsp-archive__desc {
	color: var(--rsp-muted);
	font-size: 1.05rem;
	margin: 0;
}

/* ── CARD GRIDS ── */
.rsp-grid {
	display: grid;
	gap: clamp(20px, 3vw, 32px);
}

.rsp-grid--exhibition {
	grid-template-columns: repeat(12, 1fr);
}

.rsp-grid--exhibition .rsp-card {
	grid-column: span 4;
}

.rsp-grid--exhibition .rsp-card--featured {
	grid-column: span 8;
	grid-row: span 1;
}

.rsp-grid--news {
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.rsp-grid--film {
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* ── CARDS ── */
.rsp-card {
	border-radius: var(--rsp-radius);
	overflow: hidden;
	background: var(--rsp-white);
	box-shadow: var(--rsp-shadow);
	transition: transform 0.5s var(--rsp-ease), box-shadow 0.5s var(--rsp-ease);
}

.rsp-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 32px 70px rgba(18, 18, 18, 0.18);
}

.rsp-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
}

.rsp-card--featured .rsp-card__link {
	flex-direction: row;
}

.rsp-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	background:
		linear-gradient(135deg, #2a2a2a, #c62828),
		var(--rsp-card-img, none) center / cover no-repeat;
	overflow: hidden;
}

.rsp-card__media:not(.rsp-card__media--placeholder) {
	background:
		var(--rsp-card-img, none) center / cover no-repeat,
		linear-gradient(135deg, #2a2a2a, #c62828);
}

.rsp-card--featured .rsp-card__media {
	flex: 1 1 55%;
	min-height: 280px;
	aspect-ratio: auto;
}

.rsp-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
	opacity: 0.7;
	transition: opacity 0.4s;
}

.rsp-card:hover .rsp-card__overlay {
	opacity: 0.9;
}

.rsp-card__tag {
	position: absolute;
	top: 16px;
	right: 16px;
	padding: 0.35rem 0.85rem;
	font-size: 0.75rem;
	font-weight: 600;
	background: rgba(255,255,255,0.92);
	color: var(--rsp-red);
	border-radius: 999px;
	z-index: 2;
}

.rsp-card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.15);
	border: 2px solid rgba(255,255,255,0.6);
	border-radius: 50%;
	color: #fff;
	font-size: 1.2rem;
	backdrop-filter: blur(8px);
	z-index: 2;
	transition: transform 0.4s var(--rsp-ease), background 0.4s;
}

.rsp-card:hover .rsp-card__play {
	transform: translate(-50%, -50%) scale(1.1);
	background: var(--rsp-red);
	border-color: var(--rsp-red);
}

.rsp-card__body {
	padding: clamp(18px, 3vw, 28px);
	flex: 1;
	display: flex;
	flex-direction: column;
}

.rsp-card--featured .rsp-card__body {
	flex: 1 1 45%;
	justify-content: center;
}

.rsp-card__date {
	font-size: 0.8rem;
	color: var(--rsp-gold);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.rsp-card__title {
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	font-weight: 700;
	line-height: 1.45;
	margin: 0 0 0.75rem;
	color: var(--rsp-ink);
}

.rsp-card--featured .rsp-card__title {
	font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.rsp-card__excerpt {
	font-size: 0.92rem;
	color: var(--rsp-muted);
	line-height: 1.7;
	margin: 0 0 1rem;
	flex: 1;
}

.rsp-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--rsp-red);
	margin-top: auto;
}

.rsp-card__cta i {
	transition: transform 0.3s var(--rsp-ease);
}

.rsp-card:hover .rsp-card__cta i {
	transform: translateX(-4px);
}

/* Film cards — cinematic */
.rsp-card--film {
	background: #141414;
}

.rsp-card--film .rsp-card__body {
	color: #eee;
}

.rsp-card--film .rsp-card__title {
	color: #fff;
}

.rsp-card--film .rsp-card__excerpt {
	color: rgba(255,255,255,0.55);
}

.rsp-card--film .rsp-card__media {
	aspect-ratio: 16 / 9;
}

/* ── PAGINATION ── */
.rsp-pagination {
	margin-top: 3rem;
}

.rsp-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.rsp-pagination a,
.rsp-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border-radius: 999px;
	background: var(--rsp-white);
	border: 1px solid rgba(0,0,0,0.08);
	font-weight: 600;
	transition: all 0.3s;
}

.rsp-pagination a:hover,
.rsp-pagination .current {
	background: var(--rsp-red);
	color: #fff;
	border-color: var(--rsp-red);
}

/* ── EMPTY STATE ── */
.rsp-empty {
	text-align: center;
	padding: 4rem 2rem;
	background: var(--rsp-white);
	border-radius: var(--rsp-radius);
	border: 2px dashed rgba(0,0,0,0.08);
}

.rsp-empty i {
	font-size: 2.5rem;
	color: var(--rsp-red);
	margin-bottom: 1rem;
}

/* ── STEPS (Order Guide) ── */
.rsp-steps {
	display: grid;
	gap: 0;
	position: relative;
}

.rsp-steps::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 39px;
	width: 2px;
	background: linear-gradient(to bottom, var(--rsp-red), var(--rsp-gold));
	opacity: 0.25;
}

.rsp-step {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 1.5rem;
	padding: 2rem 0;
	position: relative;
}

.rsp-step__num {
	grid-row: 1 / 3;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--rsp-red);
	background: var(--rsp-white);
	border: 3px solid var(--rsp-red);
	border-radius: 50%;
	box-shadow: var(--rsp-shadow);
	position: relative;
	z-index: 1;
}

.rsp-step__icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(198, 40, 40, 0.08);
	color: var(--rsp-red);
	border-radius: 12px;
	font-size: 1.2rem;
}

.rsp-page-icon {
	display: block !important;
	flex: 0 0 auto;
	width: 1.5rem !important;
	height: 1.5rem !important;
	max-width: 100%;
	max-height: 100%;
	color: inherit;
	fill: none;
	stroke: currentColor !important;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	overflow: visible;
	visibility: visible !important;
	opacity: 1 !important;
	pointer-events: none;
}

.rsp-step__icon .rsp-page-icon {
	width: 24px !important;
	height: 24px !important;
}

.rsp-rule-card__icon .rsp-page-icon {
	width: 28px !important;
	height: 28px !important;
}

.rsp-rule-card__icon .fas,
.rsp-rule-card__icon .fa {
	width: 28px !important;
	height: 28px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: Arial, sans-serif !important;
	font-style: normal !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	font-size: 18px !important;
	-webkit-font-smoothing: antialiased;
}

.rsp-rule-card__icon .fas::before,
.rsp-rule-card__icon .fa::before {
	font-family: Arial, sans-serif !important;
	font-weight: 800 !important;
	line-height: 1 !important;
}

.rsp-rule-card__icon .fas.fa-circle-info,
.rsp-rule-card__icon .fa.fa-circle-info,
.rsp-rule-card__icon .fas.fa-info-circle,
.rsp-rule-card__icon .fa.fa-info-circle,
.rsp-rule-card__icon .fas.fa-clock,
.rsp-rule-card__icon .fa.fa-clock,
.rsp-rule-card__icon .fas.fa-box-open,
.rsp-rule-card__icon .fa.fa-box-open,
.rsp-rule-card__icon .fas.fa-arrows-rotate,
.rsp-rule-card__icon .fa.fa-arrows-rotate,
.rsp-rule-card__icon .fas.fa-sync-alt,
.rsp-rule-card__icon .fa.fa-sync-alt,
.rsp-rule-card__icon .fas.fa-ban,
.rsp-rule-card__icon .fa.fa-ban {
	border: 2px solid currentColor !important;
	border-radius: 999px !important;
}

.rsp-rule-card__icon .fas.fa-circle-info::before,
.rsp-rule-card__icon .fa.fa-circle-info::before,
.rsp-rule-card__icon .fas.fa-info-circle::before,
.rsp-rule-card__icon .fa.fa-info-circle::before {
	content: "i" !important;
}

.rsp-rule-card__icon .fas.fa-clock::before,
.rsp-rule-card__icon .fa.fa-clock::before {
	content: "◷" !important;
	font-size: 22px !important;
}

.rsp-rule-card__icon .fas.fa-box-open::before,
.rsp-rule-card__icon .fa.fa-box-open::before {
	content: "□" !important;
	font-size: 22px !important;
}

.rsp-rule-card__icon .fas.fa-arrows-rotate::before,
.rsp-rule-card__icon .fa.fa-arrows-rotate::before,
.rsp-rule-card__icon .fas.fa-sync-alt::before,
.rsp-rule-card__icon .fa.fa-sync-alt::before {
	content: "↻" !important;
	font-size: 21px !important;
}

.rsp-rule-card__icon .fas.fa-ban::before,
.rsp-rule-card__icon .fa.fa-ban::before {
	content: "⊘" !important;
	font-size: 22px !important;
}

.rsp-highlight > .rsp-page-icon {
	width: 34px !important;
	height: 34px !important;
}

.rsp-faq-search .rsp-page-icon {
	width: 21px !important;
	height: 21px !important;
}

.rsp-accordion__trigger .rsp-page-icon {
	width: 20px !important;
	height: 20px !important;
}

.rsp-step__content h2 {
	font-size: 1.25rem;
	font-weight: 800;
	margin: 0 0 0.5rem;
}

.rsp-step__content p {
	margin: 0;
	color: var(--rsp-muted);
	line-height: 1.8;
}

/* ── TRACKING ── */
.rsp-track-board {
	background: var(--rsp-white);
	border-radius: var(--rsp-radius);
	padding: clamp(24px, 4vw, 40px);
	box-shadow: var(--rsp-shadow);
	margin-bottom: 2rem;
}

.rsp-track-board__header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.rsp-track-board__header h2 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 800;
}

.rsp-pipeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	position: relative;
}

.rsp-pipeline::before {
	content: '';
	position: absolute;
	top: 20px;
	right: 10%;
	left: 10%;
	height: 3px;
	background: rgba(0,0,0,0.08);
	z-index: 0;
}

.rsp-pipeline__item {
	text-align: center;
	position: relative;
	z-index: 1;
}

.rsp-pipeline__dot {
	width: 40px;
	height: 40px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: #e0e0e0;
	border: 3px solid #fff;
	box-shadow: 0 0 0 2px #e0e0e0;
	transition: all 0.4s;
}

.rsp-pipeline__item--done .rsp-pipeline__dot {
	background: var(--rsp-red);
	box-shadow: 0 0 0 2px var(--rsp-red);
}

.rsp-pipeline__item--active .rsp-pipeline__dot {
	background: var(--rsp-gold);
	box-shadow: 0 0 0 2px var(--rsp-gold), 0 0 20px rgba(212,161,59,0.5);
	animation: rsp-pulse 2s ease infinite;
}

.rsp-pipeline__item h3 {
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0 0 0.35rem;
}

.rsp-pipeline__item p {
	font-size: 0.82rem;
	color: var(--rsp-muted);
	margin: 0;
	line-height: 1.6;
}

.rsp-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1rem;
	margin-bottom: 2rem;
}

.rsp-info-card {
	background: var(--rsp-white);
	border-radius: var(--rsp-radius-sm);
	padding: 1.5rem;
	box-shadow: 0 8px 24px rgba(0,0,0,0.06);
	border-right: 4px solid var(--rsp-red);
}

.rsp-info-card__num {
	display: inline-flex;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	background: var(--rsp-red);
	color: #fff;
	border-radius: 8px;
	font-weight: 800;
	font-size: 0.85rem;
	margin-bottom: 0.75rem;
}

.rsp-info-card p {
	margin: 0;
	line-height: 1.7;
	font-size: 0.92rem;
}

.rsp-highlight {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.5rem 2rem;
	border-radius: var(--rsp-radius);
	background: linear-gradient(135deg, rgba(198,40,40,0.08), rgba(212,161,59,0.12));
	border: 1px solid rgba(198,40,40,0.15);
}

.rsp-highlight > .rsp-page-icon {
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	color: var(--rsp-red);
}

.rsp-highlight strong {
	display: block;
	font-size: 1.1rem;
	margin-bottom: 0.25rem;
}

.rsp-highlight p {
	margin: 0;
	color: var(--rsp-muted);
	font-size: 0.92rem;
}

/* ── POSTAL TRACKER — ruby parcel observatory ── */
.rsp-postal-tracker {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: minmax(0, 1.85fr) minmax(240px, 0.8fr);
	gap: clamp(16px, 2vw, 26px);
	margin: 0 0 clamp(24px, 4vw, 36px);
	padding: clamp(18px, 2.6vw, 30px);
	overflow: hidden;
	border: 1px solid rgba(212, 161, 59, 0.3);
	border-radius: 32px;
	background:
		radial-gradient(circle at 12% 8%, rgba(212, 161, 59, 0.13), transparent 30%),
		linear-gradient(135deg, #130b0c 0%, #241012 45%, #480d14 100%);
	box-shadow: 0 30px 70px rgba(50, 7, 12, 0.28), 0 8px 24px rgba(18, 18, 18, 0.12);
	color: #fff;
	font-family: var(--rsp-font);
}

.rsp-postal-tracker,
.rsp-postal-tracker * {
	box-sizing: border-box;
}

.rsp-postal-tracker::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 32px 32px;
	mask-image: linear-gradient(115deg, transparent 8%, #000 48%, transparent 92%);
	pointer-events: none;
}

.rsp-postal-tracker::after {
	content: '';
	position: absolute;
	inset: 7px;
	z-index: 4;
	border: 1px solid rgba(255, 255, 255, 0.055);
	border-radius: 26px;
	pointer-events: none;
}

.rsp-postal-tracker__glow {
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	filter: blur(62px);
	pointer-events: none;
}

.rsp-postal-tracker__glow--ruby {
	width: 300px;
	height: 300px;
	top: -135px;
	right: -80px;
	background: rgba(198, 40, 40, 0.5);
}

.rsp-postal-tracker__glow--gold {
	width: 230px;
	height: 230px;
	bottom: -135px;
	left: 12%;
	background: rgba(212, 161, 59, 0.26);
}

.rsp-postal-tracker__content,
.rsp-postal-tracker__scene {
	position: relative;
	z-index: 2;
	min-width: 0;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 248, 239, 0.075);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}

.rsp-postal-tracker__content {
	padding: clamp(24px, 3vw, 38px);
	border-radius: 24px 24px 24px 8px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.rsp-postal-tracker__header {
	max-width: 680px;
	margin: 0 0 clamp(20px, 2.6vw, 28px);
}

.rsp-postal-tracker__eyebrow {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 10px;
	color: #efc66f;
	font-size: 0.78rem;
	font-weight: 750;
}

.rsp-postal-tracker__eyebrow span {
	position: relative;
	width: 24px;
	height: 1px;
	background: var(--rsp-gold);
	box-shadow: -7px 0 0 rgba(212, 161, 59, 0.35);
}

.rsp-postal-tracker__eyebrow span::after {
	content: '';
	position: absolute;
	top: -2px;
	right: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #ffe0a1;
	box-shadow: 0 0 10px rgba(212, 161, 59, 0.8);
}

.rsp-postal-tracker__header h2 {
	margin: 0 0 10px;
	color: #fffdf9;
	font-size: clamp(1.7rem, 3.25vw, 2.55rem);
	font-weight: 850;
	line-height: 1.25;
	letter-spacing: -0.035em;
}

.rsp-postal-tracker__lead {
	max-width: 610px;
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.96rem;
	line-height: 1.9;
}

.rsp-postal-tracker__form {
	margin: 0;
}

.rsp-postal-tracker__label {
	display: block;
	margin: 0 0 9px;
	color: rgba(255, 255, 255, 0.92);
	font-family: var(--rsp-font);
	font-size: 0.86rem;
	font-weight: 700;
}

.rsp-postal-tracker__controls {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(190px, auto);
	gap: 10px;
	align-items: stretch;
}

.rsp-postal-tracker__field {
	position: relative;
	min-width: 0;
}

.rsp-postal-tracker__field-mark {
	position: absolute;
	top: 50%;
	right: 17px;
	z-index: 2;
	width: 23px;
	height: 23px;
	border: 1px solid rgba(212, 161, 59, 0.82);
	border-radius: 7px;
	transform: translateY(-50%) rotate(45deg);
	pointer-events: none;
}

.rsp-postal-tracker__field-mark::before {
	content: '';
	position: absolute;
	inset: 7px;
	border-radius: 50%;
	background: var(--rsp-gold);
	box-shadow: 0 0 9px rgba(212, 161, 59, 0.7);
}

.rsp-postal-tracker .rsp-postal-tracker__input {
	width: 100%;
	min-height: 58px;
	margin: 0;
	padding: 12px 52px 12px 16px;
	border: 1px solid rgba(255, 255, 255, 0.19);
	border-radius: 14px;
	outline: 0;
	background: rgba(12, 7, 8, 0.62);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
	color: #fff;
	font-family: var(--rsp-font);
	font-size: 1rem;
	font-weight: 650;
	line-height: 1.5;
	letter-spacing: 0.1em;
	direction: ltr;
	text-align: center;
	caret-color: var(--rsp-gold);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
	appearance: none;
}

.rsp-postal-tracker .rsp-postal-tracker__input::placeholder {
	color: rgba(255, 255, 255, 0.42);
	opacity: 1;
	font-weight: 500;
	letter-spacing: 0.065em;
}

.rsp-postal-tracker .rsp-postal-tracker__input:hover {
	border-color: rgba(212, 161, 59, 0.48);
	background: rgba(12, 7, 8, 0.72);
}

.rsp-postal-tracker .rsp-postal-tracker__input:focus,
.rsp-postal-tracker .rsp-postal-tracker__input:focus-visible {
	border-color: #f0c66d;
	box-shadow: 0 0 0 4px rgba(212, 161, 59, 0.2), 0 10px 28px rgba(0, 0, 0, 0.18);
}

.rsp-postal-tracker .rsp-postal-tracker__input[aria-invalid='true'] {
	border-color: #ff9d9d;
	background: rgba(91, 12, 20, 0.6);
	box-shadow: 0 0 0 4px rgba(255, 120, 120, 0.15);
}

.rsp-postal-tracker .rsp-postal-tracker__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 190px;
	min-height: 58px;
	margin: 0;
	padding: 12px 20px;
	border: 1px solid #e3b653;
	border-radius: 14px;
	outline: 0;
	background: var(--rsp-gold);
	box-shadow: 0 11px 26px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.35);
	color: #211307;
	font-family: var(--rsp-font);
	font-size: 0.92rem;
	font-weight: 850;
	line-height: 1.4;
	text-transform: none;
	cursor: pointer;
	transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
	appearance: none;
}

.rsp-postal-tracker .rsp-postal-tracker__submit:hover {
	background: #e4b54f;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.27), 0 0 0 1px rgba(255, 224, 161, 0.22);
	transform: translateY(-2px);
}

.rsp-postal-tracker .rsp-postal-tracker__submit:active {
	box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2);
	transform: translateY(0) scale(0.985);
}

.rsp-postal-tracker .rsp-postal-tracker__submit:focus-visible {
	box-shadow: 0 0 0 4px #2a1114, 0 0 0 7px #f0c66d;
}

.rsp-postal-tracker .rsp-postal-tracker__submit:disabled {
	opacity: 0.68;
	cursor: progress;
	transform: none;
}

.rsp-postal-tracker__submit-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 21px;
	height: 21px;
	border: 1px solid rgba(33, 19, 7, 0.38);
	border-radius: 50%;
	font-size: 0.86rem;
	line-height: 1;
}

.rsp-postal-tracker__form.is-busy .rsp-postal-tracker__submit-icon {
	animation: rsp-postal-submit-arrow 0.8s ease-in-out infinite alternate;
}

.rsp-postal-tracker__status {
	min-height: 23px;
	margin: 7px 2px 0;
	color: #f3d994;
	font-size: 0.8rem;
	font-weight: 650;
	line-height: 1.8;
}

.rsp-postal-tracker__form.is-error .rsp-postal-tracker__status {
	color: #ffd0d0;
}

.rsp-postal-tracker__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 20px;
	padding-top: 13px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rsp-postal-tracker__trust {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	flex: 1 1 300px;
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.76rem;
	line-height: 1.8;
}

.rsp-postal-tracker__trust-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	margin-top: 1px;
	border: 1px solid rgba(212, 161, 59, 0.52);
	border-radius: 50%;
	color: #efc66f;
	font-size: 0.68rem;
}

.rsp-postal-tracker__orders-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	min-height: 44px;
	padding: 5px 2px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.78rem;
	line-height: 1.5;
	text-decoration: none;
	transition: color 0.22s ease, gap 0.22s ease;
}

.rsp-postal-tracker__orders-link strong {
	color: #f0c66d;
	font-weight: 800;
}

.rsp-postal-tracker__orders-link:hover {
	gap: 9px;
	color: #fff;
}

.rsp-postal-tracker__orders-link:focus-visible {
	border-radius: 5px;
	outline: 2px solid #f0c66d;
	outline-offset: 3px;
}

.rsp-postal-tracker__scene {
	display: flex;
	flex-direction: column;
	min-height: 340px;
	padding: 21px;
	overflow: hidden;
	border-color: rgba(212, 161, 59, 0.2);
	border-radius: 8px 24px 24px 24px;
	background: linear-gradient(155deg, rgba(255, 255, 255, 0.09), rgba(35, 7, 11, 0.32));
}

.rsp-postal-tracker__scene::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 50% 46%, transparent 0 48px, rgba(212, 161, 59, 0.06) 49px 50px, transparent 51px),
		radial-gradient(circle at 50% 46%, transparent 0 88px, rgba(212, 161, 59, 0.045) 89px 90px, transparent 91px);
	pointer-events: none;
}

.rsp-postal-tracker__scene-head,
.rsp-postal-tracker__scene-status {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.rsp-postal-tracker__scene-head {
	padding-bottom: 13px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rsp-postal-tracker__scene-head > span {
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.76rem;
	font-weight: 750;
}

.rsp-postal-tracker__scene-head small {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #edcf8d;
	font-size: 0.66rem;
}

.rsp-postal-tracker__scene-head i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--rsp-gold);
	box-shadow: 0 0 0 4px rgba(212, 161, 59, 0.12), 0 0 13px rgba(212, 161, 59, 0.75);
	animation: rsp-postal-status-pulse 2.4s ease-in-out infinite;
}

.rsp-postal-tracker__route {
	position: relative;
	flex: 1;
	min-height: 220px;
}

.rsp-postal-tracker__parcel {
	position: absolute;
	top: 78px;
	right: 7px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 86px;
	height: 72px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: 8px 8px 14px 8px;
	background: linear-gradient(145deg, #fbf1dc, #d9b66f);
	box-shadow: 0 15px 28px rgba(0, 0, 0, 0.28), -5px 5px 0 rgba(142, 0, 0, 0.28);
	color: #481119;
	transform: rotate(-5deg);
}

.rsp-postal-tracker__parcel::before,
.rsp-postal-tracker__parcel::after {
	content: '';
	position: absolute;
	background: rgba(106, 47, 24, 0.18);
}

.rsp-postal-tracker__parcel::before {
	top: 0;
	bottom: 0;
	left: 50%;
	width: 15px;
	transform: translateX(-50%);
}

.rsp-postal-tracker__parcel::after {
	top: 13px;
	right: 0;
	left: 0;
	height: 1px;
}

.rsp-postal-tracker__parcel-tape {
	position: absolute;
	top: 4px;
	left: 50%;
	z-index: 2;
	width: 11px;
	height: 8px;
	border: 1px solid rgba(99, 40, 15, 0.35);
	transform: translateX(-50%);
}

.rsp-postal-tracker__parcel strong,
.rsp-postal-tracker__parcel small {
	position: relative;
	z-index: 2;
}

.rsp-postal-tracker__parcel strong {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 1px solid rgba(72, 17, 25, 0.45);
	border-radius: 50%;
	font-family: Georgia, serif;
	font-size: 1rem;
	line-height: 1;
}

.rsp-postal-tracker__parcel small {
	margin-top: 4px;
	font-family: Georgia, serif;
	font-size: 0.42rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.rsp-postal-tracker__route-line {
	position: absolute;
	top: 125px;
	right: 77px;
	left: 45px;
	z-index: 2;
	height: 2px;
	background: linear-gradient(90deg, rgba(212, 161, 59, 0.38), #e6bc62 44%, rgba(212, 161, 59, 0.55));
	box-shadow: 0 0 12px rgba(212, 161, 59, 0.25);
	transform: rotate(-9deg);
	transform-origin: right center;
}

.rsp-postal-tracker__route-line::before {
	content: '';
	position: absolute;
	top: -3px;
	right: 0;
	left: 0;
	height: 8px;
	background: repeating-linear-gradient(90deg, transparent 0 16px, rgba(255, 255, 255, 0.18) 17px 18px);
}

.rsp-postal-tracker__route-node {
	position: absolute;
	top: 50%;
	width: 7px;
	height: 7px;
	border: 2px solid #e6bc62;
	border-radius: 50%;
	background: #331016;
	transform: translateY(-50%);
}

.rsp-postal-tracker__route-node--one {
	right: 35%;
}

.rsp-postal-tracker__route-node--two {
	right: 69%;
}

.rsp-postal-tracker__route-pulse {
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 3;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #ffe0a1;
	box-shadow: 0 0 0 4px rgba(212, 161, 59, 0.15), 0 0 18px #d4a13b;
	transform: translateY(-50%);
	animation: rsp-postal-route-pulse 3.25s linear infinite;
}

.rsp-postal-tracker__pin {
	position: absolute;
	top: 69px;
	left: 4px;
	z-index: 3;
	width: 48px;
	height: 48px;
	border: 2px solid #e6bc62;
	border-radius: 50% 50% 50% 12px;
	background: linear-gradient(145deg, #c62828, #7c0711);
	box-shadow: 0 11px 26px rgba(0, 0, 0, 0.28), 0 0 22px rgba(198, 40, 40, 0.42);
	transform: rotate(-45deg);
}

.rsp-postal-tracker__pin span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	border: 3px solid #f6ddb0;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.rsp-postal-tracker__scene-status {
	padding-top: 13px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.66rem;
}

.rsp-postal-tracker__scene-status b {
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.69rem;
	font-weight: 750;
}

@keyframes rsp-postal-route-pulse {
	0% { right: 0; opacity: 0; }
	9% { opacity: 1; }
	86% { opacity: 1; }
	100% { right: calc(100% - 9px); opacity: 0; }
}

@keyframes rsp-postal-status-pulse {
	0%, 100% { opacity: 0.62; transform: scale(0.9); }
	50% { opacity: 1; transform: scale(1.15); }
}

@keyframes rsp-postal-submit-arrow {
	from { transform: translateX(0); }
	to { transform: translateX(-3px); }
}

@media (max-width: 1024px) {
	.rsp-postal-tracker {
		grid-template-columns: minmax(0, 1.55fr) minmax(220px, 0.72fr);
		padding: 18px;
	}

	.rsp-postal-tracker__content {
		padding: 26px;
	}

	.rsp-postal-tracker__controls {
		grid-template-columns: minmax(0, 1fr) minmax(176px, auto);
	}

	.rsp-postal-tracker .rsp-postal-tracker__submit {
		min-width: 176px;
		padding-inline: 14px;
	}
}

@media (max-width: 820px) {
	.rsp-postal-tracker {
		grid-template-columns: minmax(0, 1fr);
	}

	.rsp-postal-tracker__content {
		grid-row: 2;
		border-radius: 8px 24px 24px 24px;
	}

	.rsp-postal-tracker__scene {
		grid-row: 1;
		min-height: 188px;
		padding: 16px 18px;
		border-radius: 24px 24px 8px 24px;
	}

	.rsp-postal-tracker__route {
		min-height: 92px;
	}

	.rsp-postal-tracker__parcel {
		top: 20px;
		right: 9px;
		width: 70px;
		height: 54px;
	}

	.rsp-postal-tracker__parcel strong {
		width: 23px;
		height: 23px;
		font-size: 0.82rem;
	}

	.rsp-postal-tracker__parcel small {
		display: none;
	}

	.rsp-postal-tracker__route-line {
		top: 50px;
		right: 66px;
		left: 40px;
		transform: rotate(-3deg);
	}

	.rsp-postal-tracker__pin {
		top: 24px;
		left: 4px;
		width: 39px;
		height: 39px;
	}
}

@media (max-width: 560px) {
	.rsp-postal-tracker {
		gap: 11px;
		padding: 11px;
		border-radius: 24px;
	}

	.rsp-postal-tracker::after {
		inset: 5px;
		border-radius: 20px;
	}

	.rsp-postal-tracker__glow {
		filter: blur(36px);
	}

	.rsp-postal-tracker__content {
		padding: 22px 17px 18px;
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
	}

	.rsp-postal-tracker__scene {
		min-height: 148px;
		padding: 14px 15px;
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
	}

	.rsp-postal-tracker__scene::before {
		display: none;
	}

	.rsp-postal-tracker__header {
		margin-bottom: 20px;
	}

	.rsp-postal-tracker__header h2 {
		font-size: 1.72rem;
	}

	.rsp-postal-tracker__lead {
		font-size: 0.88rem;
		line-height: 1.85;
	}

	.rsp-postal-tracker__controls {
		grid-template-columns: minmax(0, 1fr);
	}

	.rsp-postal-tracker .rsp-postal-tracker__input,
	.rsp-postal-tracker .rsp-postal-tracker__submit {
		min-height: 56px;
	}

	.rsp-postal-tracker .rsp-postal-tracker__input {
		font-size: 0.93rem;
		letter-spacing: 0.055em;
	}

	.rsp-postal-tracker .rsp-postal-tracker__input::placeholder {
		font-size: 0.84rem;
		letter-spacing: 0.025em;
	}

	.rsp-postal-tracker .rsp-postal-tracker__submit {
		width: 100%;
		min-width: 0;
	}

	.rsp-postal-tracker__meta {
		align-items: flex-start;
		padding-top: 11px;
	}

	.rsp-postal-tracker__orders-link {
		width: 100%;
		justify-content: flex-start;
	}

	.rsp-postal-tracker__scene-head {
		padding-bottom: 8px;
	}

	.rsp-postal-tracker__scene-status {
		display: none;
	}

	.rsp-postal-tracker__route {
		min-height: 75px;
	}

	.rsp-postal-tracker__parcel {
		top: 14px;
		width: 61px;
		height: 48px;
	}

	.rsp-postal-tracker__route-line {
		top: 40px;
		right: 60px;
		left: 36px;
	}

	.rsp-postal-tracker__pin {
		top: 18px;
		width: 34px;
		height: 34px;
	}

	.rsp-postal-tracker__pin span {
		width: 10px;
		height: 10px;
		border-width: 2px;
	}
}

@media (max-width: 380px) {
	.rsp-postal-tracker__header h2 {
		font-size: 1.52rem;
	}

	.rsp-postal-tracker__content {
		padding-inline: 15px;
	}

	.rsp-postal-tracker .rsp-postal-tracker__input {
		padding-left: 10px;
		font-size: 0.86rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rsp-postal-tracker__route-pulse,
	.rsp-postal-tracker__scene-head i,
	.rsp-postal-tracker__form.is-busy .rsp-postal-tracker__submit-icon {
		animation: none;
	}

	.rsp-postal-tracker .rsp-postal-tracker__input,
	.rsp-postal-tracker .rsp-postal-tracker__submit,
	.rsp-postal-tracker__orders-link {
		transition: none;
	}

	.rsp-postal-tracker .rsp-postal-tracker__submit:hover {
		transform: none;
	}
}

/* ── POLICY ── */
.rsp-policy-intro {
	font-size: 1.15rem;
	line-height: 1.9;
	color: var(--rsp-muted);
	margin-bottom: 2.5rem;
	padding: 1.5rem 2rem;
	background: var(--rsp-white);
	border-radius: var(--rsp-radius-sm);
	border-right: 4px solid var(--rsp-gold);
}

.rsp-rules-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.rsp-rule-card {
	background: var(--rsp-white);
	border-radius: var(--rsp-radius);
	padding: 2rem;
	box-shadow: var(--rsp-shadow);
	transition: transform 0.4s var(--rsp-ease);
}

.rsp-rule-card:hover {
	transform: translateY(-6px);
}

.rsp-rule-card__icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(198,40,40,0.1);
	color: var(--rsp-red);
	border-radius: 16px;
	font-size: 1.4rem;
	margin-bottom: 1rem;
}

.rsp-rule-card h2 {
	font-size: 1.1rem;
	font-weight: 800;
	margin: 0 0 0.75rem;
}

.rsp-rule-card p {
	margin: 0;
	color: var(--rsp-muted);
	line-height: 1.75;
	font-size: 0.92rem;
}

.rsp-notes {
	background: var(--rsp-ink);
	color: rgba(255,255,255,0.85);
	border-radius: var(--rsp-radius);
	padding: clamp(24px, 4vw, 40px);
	margin-bottom: 2.5rem;
}

.rsp-notes h2 {
	color: var(--rsp-gold);
	font-size: 1.3rem;
	margin: 0 0 1.25rem;
}

.rsp-notes ul {
	margin: 0;
	padding: 0 1.25rem 0 0;
	list-style: none;
}

.rsp-notes li {
	position: relative;
	padding: 0.65rem 0;
	padding-right: 1.5rem;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	line-height: 1.7;
}

.rsp-notes li::before {
	content: '◆';
	position: absolute;
	right: 0;
	color: var(--rsp-gold);
	font-size: 0.6rem;
	top: 1rem;
}

.rsp-notes li:last-child {
	border-bottom: none;
}

/* ── FAQ ── */
.rsp-faq-search {
	position: relative;
	max-width: 560px;
	margin: 0 auto 3rem;
}

.rsp-faq-search .rsp-page-icon {
	position: absolute;
	right: 1.25rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--rsp-muted);
}

.rsp-faq-search input {
	width: 100%;
	padding: 1rem 3rem 1rem 1.25rem;
	border: 2px solid rgba(0,0,0,0.08);
	border-radius: 999px;
	font-family: var(--rsp-font);
	font-size: 1rem;
	background: var(--rsp-white);
	box-shadow: var(--rsp-shadow);
	transition: border-color 0.3s, box-shadow 0.3s;
}

.rsp-faq-search input:focus {
	outline: none;
	border-color: var(--rsp-red);
	box-shadow: 0 0 0 4px rgba(198,40,40,0.12);
}

.rsp-faq-group {
	margin-bottom: 2.5rem;
}

.rsp-faq-group__title {
	font-size: 1.2rem;
	font-weight: 800;
	margin: 0 0 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--rsp-red);
	display: inline-block;
}

.rsp-accordion__item {
	background: var(--rsp-white);
	border-radius: var(--rsp-radius-sm);
	margin-bottom: 0.75rem;
	box-shadow: 0 4px 16px rgba(0,0,0,0.05);
	overflow: hidden;
	border: 1px solid rgba(0,0,0,0.04);
}

.rsp-accordion__item.is-hidden {
	display: none;
}

.rsp-accordion__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	background: none;
	border: none;
	font-family: var(--rsp-font);
	font-size: 1rem;
	font-weight: 700;
	text-align: right;
	cursor: pointer;
	color: var(--rsp-ink);
	transition: background 0.3s;
}

.rsp-accordion__trigger:hover {
	background: rgba(198,40,40,0.04);
}

.rsp-accordion__trigger .rsp-page-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(198,40,40,0.08);
	color: var(--rsp-red);
	border-radius: 8px;
	padding: 6px;
	transition: transform 0.35s var(--rsp-ease), background 0.35s, color 0.35s;
}

.rsp-accordion__item.is-open .rsp-accordion__trigger .rsp-page-icon {
	transform: rotate(45deg);
	background: var(--rsp-red);
	color: #fff;
}

.rsp-accordion__panel {
	padding: 0 1.5rem 1.25rem;
	overflow: hidden;
}

.rsp-accordion__panel[hidden] {
	display: none;
}

.rsp-accordion__panel p {
	margin: 0;
	color: var(--rsp-muted);
	line-height: 1.85;
	font-size: 0.95rem;
}

.rsp-faq-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(0,0,0,0.08);
}

.rsp-faq-links a {
	padding: 0.65rem 1.25rem;
	border-radius: 999px;
	background: var(--rsp-white);
	border: 1px solid rgba(0,0,0,0.08);
	font-size: 0.88rem;
	font-weight: 600;
	transition: all 0.3s;
}

.rsp-faq-links a:hover {
	background: var(--rsp-red);
	color: #fff;
	border-color: var(--rsp-red);
}

/* ── CTA BAND ── */
.rsp-cta-band {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: clamp(24px, 4vw, 40px);
	border-radius: var(--rsp-radius);
	background: linear-gradient(135deg, var(--rsp-red) 0%, var(--rsp-red-dark) 100%);
	color: #fff;
	margin-top: 2rem;
}

.rsp-cta-band--dark {
	background: var(--rsp-ink);
}

.rsp-cta-band__text h3 {
	margin: 0 0 0.35rem;
	font-size: 1.3rem;
	font-weight: 800;
}

.rsp-cta-band__text p {
	margin: 0;
	opacity: 0.85;
	font-size: 0.95rem;
}

.rsp-cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

/* ── BUTTONS ── */
.rsp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.75rem;
	border-radius: 999px;
	font-family: var(--rsp-font);
	font-size: 0.92rem;
	font-weight: 700;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.35s var(--rsp-ease);
	text-decoration: none;
}

.rsp-btn--primary {
	background: var(--rsp-white);
	color: var(--rsp-red);
}

.rsp-btn--primary:hover {
	background: var(--rsp-gold);
	color: var(--rsp-ink);
	transform: translateY(-2px);
}

.rsp-cta-band .rsp-btn--primary {
	background: var(--rsp-gold);
	color: var(--rsp-ink);
}

.rsp-btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,0.5);
}

.rsp-btn--ghost:hover {
	background: rgba(255,255,255,0.12);
	border-color: #fff;
}

/* ── REVEAL: content is visible immediately ── */
[data-rsp-reveal],
[data-rsp-reveal].is-visible {
	opacity: 1;
	transform: none;
	transition: none;
}

/* ── KEYFRAMES ── */
@keyframes rsp-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(20px, -20px) scale(1.05); }
}

@keyframes rsp-scroll {
	0% { opacity: 1; transform: translateX(-50%) translateY(0); }
	100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@keyframes rsp-pulse {
	0%, 100% { box-shadow: 0 0 0 2px var(--rsp-gold), 0 0 20px rgba(212,161,59,0.5); }
	50% { box-shadow: 0 0 0 2px var(--rsp-gold), 0 0 30px rgba(212,161,59,0.8); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
	.rsp-grid--exhibition .rsp-card,
	.rsp-grid--exhibition .rsp-card--featured {
		grid-column: span 6;
	}

	.rsp-card--featured .rsp-card__link {
		flex-direction: column;
	}

	.rsp-pipeline {
		grid-template-columns: repeat(2, 1fr);
	}

	.rsp-pipeline::before {
		display: none;
	}
}

@media (max-width: 768px) {
	.rsp-grid--exhibition .rsp-card,
	.rsp-grid--exhibition .rsp-card--featured {
		grid-column: span 12;
	}

	.rsp-steps::before {
		right: 29px;
	}

	.rsp-step {
		grid-template-columns: 60px 1fr;
		gap: 1rem;
	}

	.rsp-step__num {
		width: 60px;
		height: 60px;
		font-size: 1.4rem;
	}

	.rsp-pipeline {
		grid-template-columns: 1fr;
	}

	.rsp-cta-band {
		flex-direction: column;
		text-align: center;
	}

	.rsp-cta-band__actions {
		justify-content: center;
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	[data-rsp-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.rsp-hero__orb,
	.rsp-hero__scroll span::after,
	.rsp-pipeline__item--active .rsp-pipeline__dot {
		animation: none;
	}
}

/* ============================================================
   SINGLE POST (نوشته) — editorial reading layout
   ============================================================ */

body.rsp-post-single-active .rsp-page-shell,
body.rsp-post-archive-active .rsp-page-shell {
	min-height: 60vh;
}

/* ── Post Hero ── */
.rsp-post-hero {
	position: relative;
	min-height: clamp(360px, 55vh, 520px);
	display: flex;
	align-items: flex-end;
	padding: clamp(100px, 12vw, 130px) clamp(20px, 5vw, 48px) clamp(40px, 6vw, 64px);
	color: #fff;
	isolation: isolate;
	overflow: hidden;
}

.rsp-post-hero__image {
	position: absolute;
	inset: 0;
	background: var(--rsp-hero-img, none) center / cover no-repeat;
	transform: scale(1.02);
	transition: transform 8s var(--rsp-ease);
}

.rsp-post-hero:hover .rsp-post-hero__image {
	transform: scale(1.06);
}

.rsp-post-hero__bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, #0a0a0a, #1a1010 50%, #2a0f0f);
}

.rsp-post-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.25) 100%);
	z-index: 1;
}

.rsp-post-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
}

.rsp-post-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	margin-bottom: 1rem;
	color: rgba(255,255,255,0.65);
}

.rsp-post-breadcrumb a {
	color: var(--rsp-gold);
	font-weight: 600;
}

.rsp-post-breadcrumb a:hover {
	color: #fff;
}

.rsp-post-hero__eyebrow {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--rsp-gold);
	margin-bottom: 0.75rem;
}

.rsp-post-hero__title {
	font-size: clamp(1.75rem, 4.5vw, 3rem);
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 1.25rem;
	letter-spacing: -0.02em;
}

.rsp-post-hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem;
	font-size: 0.9rem;
	color: rgba(255,255,255,0.75);
}

.rsp-post-hero__dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(255,255,255,0.4);
}

.rsp-post-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.2rem 0.65rem;
	background: rgba(198,40,40,0.85);
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 600;
}

.rsp-post-hero--film .rsp-post-hero__overlay {
	background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(80,0,0,0.4));
}

/* ── Post Article Layout ── */
.rsp-post-article {
	max-width: var(--rsp-max);
	margin: 0 auto;
	padding: clamp(32px, 5vw, 56px) clamp(20px, 5vw, 40px);
}

.rsp-post-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: clamp(24px, 4vw, 48px);
	align-items: start;
}

.rsp-post-content {
	background: var(--rsp-white);
	border-radius: var(--rsp-radius);
	padding: clamp(28px, 4vw, 48px);
	box-shadow: var(--rsp-shadow);
	font-size: 1.05rem;
	line-height: 1.95;
	color: var(--rsp-ink-soft);
}

.rsp-post-content > *:first-child {
	margin-top: 0;
}

.rsp-post-content h2,
.rsp-post-content h3,
.rsp-post-content h4 {
	color: var(--rsp-ink);
	font-weight: 800;
	margin: 2rem 0 1rem;
	line-height: 1.4;
}

.rsp-post-content h2 { font-size: 1.5rem; }
.rsp-post-content h3 { font-size: 1.25rem; }

.rsp-post-content p {
	margin: 0 0 1.25rem;
}

.rsp-post-content a {
	color: var(--rsp-red);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.rsp-post-content a:hover {
	color: var(--rsp-red-dark);
}

.rsp-post-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--rsp-radius-sm);
	margin: 1.5rem 0;
}

.rsp-post-content blockquote {
	margin: 2rem 0;
	padding: 1.25rem 1.5rem;
	border-right: 4px solid var(--rsp-gold);
	background: rgba(212,161,59,0.08);
	border-radius: 0 var(--rsp-radius-sm) var(--rsp-radius-sm) 0;
	font-style: italic;
	color: var(--rsp-muted);
}

.rsp-post-content ul,
.rsp-post-content ol {
	margin: 0 0 1.25rem;
	padding-right: 1.5rem;
}

.rsp-post-content li {
	margin-bottom: 0.5rem;
}

/* Video embeds */
.rsp-post-article--video .rsp-post-content iframe,
.rsp-post-content .wp-block-embed iframe,
.rsp-post-content iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	min-height: 280px;
	border: none;
	border-radius: var(--rsp-radius-sm);
	margin: 1.5rem 0;
	box-shadow: var(--rsp-shadow);
}

.rsp-post-article--film .rsp-post-content iframe {
	min-height: 360px;
}

/* ── Sidebar ── */
.rsp-post-sidebar {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.rsp-post-sidebar__card {
	background: var(--rsp-white);
	border-radius: var(--rsp-radius-sm);
	padding: 1.25rem;
	box-shadow: 0 8px 24px rgba(0,0,0,0.06);
	border: 1px solid rgba(0,0,0,0.04);
}

.rsp-post-sidebar__card h3 {
	font-size: 0.95rem;
	font-weight: 800;
	margin: 0 0 1rem;
	color: var(--rsp-ink);
}

.rsp-btn--block {
	width: 100%;
	justify-content: center;
	gap: 0.5rem;
}

.rsp-post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.rsp-post-tags a {
	padding: 0.35rem 0.85rem;
	background: rgba(198,40,40,0.08);
	color: var(--rsp-red);
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 600;
	transition: all 0.3s;
}

.rsp-post-tags a:hover {
	background: var(--rsp-red);
	color: #fff;
}

.rsp-post-share {
	display: flex;
	gap: 0.65rem;
}

.rsp-post-share a,
.rsp-post-share button {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(198,40,40,0.08);
	color: var(--rsp-red);
	border: none;
	cursor: pointer;
	font-size: 1.1rem;
	transition: all 0.3s;
	font-family: inherit;
}

.rsp-post-share a:hover,
.rsp-post-share button:hover {
	background: var(--rsp-red);
	color: #fff;
}

.rsp-post-share__copy.is-copied {
	background: var(--rsp-gold);
	color: var(--rsp-ink);
}

/* ── Post Footer ── */
.rsp-post-footer {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(0,0,0,0.08);
}

.rsp-post-back {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	font-weight: 700;
	color: var(--rsp-red);
	font-size: 1rem;
	transition: gap 0.3s var(--rsp-ease);
}

.rsp-post-back:hover {
	gap: 1rem;
	color: var(--rsp-red-dark);
}

/* ── Related Posts ── */
.rsp-related {
	max-width: var(--rsp-max);
	margin: 0 auto;
	padding: 0 clamp(20px, 5vw, 40px) clamp(48px, 8vw, 80px);
}

.rsp-related__title {
	font-size: 1.5rem;
	font-weight: 800;
	margin: 0 0 1.5rem;
	color: var(--rsp-ink);
}

@media (max-width: 1024px) {
	.rsp-post-layout {
		grid-template-columns: 1fr;
	}

	.rsp-post-sidebar {
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
	}

	.rsp-post-sidebar__card {
		flex: 1 1 240px;
	}
}

@media (max-width: 768px) {
	.rsp-post-sidebar {
		flex-direction: column;
	}

	.rsp-post-hero__title {
		font-size: 1.6rem;
	}
}

/* ── Page intro band (static pages) ── */
.rsp-page-intro {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 2rem;
	align-items: center;
	margin-bottom: 2.5rem;
	padding: 1.75rem 2rem;
	background: var(--rsp-white);
	border-radius: var(--rsp-radius);
	box-shadow: var(--rsp-shadow);
	border-right: 4px solid var(--rsp-red);
}

.rsp-page-intro__text p {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.85;
	color: var(--rsp-muted);
}

.rsp-page-intro__media img {
	max-width: 140px;
	height: auto;
	display: block;
}

/* ── Curated post prose ── */
.rsp-prose-curated h2 {
	font-size: 1.35rem;
	font-weight: 800;
	margin: 2rem 0 1rem;
	color: var(--rsp-ink);
}

.rsp-prose-media {
	margin: 1.5rem 0;
	border-radius: var(--rsp-radius-sm);
	overflow: hidden;
	box-shadow: var(--rsp-shadow);
}

.rsp-prose-media__img {
	width: 100%;
	height: auto;
	display: block;
}

.rsp-embed {
	position: relative;
	margin: 2rem 0;
	border-radius: var(--rsp-radius-sm);
	overflow: hidden;
	box-shadow: var(--rsp-shadow);
	aspect-ratio: 16 / 9;
	background: #111;
}

.rsp-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
}

@media (max-width: 768px) {
	.rsp-page-intro {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.rsp-page-intro__media {
		display: flex;
		justify-content: center;
	}
}



/* ============================================================
   RASPINA 2026 PAGE REFRESH — editorial UX pass
   ============================================================ */
.rsp-section-kicker {
	margin: 0 0 0.65rem;
	color: var(--rsp-gold);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.rsp-editorial-intro,
.rsp-newsroom-panel,
.rsp-tracking-overview,
.rsp-achievement-hero-card,
.rsp-cinema-board {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(18px, 4vw, 46px);
	align-items: center;
	margin-bottom: clamp(24px, 5vw, 44px);
	padding: clamp(24px, 4vw, 44px);
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.72);
	box-shadow: 0 28px 80px rgba(18, 18, 18, 0.11);
	overflow: hidden;
}

.rsp-editorial-intro::before,
.rsp-newsroom-panel::before,
.rsp-tracking-overview::before,
.rsp-achievement-hero-card::before,
.rsp-cinema-board::before {
	content: '';
	position: absolute;
	inset: auto -8% -42% auto;
	z-index: -1;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(198, 40, 40, 0.16), transparent 68%);
	filter: blur(2px);
}

.rsp-editorial-intro h2,
.rsp-newsroom-panel h2,
.rsp-tracking-overview h2,
.rsp-achievement-hero-card h2,
.rsp-cinema-board h2 {
	margin: 0;
	color: var(--rsp-ink);
	font-size: clamp(1.55rem, 3.1vw, 2.45rem);
	font-weight: 900;
	line-height: 1.45;
	letter-spacing: -0.025em;
}

.rsp-editorial-intro > p,
.rsp-newsroom-panel > p,
.rsp-tracking-overview > p,
.rsp-achievement-hero-card p,
.rsp-cinema-board__content p {
	margin: 0;
	color: var(--rsp-muted);
	font-size: 1rem;
	line-height: 2;
}

.rsp-feature-strip,
.rsp-topic-grid,
.rsp-moment-grid,
.rsp-trust-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 22px);
	margin-bottom: clamp(30px, 5vw, 52px);
}

.rsp-feature-pill,
.rsp-topic-card,
.rsp-moment-card,
.rsp-trust-card {
	position: relative;
	min-height: 160px;
	padding: 1.35rem;
	border-radius: 24px;
	background: #fff;
	border: 1px solid rgba(18, 18, 18, 0.055);
	box-shadow: 0 18px 46px rgba(18, 18, 18, 0.075);
	overflow: hidden;
	transition: transform 0.45s var(--rsp-ease), box-shadow 0.45s var(--rsp-ease), border-color 0.45s var(--rsp-ease);
}

.rsp-feature-pill::after,
.rsp-topic-card::after,
.rsp-moment-card::after,
.rsp-trust-card::after {
	content: '';
	position: absolute;
	inset: auto -24px -42px auto;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: rgba(198, 40, 40, 0.08);
}

.rsp-feature-pill:hover,
.rsp-topic-card:hover,
.rsp-moment-card:hover,
.rsp-trust-card:hover {
	transform: translateY(-7px);
	border-color: rgba(198, 40, 40, 0.22);
	box-shadow: 0 28px 68px rgba(18, 18, 18, 0.13);
}

.rsp-feature-pill span,
.rsp-moment-card span,
.rsp-trust-card strong {
	display: inline-flex;
	margin-bottom: 0.8rem;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: rgba(198, 40, 40, 0.08);
	color: var(--rsp-red);
	font-size: 0.78rem;
	font-weight: 850;
}

.rsp-feature-pill h3,
.rsp-topic-card h3 {
	margin: 0 0 0.55rem;
	color: var(--rsp-ink);
	font-size: 1.08rem;
	font-weight: 850;
}

.rsp-feature-pill p,
.rsp-topic-card p,
.rsp-moment-card p,
.rsp-trust-card p {
	margin: 0;
	color: var(--rsp-muted);
	font-size: 0.92rem;
	line-height: 1.85;
}

.rsp-cinema-board {
	grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
	background: linear-gradient(135deg, #101010, #270b0e 60%, #4d1117);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.12);
}

.rsp-cinema-board::before {
	background: radial-gradient(circle, rgba(212, 161, 59, 0.22), transparent 68%);
}

.rsp-cinema-board h2 {
	color: #fff;
}

.rsp-cinema-board__content p {
	color: rgba(255, 255, 255, 0.76);
}

.rsp-cinema-board__visual {
	position: relative;
	min-height: 220px;
	border-radius: 26px;
	background:
		linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01)),
		repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0 9px, transparent 9px 24px),
		#080808;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
	overflow: hidden;
}

.rsp-cinema-board__visual span {
	position: absolute;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(198,40,40,0.85), rgba(212,161,59,0.55));
	box-shadow: 0 20px 50px rgba(0,0,0,0.32);
}

.rsp-cinema-board__visual span:nth-child(1) { inset: 36px 30px auto auto; width: 54%; height: 72px; }
.rsp-cinema-board__visual span:nth-child(2) { inset: auto auto 34px 30px; width: 50%; height: 88px; }
.rsp-cinema-board__visual span:nth-child(3) { inset: 82px auto auto 72px; width: 68px; height: 68px; border-radius: 50%; }

.rsp-empty--rich {
	position: relative;
	padding: clamp(34px, 6vw, 64px);
	background:
		radial-gradient(circle at 18% 12%, rgba(212, 161, 59, 0.15), transparent 28%),
		#fff;
	border: 1px solid rgba(18, 18, 18, 0.06);
	box-shadow: var(--rsp-shadow);
}

.rsp-empty--dark {
	background: linear-gradient(135deg, #111, #2c0c10);
	color: #fff;
	border-color: rgba(255,255,255,0.1);
}

.rsp-empty__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 74px;
	height: 74px;
	margin-bottom: 1.1rem;
	border-radius: 24px;
	background: rgba(198, 40, 40, 0.1);
	color: var(--rsp-red);
}

.rsp-empty--dark .rsp-empty__icon {
	background: rgba(255,255,255,0.1);
	color: var(--rsp-gold);
}

.rsp-empty--rich h2 {
	margin: 0 0 0.6rem;
	font-size: clamp(1.35rem, 3vw, 2rem);
	font-weight: 900;
	color: inherit;
}

.rsp-empty--rich p {
	max-width: 620px;
	margin: 0 auto 1.4rem;
	color: var(--rsp-muted);
	line-height: 1.9;
}

.rsp-empty--dark p {
	color: rgba(255,255,255,0.72);
}

.rsp-empty__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.8rem;
}

.rsp-btn--outline {
	background: transparent;
	color: var(--rsp-red);
	border-color: rgba(198, 40, 40, 0.28);
}

.rsp-btn--outline:hover {
	background: var(--rsp-red);
	color: #fff;
	border-color: var(--rsp-red);
	transform: translateY(-2px);
}

.rsp-tracking-overview {
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.rsp-trust-grid {
	margin-top: -0.6rem;
}

.rsp-trust-card {
	min-height: 132px;
}

.rsp-achievement-hero-card {
	grid-template-columns: auto minmax(0, 1fr);
	background: linear-gradient(135deg, #fff, #fff8ed);
}

.rsp-achievement-hero-card__mark {
	display: grid;
	place-items: center;
	width: clamp(96px, 13vw, 150px);
	height: clamp(96px, 13vw, 150px);
	border-radius: 38px;
	background: linear-gradient(135deg, var(--rsp-red), var(--rsp-red-dark));
	color: #fff;
	font-size: clamp(3rem, 6vw, 5.2rem);
	font-weight: 950;
	box-shadow: 0 24px 56px rgba(198, 40, 40, 0.25);
}

.rsp-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	margin-bottom: clamp(28px, 5vw, 48px);
}

.rsp-stat-card {
	padding: 1.35rem;
	border-radius: 22px;
	background: #fff;
	text-align: center;
	box-shadow: 0 16px 44px rgba(18,18,18,0.08);
	border: 1px solid rgba(18,18,18,0.05);
}

.rsp-stat-card__value {
	color: var(--rsp-red);
	font-size: clamp(1.8rem, 4vw, 2.7rem);
	font-weight: 950;
	line-height: 1;
}

.rsp-stat-card__label {
	margin-top: 0.55rem;
	color: var(--rsp-muted);
	font-size: 0.9rem;
	font-weight: 700;
}

.rsp-achievements-timeline {
	position: relative;
	display: grid;
	gap: 1.1rem;
	margin-bottom: clamp(30px, 5vw, 52px);
}

.rsp-achievements-timeline::before {
	content: '';
	position: absolute;
	top: 20px;
	bottom: 20px;
	right: 37px;
	width: 2px;
	background: linear-gradient(to bottom, var(--rsp-red), var(--rsp-gold));
	opacity: 0.28;
}

.rsp-achievement-card {
	position: relative;
	display: grid;
	grid-template-columns: 76px 64px minmax(0, 1fr);
	gap: 1rem;
	align-items: center;
	padding: clamp(18px, 3vw, 28px);
	border-radius: 28px;
	background: rgba(255,255,255,0.86);
	border: 1px solid rgba(18,18,18,0.055);
	box-shadow: 0 20px 58px rgba(18,18,18,0.09);
}

.rsp-achievement-card__date span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 18px;
	background: var(--rsp-ink);
	color: #fff;
	font-weight: 900;
}

.rsp-achievement-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 20px;
	background: rgba(198, 40, 40, 0.09);
	color: var(--rsp-red);
}

.rsp-achievement-card__title {
	margin: 0 0 0.45rem;
	font-size: clamp(1.05rem, 2.4vw, 1.35rem);
	font-weight: 900;
	color: var(--rsp-ink);
}

.rsp-achievement-card__desc {
	margin: 0;
	color: var(--rsp-muted);
	line-height: 1.85;
	font-size: 0.94rem;
}

.rsp-links-section {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(18px, 3vw, 28px);
	margin-bottom: clamp(28px, 5vw, 48px);
}

.rsp-links-card,
.rsp-cta-card {
	padding: clamp(22px, 4vw, 34px);
	border-radius: 28px;
	background: #fff;
	box-shadow: var(--rsp-shadow);
	border: 1px solid rgba(18,18,18,0.055);
}

.rsp-links-card__title {
	margin: 0 0 1rem;
	font-size: 1.15rem;
	font-weight: 900;
	color: var(--rsp-ink);
}

.rsp-links-grid,
.rsp-links-list {
	display: grid;
	gap: 0.75rem;
}

.rsp-links-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rsp-link-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.9rem 1rem;
	border-radius: 16px;
	background: rgba(198, 40, 40, 0.055);
	color: var(--rsp-ink);
	font-weight: 800;
	transition: background 0.3s var(--rsp-ease), color 0.3s var(--rsp-ease), transform 0.3s var(--rsp-ease);
}

.rsp-link-item:hover {
	background: var(--rsp-red);
	color: #fff;
	transform: translateY(-2px);
}

.rsp-cta-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 1.2rem;
	align-items: center;
	background: linear-gradient(135deg, var(--rsp-red), var(--rsp-red-dark));
	color: #fff;
}

.rsp-cta-card__icon {
	display: grid;
	place-items: center;
	width: 78px;
	height: 78px;
	border-radius: 26px;
	background: rgba(255,255,255,0.12);
	color: var(--rsp-gold);
}

.rsp-cta-card__title {
	margin: 0 0 0.4rem;
	color: #fff;
	font-size: 1.35rem;
	font-weight: 900;
}

.rsp-cta-card__desc {
	margin: 0 0 1rem;
	color: rgba(255,255,255,0.76);
	line-height: 1.8;
}

.rsp-cta-card .rsp-btn--primary {
	background: var(--rsp-gold);
	color: var(--rsp-ink);
}

.rsp-btn--large {
	min-height: 52px;
	padding-inline: 2rem;
}

@media (max-width: 960px) {
	.rsp-editorial-intro,
	.rsp-newsroom-panel,
	.rsp-tracking-overview,
	.rsp-achievement-hero-card,
	.rsp-cinema-board,
	.rsp-links-section {
		grid-template-columns: 1fr;
	}

	.rsp-feature-strip,
	.rsp-topic-grid,
	.rsp-moment-grid,
	.rsp-trust-grid,
	.rsp-stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.rsp-editorial-intro,
	.rsp-newsroom-panel,
	.rsp-tracking-overview,
	.rsp-achievement-hero-card,
	.rsp-cinema-board {
		border-radius: 24px;
	}

	.rsp-feature-strip,
	.rsp-topic-grid,
	.rsp-moment-grid,
	.rsp-trust-grid,
	.rsp-stats-grid,
	.rsp-links-grid {
		grid-template-columns: 1fr;
	}

	.rsp-achievements-timeline::before {
		display: none;
	}

	.rsp-achievement-card,
	.rsp-cta-card {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.rsp-achievement-card__date span,
	.rsp-achievement-card__icon,
	.rsp-cta-card__icon,
	.rsp-achievement-hero-card__mark {
		margin-inline: auto;
	}

	.rsp-cinema-board__visual {
		min-height: 180px;
	}
}


/* Achievements page image-first refresh */
.rsp-section-head {
	margin: clamp(28px, 5vw, 52px) 0 clamp(18px, 3vw, 28px);
	text-align: center;
}

.rsp-section-head h2 {
	margin: 0 0 0.6rem;
	color: var(--rsp-ink);
	font-size: clamp(1.45rem, 3vw, 2.25rem);
	font-weight: 950;
	line-height: 1.45;
}

.rsp-section-head p {
	max-width: 720px;
	margin: 0 auto;
	color: var(--rsp-muted);
	line-height: 1.9;
}

.rsp-achievement-hero-card--with-gallery {
	grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
	background:
		radial-gradient(circle at 12% 18%, rgba(212, 161, 59, 0.18), transparent 28%),
		linear-gradient(135deg, #fff, #fff7ea 58%, #fff);
}

.rsp-achievement-collage {
	position: relative;
	min-height: clamp(320px, 42vw, 500px);
}

.rsp-achievement-collage__item {
	position: absolute;
	margin: 0;
	border-radius: 26px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 28px 70px rgba(18, 18, 18, 0.18);
	border: 8px solid #fff;
}

.rsp-achievement-collage__item img,
.rsp-awards-gallery__item img,
.rsp-achievement-card__media img,
.rsp-proof-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rsp-achievement-collage__item--1 {
	inset: 0 auto auto 5%;
	width: 58%;
	height: 72%;
	transform: rotate(-4deg);
	z-index: 3;
}

.rsp-achievement-collage__item--2 {
	inset: 10% 0 auto auto;
	width: 50%;
	height: 62%;
	transform: rotate(5deg);
	z-index: 2;
}

.rsp-achievement-collage__item--3 {
	inset: auto 12% 0 auto;
	width: 56%;
	height: 45%;
	transform: rotate(-1deg);
	z-index: 4;
}

.rsp-awards-gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: minmax(220px, auto);
	gap: clamp(14px, 2vw, 22px);
	margin-bottom: clamp(34px, 6vw, 60px);
}

.rsp-awards-gallery__item,
.rsp-proof-card {
	position: relative;
	margin: 0;
	border-radius: 28px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 22px 60px rgba(18, 18, 18, 0.12);
	border: 1px solid rgba(18,18,18,0.055);
}

.rsp-awards-gallery__item--large {
	grid-column: span 2;
	grid-row: span 2;
}

.rsp-awards-gallery__item a {
	display: block;
	height: 100%;
	min-height: 260px;
	color: inherit;
}

.rsp-awards-gallery__item img {
	transition: transform 0.55s var(--rsp-ease);
}

.rsp-awards-gallery__item:hover img,
.rsp-proof-card:hover img,
.rsp-achievement-card--image:hover .rsp-achievement-card__media img {
	transform: scale(1.045);
}

.rsp-awards-gallery__item figcaption,
.rsp-proof-card figcaption {
	position: absolute;
	right: 14px;
	bottom: 14px;
	z-index: 2;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	background: rgba(18,18,18,0.72);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 850;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.rsp-achievement-card--image {
	grid-template-columns: minmax(180px, 0.44fr) 76px 64px minmax(0, 1fr);
	align-items: stretch;
}

.rsp-achievement-card--image .rsp-achievement-card__media {
	margin: 0;
	min-height: 190px;
	border-radius: 22px;
	overflow: hidden;
	background: #eee;
}

.rsp-achievement-card--image .rsp-achievement-card__date,
.rsp-achievement-card--image .rsp-achievement-card__icon,
.rsp-achievement-card--image .rsp-achievement-card__content {
	align-self: center;
}

.rsp-proof-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 22px);
	margin-bottom: clamp(34px, 6vw, 56px);
}

.rsp-proof-card {
	min-height: 260px;
}

.rsp-proof-card img {
	transition: transform 0.55s var(--rsp-ease);
}

@media (max-width: 1024px) {
	.rsp-achievement-hero-card--with-gallery,
	.rsp-achievement-card--image {
		grid-template-columns: 1fr;
	}

	.rsp-awards-gallery,
	.rsp-proof-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rsp-achievement-card--image .rsp-achievement-card__media {
		min-height: 280px;
	}
}

@media (max-width: 640px) {
	.rsp-achievement-collage {
		min-height: 430px;
	}

	.rsp-achievement-collage__item--1,
	.rsp-achievement-collage__item--2,
	.rsp-achievement-collage__item--3 {
		width: 78%;
	}

	.rsp-achievement-collage__item--1 { inset: 0 auto auto 8%; }
	.rsp-achievement-collage__item--2 { inset: 26% 4% auto auto; }
	.rsp-achievement-collage__item--3 { inset: auto 10% 0 auto; }

	.rsp-awards-gallery,
	.rsp-proof-grid {
		grid-template-columns: 1fr;
	}

	.rsp-awards-gallery__item--large {
		grid-column: auto;
		grid-row: auto;
	}
}


/* Keep certificate/award images readable instead of cropped. */
.rsp-awards-gallery__item {
	background: linear-gradient(135deg, #fff, #f8efe4);
}

.rsp-awards-gallery__item img {
	object-fit: contain;
	padding: clamp(10px, 1.5vw, 18px);
}

.rsp-achievement-collage__item img {
	object-fit: contain;
	background: #fff;
}
