.re-main {
	margin-inline: auto;
	max-width: var(--re-container);
	padding: clamp(1.5rem, 4vw, 3rem) var(--re-gutter);
}

.re-front-page {
	--re-home-screen-min: calc(100svh - 5rem);
	max-width: none;
	padding: 0;
}

html.re-themefx-active {
	--re-page-bg: #11100d;
	--re-section-text: #f7f1e8;
	--re-section-muted: rgba(247, 241, 232, 0.78);
	--re-active-section-muted: rgba(247, 241, 232, 0.78);
	--re-card-bg: #ffffff;
	--re-card-text: #111111;
	--re-card-muted: #454545;
	--re-card-border: rgba(255, 255, 255, 0.18);
	--re-card-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
	--re-active-card-bg: #ffffff;
	--re-active-card-text: #111111;
	--re-active-card-muted: #454545;
	--re-active-card-border: rgba(255, 255, 255, 0.18);
	--re-active-card-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
	--re-button-bg: #ffffff;
	--re-button-text: #000000;
	--re-button-border: #ffffff;
	--re-button-hover-bg: #000000;
	--re-button-hover-text: #ffffff;
	--re-button-hover-border: #000000;
	--re-accent: #d7aa34;
}

html.re-themefx-active[data-re-theme="light"] {
	--re-page-bg: #f8f5ef;
	--re-section-text: #0d0d0d;
	--re-section-muted: #3d3d3d;
	--re-active-section-muted: #3d3d3d;
	--re-card-bg: #17130c;
	--re-card-text: #fff7e6;
	--re-card-muted: rgba(255, 247, 230, 0.74);
	--re-card-border: rgba(215, 170, 52, 0.34);
	--re-card-shadow: 0 22px 54px rgba(23, 19, 12, 0.18);
	--re-active-card-bg: #17130c;
	--re-active-card-text: #fff7e6;
	--re-active-card-muted: rgba(255, 247, 230, 0.74);
	--re-active-card-border: rgba(215, 170, 52, 0.34);
	--re-active-card-shadow: 0 22px 54px rgba(23, 19, 12, 0.18);
	--re-button-bg: #000000;
	--re-button-text: #ffffff;
	--re-button-border: #000000;
	--re-button-hover-bg: #ffffff;
	--re-button-hover-text: #000000;
	--re-button-hover-border: #ffffff;
	--re-accent: #a9831f;
}

html.re-themefx-active[data-re-theme="gold"] {
	--re-page-bg: #f3ead7;
	--re-section-text: #18130b;
	--re-section-muted: #514531;
	--re-active-section-muted: #514531;
	--re-card-bg: #fffaf0;
	--re-card-text: #17120b;
	--re-card-muted: #5b503e;
	--re-card-border: rgba(169, 131, 31, 0.22);
	--re-card-shadow: 0 20px 48px rgba(80, 57, 12, 0.12);
	--re-active-card-bg: #fffaf0;
	--re-active-card-text: #17120b;
	--re-active-card-muted: #5b503e;
	--re-active-card-border: rgba(169, 131, 31, 0.22);
	--re-active-card-shadow: 0 20px 48px rgba(80, 57, 12, 0.12);
	--re-button-bg: #111111;
	--re-button-text: #ffffff;
	--re-button-border: #111111;
	--re-button-hover-bg: #ffffff;
	--re-button-hover-text: #000000;
	--re-button-hover-border: #ffffff;
	--re-accent: #a9831f;
}

html.re-themefx-active[data-re-theme="muted"] {
	--re-page-bg: #ebe7df;
	--re-section-text: #191714;
	--re-section-muted: #56514a;
	--re-active-section-muted: #56514a;
	--re-card-bg: #ffffff;
	--re-card-text: #171717;
	--re-card-muted: #494949;
	--re-card-border: rgba(25, 23, 20, 0.13);
	--re-card-shadow: 0 20px 48px rgba(17, 17, 17, 0.08);
	--re-active-card-bg: #ffffff;
	--re-active-card-text: #171717;
	--re-active-card-muted: #494949;
	--re-active-card-border: rgba(25, 23, 20, 0.13);
	--re-active-card-shadow: 0 20px 48px rgba(17, 17, 17, 0.08);
	--re-button-bg: #111111;
	--re-button-text: #ffffff;
	--re-button-border: #111111;
	--re-button-hover-bg: #ffffff;
	--re-button-hover-text: #000000;
	--re-button-hover-border: #ffffff;
	--re-accent: #b58c2b;
}

html.re-themefx-active body.home,
html.re-themefx-active body.front-page,
html.re-themefx-active body.home .re-front-page,
html.re-themefx-active body.front-page .re-front-page {
	background-color: var(--re-page-bg);
	transition: background-color 3000ms cubic-bezier(0.16, 1, 0.3, 1);
}

html.re-themefx-active body.home .re-front-page .re-theme-zone,
html.re-themefx-active body.front-page .re-front-page .re-theme-zone {
	--re-section-bg: var(--re-page-bg);
	--re-section-fg: var(--re-section-text);
	--re-section-muted: var(--re-active-section-muted);
	--re-card-bg: var(--re-active-card-bg);
	--re-card-fg: var(--re-active-card-text);
	--re-card-border: var(--re-active-card-border);
	--re-btn-bg: var(--re-button-bg);
	--re-btn-fg: var(--re-button-text);
	--re-btn-border: var(--re-button-border);
	--re-btn-hover-bg: var(--re-button-hover-bg);
	--re-btn-hover-fg: var(--re-button-hover-text);
	--re-btn-hover-border: var(--re-button-hover-border);
	background-color: var(--re-page-bg);
	color: var(--re-section-text);
	transition:
		background-color 3000ms cubic-bezier(0.16, 1, 0.3, 1),
		color 2100ms cubic-bezier(0.16, 1, 0.3, 1);
}

html.re-themefx-active body.home .re-front-page .re-theme-zone .re-card,
html.re-themefx-active body.front-page .re-front-page .re-theme-zone .re-card,
html.re-themefx-active body.home .re-front-page .re-theme-zone .re-cta-panel,
html.re-themefx-active body.front-page .re-front-page .re-theme-zone .re-cta-panel {
	background-color: var(--re-card-bg);
	border-color: var(--re-card-border);
	box-shadow: var(--re-card-shadow);
	color: var(--re-card-text);
	transition:
		background-color 1900ms cubic-bezier(0.16, 1, 0.3, 1),
		border-color 1800ms cubic-bezier(0.16, 1, 0.3, 1),
		color 1900ms cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 1900ms cubic-bezier(0.16, 1, 0.3, 1),
		transform 240ms ease;
}

html.re-themefx-active body.home .re-front-page .re-theme-zone .re-card p,
html.re-themefx-active body.front-page .re-front-page .re-theme-zone .re-card p,
html.re-themefx-active body.home .re-front-page .re-theme-zone .re-cta-panel p,
html.re-themefx-active body.front-page .re-front-page .re-theme-zone .re-cta-panel p {
	color: var(--re-card-muted);
}

html.re-themefx-active body.home .re-front-page .re-theme-zone .re-button,
html.re-themefx-active body.front-page .re-front-page .re-theme-zone .re-button {
	background-color: var(--re-button-bg);
	border-color: var(--re-button-border);
	color: var(--re-button-text);
	transition:
		background-color 1600ms cubic-bezier(0.16, 1, 0.3, 1),
		border-color 1600ms cubic-bezier(0.16, 1, 0.3, 1),
		color 1600ms cubic-bezier(0.16, 1, 0.3, 1);
}

html.re-themefx-reduced-motion body.home,
html.re-themefx-reduced-motion body.front-page,
html.re-themefx-reduced-motion body.home .re-front-page,
html.re-themefx-reduced-motion body.front-page .re-front-page,
html.re-themefx-reduced-motion body.home .re-front-page .re-theme-zone,
html.re-themefx-reduced-motion body.front-page .re-front-page .re-theme-zone,
html.re-themefx-reduced-motion body.home .re-front-page .re-theme-zone *,
html.re-themefx-reduced-motion body.front-page .re-front-page .re-theme-zone * {
	transition-duration: 1ms !important;
}

.re-entry,
.re-page,
.re-front-page__entry,
.re-error-page {
	max-width: 100%;
}

.re-entry__content,
.re-page__content,
.re-front-page__content {
	margin-top: 1.5rem;
}

.re-page__header,
.re-entry__header,
.re-front-page__header {
	max-width: var(--re-container);
}

.re-home-hero {
	--re-hero-depth: 0px;
	--re-hero-handoff: 0;
	--re-hero-panel-opacity: 1;
	--re-hero-panel-lift: 0px;
	--re-hero-progress: 0;
	background: var(--re-color-paper);
	min-height: clamp(39rem, 100svh, 55rem);
	padding-block: 0;
	position: relative;
}

.re-home-hero__inner {
	display: grid;
	min-height: inherit;
	max-width: none;
	padding-block-end: clamp(18px, 4.6vh, 58px);
	padding-inline: 0;
	place-content: end;
	position: relative;
	text-align: right;
	z-index: 1;
}

.re-home-hero--cinematic {
	background:
		linear-gradient(90deg, rgba(9, 7, 4, 0.12), rgba(9, 7, 4, 0.02) 45%, rgba(9, 7, 4, 0.18)),
		var(--re-hero-image, var(--re-color-paper)) center center / cover no-repeat;
	overflow: clip;
}

.re-home-hero--cinematic::before {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.08) 62%, rgba(11, 11, 11, 0.88)),
		linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 36%, rgba(255, 246, 216, 0.12));
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.re-home-hero--cinematic::after {
	background: linear-gradient(90deg, rgba(215, 170, 52, 0), rgba(245, 215, 126, 0.78), rgba(215, 170, 52, 0));
	bottom: 0;
	content: "";
	height: 1px;
	left: 10%;
	position: absolute;
	right: 10%;
}

.re-home-hero__panel {
	background:
		radial-gradient(circle at 100% 0%, rgba(231, 186, 70, 0.48), transparent 34%),
		linear-gradient(135deg, rgba(24, 18, 10, 0.82), rgba(83, 58, 16, 0.54) 52%, rgba(255, 244, 207, 0.38));
	border: 1px solid rgba(231, 186, 70, 0.38);
	border-radius: 34px 10px 34px 10px;
	box-shadow: 0 1.75rem 4.4rem rgba(35, 24, 6, 0.28), inset 0 1px 0 rgba(255, 247, 218, 0.34);
	margin-block-start: 0;
	margin-inline-end: clamp(14px, 2.2vw, 30px);
	max-width: min(520px, 42vw);
	padding: clamp(1.15rem, 1.9vw, 1.55rem);
	width: min(520px, 42vw);
}

.re-home-hero__panel::before {
	background: linear-gradient(90deg, rgba(215, 170, 52, 0), rgba(245, 215, 126, 0.88), rgba(215, 170, 52, 0));
	content: "";
	display: block;
	height: 2px;
	margin: 0 0 0.95rem auto;
	width: min(11rem, 54%);
}

.re-home-hero__lead {
	color: rgba(255, 250, 232, 0.88);
	font-size: clamp(0.82rem, 1vw, 0.95rem);
	margin-inline-start: auto;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

.re-home-hero__title {
	color: #fff6d8;
	font-size: clamp(30px, 2vw, 36px);
	font-weight: 720;
	letter-spacing: 0;
	line-height: 1.08;
	margin-bottom: 10px;
	margin-inline: auto;
	max-width: 17ch;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
}

.re-home-hero .re-actions {
	justify-content: flex-end;
	margin-block-start: 1rem;
}

.re-home-intro__grid,
.re-split {
	display: grid;
	gap: clamp(1.5rem, 4vw, var(--re-space-4));
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.re-home-intro {
	position: relative;
	margin-block-start: clamp(-3rem, -4vw, -1.25rem);
	padding-block-start: clamp(4rem, 8vw, 7rem);
	z-index: 2;
}

.re-home-intro::before {
	content: none;
}

.re-home-intro__content {
	background: #ffffff;
	border: 1px solid var(--re-color-border);
	border-radius: var(--re-radius);
	box-shadow: 0 1.2rem 3rem rgba(13, 13, 13, 0.06);
	padding: clamp(1.25rem, 3vw, 2rem);
}

.re-after-hero-grid {
	display: grid;
	gap: clamp(0.85rem, 1.5vw, 1.25rem);
	grid-template-columns: 1fr;
	margin-block-start: 0;
}

.re-after-hero-card {
	align-items: center;
	background: #ffffff;
	border: 1px solid #e2e2e2;
	border-radius: 22px;
	box-shadow: 0 20px 48px rgba(17, 17, 17, 0.045);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: clamp(1.8rem, 2.6vw, 2.35rem);
	justify-content: flex-start;
	min-height: clamp(350px, 27vw, 410px);
	padding: 0 clamp(2.15rem, 3.4vw, 3rem) clamp(3.4rem, 4.8vw, 4.7rem);
	text-align: center;
	transform-origin: 50% 80%;
}

.re-after-hero-card__icon {
	align-items: center;
	align-self: center;
	background: #d7aa34;
	border-radius: 50%;
	box-sizing: border-box;
	color: #0d0d0d;
	display: inline-flex;
	flex: 0 0 auto;
	height: clamp(4.7rem, 6.2vw, 5.8rem);
	justify-content: center;
	margin: clamp(5rem, 6.5vw, 6rem) 0 0;
	padding: clamp(1.1rem, 1.55vw, 1.35rem);
	position: relative;
	width: clamp(4.7rem, 6.2vw, 5.8rem);
	z-index: 1;
}

.re-after-hero-card__svg {
	display: block;
	height: 100%;
	max-height: 2.8rem;
	max-width: 2.8rem;
	width: 100%;
}

.re-after-hero-card:first-child .re-after-hero-card__svg {
	max-height: 3.15rem;
	max-width: 3.15rem;
}

.re-after-hero-card h2 {
	align-self: center;
	color: #0d0d0d;
	font-size: clamp(1.36rem, 1.85vw, 1.78rem);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.24;
	margin: 0;
	max-width: 14ch;
}

@media (min-width: 700px) {
	.re-after-hero-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1100px) {
	.re-after-hero-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.re-home-services,
.re-home-process {
	box-shadow: none;
	min-height: max(clamp(42rem, 86svh, 54rem), var(--re-home-screen-min));
	padding-block: clamp(5rem, 9vw, 8rem);
}

.re-home-services {
	--re-services-card-gap: clamp(1.1rem, 1.8vw, 1.6rem);
	--re-services-portrait-height: clamp(23.5rem, 36vw, 34rem);
	isolation: isolate;
	overflow: hidden;
}

.re-home-services::before {
	background:
		radial-gradient(circle at 76% 20%, rgba(215, 170, 52, 0.12), rgba(215, 170, 52, 0.025) 18rem, transparent 31rem),
		radial-gradient(circle at 92% 6%, rgba(255, 245, 210, 0.07), transparent 19rem);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 0;
}

.re-home-services > .re-container {
	position: relative;
	z-index: 2;
}

.re-home-services__stage {
	align-items: center;
	display: grid;
	margin-block-end: clamp(0.5rem, 2.5vw, 1.75rem);
	min-height: clamp(21rem, 32vw, 30rem);
	position: relative;
}

.re-home-services__copy {
	max-width: min(48rem, 62vw);
	position: relative;
	z-index: 4;
}

.re-home-services__visual {
	background: transparent;
	block-size: var(--re-services-portrait-height);
	grid-column: 3;
	grid-row: 1;
	inline-size: 100%;
	inset-block-end: 100%;
	inset-inline: 0;
	pointer-events: none;
	position: absolute;
	z-index: 2;
}

.re-home-services__visual::before {
	content: none;
}

.re-home-services__visual::after {
	content: none;
}

.re-home-services__portrait {
	align-items: flex-end;
	block-size: 100%;
	display: flex;
	clip-path: none;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.re-home-services__portrait img {
	display: block;
	filter: drop-shadow(0 0 1.5px rgba(0, 0, 0, 0.86)) drop-shadow(0 2rem 4rem rgba(0, 0, 0, 0.48));
	inline-size: 100%;
	mask-image: none;
	opacity: 1;
	position: relative;
	transform: none;
	-webkit-mask-image: none;
	z-index: 1;
}

.re-home-services__heading {
	max-width: min(48rem, 62vw);
}

.re-home-services__heading h2 {
	max-width: 20ch;
	text-wrap: balance;
}

.re-home-services__heading p {
	max-width: 44rem;
}

.re-home-services__grid {
	align-items: stretch;
	gap: var(--re-services-card-gap);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	isolation: isolate;
	position: relative;
	z-index: 5;
}

.re-home-services .re-service-card {
	display: flex;
	flex-direction: column;
	min-height: clamp(23rem, 28vw, 28rem);
	padding: clamp(1.25rem, 2.1vw, 1.9rem);
	position: relative;
	z-index: 5;
}

.re-home-services .re-service-card__title {
	font-size: clamp(1.28rem, 1.7vw, 1.65rem);
	line-height: 1.12;
	margin: 0;
	min-height: 3.75rem;
	text-wrap: balance;
}

.re-home-services .re-service-card__text {
	font-size: clamp(0.98rem, 1.05vw, 1.08rem);
	line-height: 1.58;
	margin-block: clamp(0.95rem, 1.4vw, 1.25rem) 0;
	min-height: 8.4rem;
}

.re-home-services .re-service-card__action {
	display: flex;
	margin-block-start: auto;
	padding-block-start: clamp(1.1rem, 1.5vw, 1.35rem);
}

.re-home-services .re-service-card__action .re-button {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	line-height: 1.1;
	min-height: 3.35rem;
	padding: 0.9rem 1.15rem;
	text-align: center;
	width: 100%;
}

.re-home-services .re-service-card__action .re-btn__text {
	align-items: center;
	justify-content: center;
	text-align: center;
}

.re-home-intro,
.re-home-gold,
.re-home-pawnshop,
.re-home-why,
.re-home-faq,
.re-home-faq-cta,
.re-home-contact-cta {
	min-height: max(clamp(36rem, 80svh, 50rem), var(--re-home-screen-min));
	padding-block: clamp(4.5rem, 8vw, 7rem);
}

.re-front-page .re-section:not(.re-home-hero) {
	position: relative;
}

.re-front-page .re-section--dark {
	box-shadow: none;
	margin-block-start: -1px;
}

.re-front-page .re-section--dark + .re-section--light {
	box-shadow: none;
	margin-block-start: -1px;
}

.re-front-page .re-section--light + .re-section--dark {
	margin-block-start: -1px;
}

.re-js .re-front-page .re-section:not(.re-home-hero) > .re-container {
	opacity: 0.001;
	transform: translate3d(0, 1.4rem, 0);
	transition: opacity 760ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.re-js .re-front-page .re-section.is-visible > .re-container {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.re-home-gold .re-split {
	align-items: center;
}

.re-home-pawnshop__inner {
	display: grid;
	gap: clamp(1.35rem, 2.7vw, 2.5rem);
}

.re-home-pawnshop__heading {
	margin-inline: auto;
	max-width: min(70rem, 100%);
	text-align: center;
}

.re-home-pawnshop__heading h2 {
	margin-inline: auto;
	max-width: min(26ch, 100%);
	text-wrap: balance;
}

.re-home-pawnshop__heading p {
	margin-inline: auto;
	max-width: 58rem;
}

.re-home-pawnshop__grid {
	align-items: stretch;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.re-home-pawnshop__card {
	display: flex;
	flex-direction: column;
	min-height: clamp(20rem, 24vw, 24rem);
}

.re-home-pawnshop__card .re-button {
	margin-block-start: auto;
}

.re-home-pawnshop__note {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--re-radius);
	color: rgba(255, 255, 255, 0.84);
	margin: 0 auto;
	max-width: min(58rem, 100%);
	padding: clamp(1rem, 2vw, 1.35rem);
}

.re-home-gold__heading {
	margin-inline: auto;
	max-width: min(88rem, 100%);
	text-align: center;
}

.re-home-gold__heading h2 {
	line-height: 1.06;
	margin-inline: auto;
	max-width: min(32ch, 100%);
	text-wrap: balance;
}

.re-home-gold__heading p {
	margin-inline: auto;
	max-width: 64rem;
}

.re-home-gold__grid {
	display: grid;
	gap: clamp(1.25rem, 2.2vw, 1.9rem);
	grid-template-columns: repeat(6, minmax(0, 1fr));
	margin-block-start: clamp(2rem, 4vw, 3.5rem);
}

.re-home-branch-card {
	background: rgba(255, 252, 245, 0.96);
	border: 1px solid rgba(26, 22, 16, 0.12);
	border-radius: 26px;
	box-shadow: 0 1.2rem 3rem rgba(22, 18, 12, 0.12);
	color: #17130d;
	display: flex;
	flex-direction: column;
	grid-column: span 2;
	min-height: 100%;
	overflow: hidden;
	position: relative;
	transition: box-shadow 320ms ease;
}

.re-home-branch-card:nth-child(4) {
	grid-column: 2 / span 2;
}

.re-home-branch-card__media {
	aspect-ratio: 3 / 2;
	background: #d8d2c5;
	border-radius: 20px;
	margin: clamp(0.8rem, 1.3vw, 1rem) clamp(0.8rem, 1.3vw, 1rem) 0;
	overflow: hidden;
	position: relative;
}

.re-home-branch-card__media::before {
	background: rgba(255, 252, 245, 1);
	border-radius: 0 0 15px 0;
	content: "";
	height: calc(1.72rem + 5px);
	left: -4px;
	pointer-events: none;
	position: absolute;
	top: -4px;
	width: calc(var(--re-branch-city-tab-width, 7.25rem) + 8px);
	z-index: 1;
}

.re-home-branch-card__media img {
	block-size: 100%;
	display: block;
	filter: grayscale(0.82) saturate(0.74) contrast(1.03);
	inline-size: 100%;
	object-fit: cover;
	transition: filter 880ms cubic-bezier(0.16, 1, 0.3, 1);
}

.re-home-branch-card__city {
	align-items: center;
	background: rgba(255, 252, 245, 1);
	border: 0;
	border-radius: 0 0 14px 0;
	box-shadow: none;
	color: #17130d;
	display: inline-flex;
	font-size: clamp(0.62rem, 0.66vw, 0.7rem);
	font-weight: 580;
	letter-spacing: 0;
	line-height: 1;
	max-width: calc(100% - 1.5rem);
	min-height: 1.68rem;
	padding: 0.36rem 0.74rem;
	position: absolute;
	text-align: center;
	top: -3px;
	z-index: 2;
}

.re-home-branch-card__city {
	left: -3px;
}

.re-home-branch-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(1.2rem, 2vw, 1.65rem);
}

.re-home-branch-card__body h3 {
	color: #17130d;
	font-size: clamp(1.125rem, 1.18vw, 1.25rem);
	font-weight: 680;
	line-height: 1.2;
	margin: 0;
	min-height: 2.95rem;
	text-wrap: balance;
}

.re-home-branch-card__body p {
	color: rgba(23, 19, 13, 0.72);
	font-size: clamp(0.98rem, 1.05vw, 1.06rem);
	line-height: 1.56;
	margin-block: 0.95rem 0;
	min-height: 7.7rem;
}

.re-home-branch-card__action {
	display: flex;
	margin-block-start: auto;
	padding-block-start: 1.15rem;
}

.re-home-branch-card__action .re-button {
	justify-content: center;
	min-height: 3.15rem;
	width: 100%;
}

.re-home-branch-card:hover,
.re-home-branch-card:focus-within {
	box-shadow: 0 1.7rem 4rem rgba(22, 18, 12, 0.18);
}

.re-home-branch-card:hover .re-home-branch-card__media img,
.re-home-branch-card:focus-within .re-home-branch-card__media img {
	filter: grayscale(0) saturate(1) contrast(1);
}

.re-js .re-front-page .re-home-gold .re-home-gold__heading,
.re-js .re-front-page .re-home-gold .re-home-branch-card {
	opacity: 0.001;
	transform: translate3d(0, 1.15rem, 0);
	transition: opacity 1100ms cubic-bezier(0.16, 1, 0.3, 1), transform 1250ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 320ms ease;
}

.re-js .re-front-page .re-home-gold.is-visible .re-home-gold__heading,
.re-js .re-front-page .re-home-gold.is-visible .re-home-branch-card {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.re-js .re-front-page .re-home-gold.is-visible .re-home-branch-card:nth-child(1) {
	transition-delay: 80ms;
}

.re-js .re-front-page .re-home-gold.is-visible .re-home-branch-card:nth-child(2) {
	transition-delay: 160ms;
}

.re-js .re-front-page .re-home-gold.is-visible .re-home-branch-card:nth-child(3) {
	transition-delay: 240ms;
}

.re-js .re-front-page .re-home-gold.is-visible .re-home-branch-card:nth-child(4) {
	transition-delay: 320ms;
}

.re-js .re-front-page .re-home-gold.is-visible .re-home-branch-card:nth-child(5) {
	transition-delay: 400ms;
}

.re-js .re-front-page .re-home-gold.is-visible .re-home-branch-card:hover,
.re-js .re-front-page .re-home-gold.is-visible .re-home-branch-card:focus-within {
	transition-delay: 0ms;
}

.re-home-process {
	background: #070706;
	overflow: hidden;
	min-height: 0;
	padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.re-home-process__inner {
	display: grid;
	gap: clamp(2rem, 3.5vw, 3.25rem);
}

.re-home-process__header {
	margin-inline: auto;
	max-width: min(68rem, 100%);
	text-align: center;
}

.re-home-process__header h2 {
	margin-inline: auto;
	max-width: min(22ch, 100%);
	text-wrap: balance;
}

.re-home-process__header p {
	color: rgba(255, 255, 255, 0.78);
	margin-inline: auto;
	max-width: 54rem;
}

.re-home-process__groups {
	display: grid;
	gap: clamp(2.1rem, 3.8vw, 3.6rem);
}

.re-home-process__group {
	display: grid;
	gap: clamp(1rem, 1.8vw, 1.45rem);
}

.re-home-process__group-header {
	margin-inline: auto;
	max-width: min(56rem, 100%);
	text-align: center;
}

.re-home-process__group-header h3 {
	color: #fff8ed;
	font-size: clamp(1.35rem, 2.1vw, 2rem);
	line-height: 1.12;
	margin: 0;
	text-wrap: balance;
}

.re-home-process__group-header p {
	color: rgba(255, 255, 255, 0.72);
	margin: 0.55rem auto 0;
	max-width: 44rem;
}

.re-home-process__grid {
	display: grid;
	gap: clamp(1rem, 2vw, 1.35rem);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.re-home-process__card {
	align-items: center;
	background: rgba(14, 14, 13, 0.92);
	border: 1px solid rgba(226, 195, 139, 0.16);
	border-radius: 18px;
	box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.22);
	display: grid;
	gap: clamp(0.8rem, 1.5vw, 1.15rem);
	grid-template-columns: auto auto minmax(0, 1fr);
	min-height: 0;
	padding: clamp(1rem, 1.75vw, 1.35rem);
	position: relative;
	transition: border-color 220ms ease, box-shadow 220ms ease;
}

.re-js .re-front-page .re-home-process .re-home-process__card {
	opacity: 0;
	transform: translate3d(0, 22px, 0);
	transition:
		opacity 980ms cubic-bezier(0.16, 1, 0.3, 1),
		transform 1080ms cubic-bezier(0.16, 1, 0.3, 1),
		border-color 220ms ease,
		box-shadow 220ms ease;
}

.re-js .re-front-page .re-home-process__group.is-visible .re-home-process__card {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.re-js .re-front-page .re-home-process__group.is-visible .re-home-process__card:nth-child(1) {
	transition-delay: 0ms;
}

.re-js .re-front-page .re-home-process__group.is-visible .re-home-process__card:nth-child(2) {
	transition-delay: 220ms;
}

.re-js .re-front-page .re-home-process__group.is-visible .re-home-process__card:nth-child(3) {
	transition-delay: 440ms;
}

.re-js .re-front-page .re-home-process__group.is-visible .re-home-process__card:nth-child(4) {
	transition-delay: 660ms;
}

.re-home-process__card::before {
	background: linear-gradient(180deg, rgba(198, 154, 85, 0.72), rgba(198, 154, 85, 0));
	content: "";
	inline-size: 1px;
	inset: clamp(1rem, 1.75vw, 1.35rem) auto clamp(1rem, 1.75vw, 1.35rem) 0;
	position: absolute;
}

.re-home-process__card:hover,
.re-home-process__card:focus-within {
	border-color: rgba(226, 195, 139, 0.42);
	box-shadow: 0 1.15rem 2.8rem rgba(0, 0, 0, 0.28);
}

.re-home-process__number {
	color: rgba(198, 154, 85, 0.92);
	font-family: var(--re-font-heading);
	font-size: clamp(1.85rem, 3vw, 2.65rem);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	min-width: 2.2ch;
	text-align: right;
}

.re-home-process__icon {
	align-items: center;
	background: rgba(198, 154, 85, 0.08);
	border: 1px solid rgba(198, 154, 85, 0.42);
	border-radius: 999px;
	display: inline-flex;
	height: clamp(2.25rem, 3.2vw, 2.75rem);
	justify-content: center;
	position: relative;
	width: clamp(2.25rem, 3.2vw, 2.75rem);
}

.re-home-process__icon::before,
.re-home-process__icon::after {
	content: "";
	position: absolute;
}

.re-home-process__icon::before {
	border: 1.5px solid rgba(236, 205, 145, 0.92);
	height: 0.82rem;
	width: 0.82rem;
}

.re-home-process__icon::after {
	background: rgba(236, 205, 145, 0.92);
	height: 1.5px;
	width: 0.9rem;
}

.re-home-process__card:nth-child(1) .re-home-process__icon::before {
	border-radius: 2px;
	transform: translateY(0.12rem);
}

.re-home-process__card:nth-child(1) .re-home-process__icon::after {
	transform: translateY(-0.45rem);
	width: 0.62rem;
}

.re-home-process__card:nth-child(2) .re-home-process__icon::before {
	border-radius: 999px;
	height: 0.9rem;
	width: 0.9rem;
}

.re-home-process__card:nth-child(2) .re-home-process__icon::after {
	transform: translate(0.55rem, 0.55rem) rotate(45deg);
	width: 0.52rem;
}

.re-home-process__card:nth-child(3) .re-home-process__icon::before {
	border-radius: 2px;
	height: 1rem;
	width: 0.74rem;
}

.re-home-process__card:nth-child(3) .re-home-process__icon::after {
	transform: translateY(0.2rem);
	width: 0.42rem;
}

.re-home-process__card:nth-child(4) .re-home-process__icon::before {
	border-radius: 999px;
	box-shadow: -0.26rem 0.2rem 0 -0.06rem rgba(14, 14, 13, 0.92), -0.26rem 0.2rem 0 0 rgba(236, 205, 145, 0.92);
	height: 0.82rem;
	width: 0.82rem;
}

.re-home-process__card:nth-child(4) .re-home-process__icon::after {
	transform: translateY(0.5rem);
	width: 1rem;
}

.re-home-process__copy {
	min-width: 0;
}

.re-home-process__copy h4 {
	color: #fff8ed;
	font-size: clamp(1rem, 1.15vw, 1.16rem);
	line-height: 1.22;
	margin: 0;
	text-wrap: balance;
}

.re-home-process__copy p {
	color: rgba(255, 255, 255, 0.74);
	font-size: clamp(0.91rem, 0.98vw, 0.98rem);
	line-height: 1.48;
	margin: 0.35rem 0 0;
}

.re-home-process__footer {
	align-items: center;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(226, 195, 139, 0.13);
	border-radius: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	justify-content: space-between;
	padding: clamp(0.85rem, 1.5vw, 1.1rem);
}

.re-home-process__note {
	color: rgba(255, 255, 255, 0.76);
	flex: 1 1 24rem;
	margin: 0;
	max-width: 52rem;
	padding-inline-start: 1rem;
	position: relative;
}

.re-home-process__note::before {
	background: rgba(198, 154, 85, 0.8);
	content: "";
	height: calc(100% - 0.25rem);
	inset: 0.125rem auto 0.125rem 0;
	position: absolute;
	width: 1px;
}

.re-home-process__actions {
	flex: 0 0 auto;
}

.re-home-process .re-button {
	background: transparent;
	border-color: rgba(198, 154, 85, 0.58);
	box-shadow: none;
	color: #fff8ed;
}

.re-home-process .re-button:hover,
.re-home-process .re-button:focus-visible {
	background: rgba(198, 154, 85, 0.14);
	border-color: rgba(236, 205, 145, 0.86);
	box-shadow: none;
	color: #ffffff;
	transform: none;
}

.re-check-list {
	display: grid;
	gap: var(--re-space-2);
	list-style-position: inside;
	margin: clamp(1.5rem, 3vw, var(--re-space-4)) 0 0;
	padding: 0;
}

.re-check-list li {
	background: var(--re-card-bg);
	border: 1px solid var(--re-card-border);
	border-radius: var(--re-radius);
	color: var(--re-card-fg);
	padding: var(--re-space-3);
}

.re-section-note {
	color: var(--re-section-muted);
	margin-block-start: clamp(1.5rem, 3vw, var(--re-space-4));
	max-width: 54rem;
}

.re-faq-list {
	display: grid;
	gap: 0.85rem;
	margin-block-start: clamp(1.5rem, 3vw, var(--re-space-4));
}

.re-faq-item {
	background: var(--re-card-bg);
	border: 1px solid var(--re-card-border);
	border-radius: var(--re-radius);
	color: var(--re-card-fg);
	padding: 1rem 1.2rem;
}

.re-faq-item summary {
	cursor: pointer;
	font-weight: 850;
}

.re-faq-item p {
	color: var(--re-card-muted);
	margin-block-start: 0.8rem;
}

.re-page-hero {
	padding-block: clamp(2.25rem, 5vw, 4.25rem);
}

.re-service-overview,
.re-branch-overview,
.re-contact-panel,
.re-related-links,
.re-faq-overview,
.re-faq-detail,
.re-legal-content {
	padding-block: clamp(2.25rem, 4.5vw, 4rem);
}

.re-branch-detail .re-card,
.re-contact-panel .re-card {
	min-height: 100%;
}

.re-branch-card,
.re-faq-card {
	display: flex;
	flex-direction: column;
	gap: var(--re-space-2);
}

.re-branch-card .re-action-list,
.re-faq-card .re-card-link {
	margin-block-start: auto;
}

.re-contact-options {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
	margin-block-end: var(--re-space-4);
}

.re-cta-panel {
	align-items: center;
	background: var(--re-card-bg);
	border: 1px solid var(--re-card-border);
	border-radius: var(--re-radius);
	box-shadow: 0 1.4rem 3.4rem rgba(13, 13, 13, 0.1);
	color: var(--re-card-fg);
	display: flex;
	gap: var(--re-space-4);
	justify-content: space-between;
	padding: clamp(1.4rem, 4vw, 2.5rem);
}

.re-section--dark .re-cta-panel {
	background: #111111;
	border-color: rgba(255, 255, 255, 0.14);
	color: #ffffff;
}

@media (max-width: 760px) {
	.re-front-page {
		--re-home-screen-min: auto;
	}

	.re-home-intro__grid,
	.re-split,
	.re-cta-panel {
		display: block;
	}

	.re-home-hero {
		min-height: 100svh;
		min-height: 100dvh;
		padding-block: 0;
	}

	.re-home-hero--cinematic {
		background:
			linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.78)),
			var(--re-hero-image-mobile, var(--re-hero-image)) center center / cover no-repeat;
	}

	.re-home-hero__inner {
		padding-block-end: 12px;
		padding-inline: 12px;
		place-content: end;
	}

	.re-home-hero__title {
		font-size: clamp(18px, 5.3vw, 23px);
		line-height: 1.08;
		margin-bottom: 6px;
		max-width: 16ch;
	}

	.re-home-hero__panel {
		margin-block-start: 0;
		margin-inline-end: 0;
		max-width: 100%;
		padding: 0.82rem;
		width: 100%;
	}

	.re-home-hero__lead {
		font-size: clamp(9.5px, 2.7vw, 11.5px);
		line-height: 1.25;
		margin-bottom: 8px;
	}

	.re-cta-panel .re-actions {
		margin-block-start: var(--re-space-3);
	}

	.re-home-hero .re-actions {
		align-items: stretch;
		flex-direction: row;
		margin-block-start: 0.5rem;
	}

	.re-home-intro {
		margin-block-start: 0;
		padding-block-start: clamp(1.75rem, 7vw, 2.6rem);
	}

	.re-after-hero-card {
		gap: clamp(1rem, 5vw, 1.45rem);
		min-height: auto;
		padding: clamp(1.4rem, 6vw, 1.9rem);
	}

	.re-after-hero-card__icon {
		margin-block-start: 0;
	}

	.re-home-services__visual {
		display: none;
	}

	.re-home-services__grid {
		grid-template-columns: 1fr;
	}

	.re-home-services__stage {
		min-height: 0;
	}

	.re-home-services__heading {
		max-width: 100%;
	}

	.re-home-services__heading h2 {
		max-width: 18ch;
	}

	.re-home-services .re-service-card {
		min-height: auto;
	}

	.re-home-services .re-service-card__title,
	.re-home-services .re-service-card__text {
		min-height: 0;
	}

	.re-home-services .re-service-card__action .re-button {
		min-height: 3.1rem;
	}

	.re-home-gold__heading {
		text-align: left;
	}

	.re-home-gold__grid {
		grid-template-columns: 1fr;
	}

	.re-home-pawnshop__grid {
		grid-template-columns: 1fr;
	}

	.re-home-process__header {
		text-align: left;
	}

	.re-home-process__header h2,
	.re-home-process__group-header h3 {
		max-width: 100%;
	}

	.re-home-process__group-header {
		text-align: left;
	}

	.re-home-process__grid {
		grid-template-columns: 1fr;
	}

	.re-home-process__card {
		grid-template-columns: auto auto minmax(0, 1fr);
		min-height: auto;
	}

	.re-home-process__footer {
		align-items: stretch;
		display: grid;
	}

	.re-home-process__actions,
	.re-home-process__actions .re-button {
		width: 100%;
	}

	.re-home-branch-card,
	.re-home-branch-card:nth-child(4) {
		grid-column: auto;
	}

	.re-home-branch-card__city {
		font-size: 0.64rem;
		font-weight: 600;
		max-width: calc(100% - 1.2rem);
		min-height: 1.65rem;
		padding: 0.36rem 0.58rem;
	}

	.re-home-branch-card__body h3,
	.re-home-branch-card__body p {
		min-height: 0;
	}

	.re-home-branch-card__body h3 {
		font-size: clamp(1rem, 4vw, 1.1rem);
	}
}

@media (min-width: 761px) and (max-width: 1100px) {
	.re-front-page {
		--re-home-screen-min: 72svh;
	}

	.re-home-hero {
		min-height: clamp(32rem, 82svh, 44rem);
		padding-block: 0;
	}

	.re-home-hero__inner {
		padding-block-end: clamp(16px, 3.4vh, 34px);
	}

	.re-home-hero__title {
		font-size: clamp(21px, 2.45vw, 28px);
		line-height: 1.08;
		max-width: 17ch;
	}

	.re-home-hero__panel {
		margin-block-start: 0;
		margin-inline-end: clamp(12px, 2vw, 22px);
		max-width: min(430px, 52vw);
		padding: clamp(1rem, 1.8vw, 1.35rem);
		width: min(430px, 52vw);
	}

	.re-home-hero__lead {
		font-size: clamp(11px, 1.2vw, 13px);
	}

	.re-home-services__stage {
		min-height: clamp(18rem, 36vw, 24rem);
	}

	.re-home-services__copy {
		max-width: min(42rem, 70vw);
	}

	.re-home-services__visual {
		--re-services-portrait-height: clamp(19.75rem, 41vw, 26.5rem);
		block-size: clamp(19.75rem, 41vw, 26.5rem);
		grid-column: 2;
		inline-size: 100%;
		inset-block-end: 100%;
		inset-inline: 0;
	}

	.re-home-services__portrait {
		clip-path: none;
	}

	.re-home-services__heading {
		max-width: min(46rem, 88vw);
	}

	.re-home-services__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.re-home-services .re-service-card {
		min-height: 24rem;
	}

	.re-home-services .re-service-card__text {
		min-height: 7.2rem;
	}

	.re-home-gold__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.re-home-pawnshop__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.re-home-branch-card,
	.re-home-branch-card:nth-child(4) {
		grid-column: auto;
	}

	.re-home-branch-card__body h3 {
		min-height: 3.4rem;
	}

	.re-home-branch-card__body p {
		min-height: 8.8rem;
	}
}

@media (max-width: 380px) {
	.re-home-process__card {
		align-items: start;
		grid-template-columns: auto 1fr;
	}

	.re-home-process__copy {
		grid-column: 1 / -1;
	}

	.re-home-process__number {
		text-align: left;
	}
}

@media (prefers-reduced-motion: reduce) {
	.re-home-hero--cinematic,
	.re-home-hero__panel,
	.re-home-intro {
		opacity: 1;
		transform: none;
	}

	.re-js .re-front-page .re-section:not(.re-home-hero) > .re-container {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.re-js .re-front-page .re-home-gold .re-home-gold__heading,
	.re-js .re-front-page .re-home-gold .re-home-branch-card {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.re-js .re-front-page .re-home-process .re-home-process__card {
		opacity: 1;
		transform: none;
		transition: none;
		transition-delay: 0ms;
	}

	.re-home-branch-card,
	.re-home-branch-card__media img {
		transition: none;
	}

	.re-home-branch-card:hover,
	.re-home-branch-card:focus-within,
	.re-home-branch-card:focus-within .re-home-branch-card__media img,
	.re-home-branch-card:hover .re-home-branch-card__media img {
		transform: none;
	}
}

.re-static-page {
	background:
		linear-gradient(180deg, rgba(255, 250, 240, 0.82) 0%, rgba(255, 255, 255, 0.96) 42%, rgba(255, 250, 240, 0.68) 100%);
	padding-block: clamp(3rem, 6vw, 5.5rem);
}

.re-static-page__inner {
	display: grid;
	gap: clamp(1.35rem, 3vw, 2.25rem);
}

.re-static-page__header {
	max-width: 68rem;
	position: relative;
}

.re-static-page__header::before {
	background: var(--re-color-gold);
	content: "";
	display: block;
	height: 3px;
	margin-bottom: clamp(1rem, 2vw, 1.35rem);
	width: clamp(3rem, 6vw, 5rem);
}

.re-static-page__header .re-page__title {
	margin: 0;
	max-width: 20ch;
	text-wrap: balance;
}

.re-static-page__intro {
	color: rgba(29, 24, 16, 0.78);
	font-size: clamp(1.08rem, 1.7vw, 1.28rem);
	line-height: 1.68;
	margin: clamp(1rem, 2vw, 1.35rem) 0 0;
	max-width: 66rem;
}

.re-static-page__grid {
	display: grid;
	gap: clamp(1rem, 2vw, 1.4rem);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.re-static-page__card {
	background: linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(255, 247, 230, 0.92));
	border: 1px solid rgba(169, 131, 31, 0.2);
	border-radius: 18px;
	box-shadow: 0 18px 42px rgba(26, 20, 10, 0.07);
	display: grid;
	gap: 0.75rem;
	padding: clamp(1.2rem, 2vw, 1.65rem);
	position: relative;
}

.re-static-page__card::before {
	background: linear-gradient(180deg, rgba(193, 147, 39, 0.65), rgba(193, 147, 39, 0.05));
	border-radius: 999px;
	content: "";
	inset: 1.2rem auto 1.2rem 0;
	position: absolute;
	width: 3px;
}

.re-static-page__card h2 {
	font-size: clamp(1.08rem, 1.35vw, 1.28rem);
	line-height: 1.25;
	margin: 0;
	padding-left: 0.35rem;
}

.re-static-page__card p {
	color: rgba(29, 24, 16, 0.72);
	line-height: 1.68;
	margin: 0;
	padding-left: 0.35rem;
}

.re-static-page__status {
	background: rgba(255, 250, 240, 0.94);
	border: 1px solid rgba(169, 131, 31, 0.24);
	border-radius: 16px;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
	color: rgba(29, 24, 16, 0.82);
	line-height: 1.65;
	margin: 0;
	max-width: 56rem;
	padding: 1rem 1.15rem 1rem 1.35rem;
	position: relative;
}

.re-static-page__status::before {
	background: var(--re-color-gold);
	border-radius: 999px;
	content: "";
	inset: 1rem auto 1rem 0;
	position: absolute;
	width: 3px;
}

.re-static-page__actions {
	display: flex;
	margin-top: -0.25rem;
}

@media (max-width: 920px) {
	.re-static-page__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.re-static-page {
		padding-block: 2.5rem;
	}

	.re-static-page__inner {
		gap: 1.25rem;
	}

	.re-static-page__header .re-page__title {
		max-width: none;
	}

	.re-static-page__grid {
		grid-template-columns: 1fr;
	}

	.re-static-page__actions .re-button {
		width: 100%;
	}
}

/* Phase 96: keep process cards inside narrow mobile viewports. */
@media (max-width: 640px) {
	.re-home-process,
	.re-home-process__inner,
	.re-home-process__groups,
	.re-home-process__group,
	.re-home-process__grid,
	.re-home-process__card,
	.re-home-process__footer {
		box-sizing: border-box;
		max-width: 100%;
		min-width: 0;
	}

	.re-home-process__grid {
		grid-template-columns: 1fr;
		width: 100%;
	}

	.re-home-process__card {
		align-items: start;
		grid-template-columns: minmax(0, auto) minmax(0, 1fr);
		gap: 0.75rem;
		overflow-wrap: anywhere;
		padding: 1rem;
	}

	.re-home-process__icon {
		justify-self: end;
	}

	.re-home-process__copy {
		grid-column: 1 / -1;
		min-width: 0;
	}

	.re-home-process__number {
		min-width: 0;
		text-align: left;
	}
}
