:root {
	--ebr-canvas: #f5f5f5;
	--ebr-surface: #ffffff;
	--ebr-surface-soft: #fbf8f1;
	--ebr-ink: #0b1f3a;
	--ebr-muted: #46515f;
	--ebr-accent: #c89b3c;
	--ebr-accent-dark: #ab7f23;
	--ebr-accent-soft: rgba(200, 155, 60, 0.16);
	--ebr-charcoal: #2b2b2b;
	--ebr-line: rgba(11, 31, 58, 0.12);
	--ebr-shadow: 0 20px 50px rgba(11, 31, 58, 0.08);
	--ebr-radius: 6px;
	--ebr-container: min(1280px, calc(100vw - 1.5rem));
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top left, rgba(200, 155, 60, 0.1), transparent 28%),
		linear-gradient(180deg, #faf7f1 0%, var(--ebr-canvas) 100%);
	color: var(--ebr-charcoal);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 16px;
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

.container {
	width: var(--ebr-container);
	margin: 0 auto;
}

.site-main {
	padding-bottom: 7.5rem;
}

.top-contact-bar {
	background: rgba(24, 50, 74, 0.04);
	border-bottom: 1px solid rgba(24, 50, 74, 0.05);
}

.top-contact-inner,
.top-contact-links,
.hero-actions,
.footer-cta-actions,
.inline-actions,
.section-actions,
.thank-you-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.85rem;
}

.top-contact-inner {
	justify-content: space-between;
	padding: 0.65rem 0;
}

.top-contact-copy,
.footer-copy,
.footer-legal,
.section-copy,
.hero-copy,
.info-card p,
.testimonial-card p,
.cta-card p,
.hero-stat-card p,
.hero-card p,
.form-notice,
.number-list,
.check-list {
	color: var(--ebr-muted);
}

.top-contact-copy,
.top-contact-links a,
.brand-kicker,
.eyebrow,
.card-label,
.quote-mark,
.quote-attribution,
.testimonial-context,
.footer-heading,
.field-group label {
	font-family: "Trebuchet MS", Arial, sans-serif;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 0.75rem;
	font-weight: 700;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: #0b1f3a;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
	display: grid;
	gap: 1rem;
	padding: 15px 20px;
	justify-items: center;
}

.header-brand-column,
.header-actions {
	min-width: 0;
}

.header-brand {
	display: inline-flex;
	align-items: center;
	color: #fff;
}

.header-logo {
	display: block;
	max-width: 220px;
	max-height: 64px;
	object-fit: contain;
}

.header-wordmark {
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.15;
	color: #fff;
}

.brand-block {
	display: grid;
	gap: 0.2rem;
}

.brand-mark {
	display: inline-grid;
	gap: 0.05rem;
}

.brand-title {
	font-size: 1.4rem;
	font-weight: 700;
}

.menu-list,
.menu-fallback,
.footer-menu,
.social-link-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu-list a,
.menu-fallback a,
.footer-menu a,
.social-link-list a,
.header-link {
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--ebr-ink);
}

.header-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	justify-content: center;
}

.primary-nav {
	width: 100%;
}

.primary-nav .menu-list,
.primary-nav .menu-fallback {
	justify-content: center;
}

.site-header .menu-list a,
.site-header .menu-fallback a {
	color: #fff;
}

.site-header .menu-list a:hover,
.site-header .menu-list a:focus-visible,
.site-header .menu-fallback a:hover,
.site-header .menu-fallback a:focus-visible {
	color: #f0d698;
}

.header-cta.button-primary {
	padding: 12px 18px;
	border-radius: 6px;
	background: #c89b3c;
	color: #fff;
}

.header-cta.button-primary:hover,
.header-cta.button-primary:focus-visible {
	background: #ab7f23;
	color: #fff;
}

.anchor-target {
	display: block;
	height: 0;
	scroll-margin-top: 7rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.2rem;
	border: 1px solid transparent;
	border-radius: 4px;
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	text-align: center;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-1px);
}

.button-primary {
	background: var(--ebr-accent);
	color: var(--ebr-ink);
	border-color: rgba(11, 31, 58, 0.08);
}

.button-primary:hover,
.button-primary:focus-visible {
	background: var(--ebr-accent-dark);
	color: #fff;
}

.button-secondary {
	border-color: transparent;
	background: var(--ebr-ink);
	color: #f5f5f5;
}

.button-secondary:hover,
.button-secondary:focus-visible {
	background: #17345e;
}

.button-compact {
	padding: 0.8rem 1rem;
}

.button-full {
	width: 100%;
}

.hero-section,
.page-hero,
.section {
	padding: 2.5rem 0;
}

.hero-grid,
.split-section,
.footer-grid,
.footer-cta-band,
.top-contact-inner {
	display: grid;
	gap: 1.25rem;
}

.page-hero .narrow-stack,
.form-card,
.info-card,
.testimonial-card,
.cta-card,
.hero-card,
.hero-stat-card,
.footer-cta-band,
.about-panel,
.about-card,
.thank-you-panel {
	border: 1px solid var(--ebr-line);
	border-radius: var(--ebr-radius);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: var(--ebr-shadow);
}

.hero-grid {
	padding: 1.5rem;
	border: 0;
	border-radius: 0;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(251, 248, 241, 0.48)),
		radial-gradient(circle at top right, rgba(200, 155, 60, 0.14), transparent 28%);
	box-shadow: none;
}

.hero-copy-block,
.hero-aside,
.narrow-stack,
.lead-form,
.field-group,
.cta-card,
.about-highlights,
.hero-note-row,
.hero-note {
	display: grid;
	gap: 1rem;
}

h1,
h2,
h3 {
	margin: 0 0 0.85rem;
	line-height: 1.05;
}

h1 {
	font-size: clamp(2.5rem, 8vw, 4.8rem);
	letter-spacing: -0.04em;
}

h2 {
	font-size: clamp(1.95rem, 5vw, 3.2rem);
	letter-spacing: -0.03em;
}

h3 {
	font-size: 1.35rem;
}

.hero-trust-list,
.check-list,
.number-list {
	margin: 0;
	padding-left: 1.2rem;
}

.hero-card,
.hero-stat-card,
.info-card,
.testimonial-card,
.hero-note,
.cta-card,
.form-card,
.about-panel,
.about-card,
.thank-you-panel {
	padding: 1.25rem;
}

.hero-stat-grid,
.card-grid,
.testimonial-grid {
	display: grid;
	gap: 1rem;
}

.card-grid-four,
.card-grid-three,
.card-grid-two,
.testimonial-grid-expanded {
	grid-template-columns: 1fr;
}

.section-intro {
	display: grid;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.hero-section {
	padding-top: 1.5rem;
}

.hero-copy-block {
	gap: 1.25rem;
}

.hero-copy-block h1 {
	max-width: 10ch;
	font-size: clamp(2.8rem, 6.2vw, 4.6rem);
}

.hero-copy {
	max-width: 40rem;
	font-size: 1.05rem;
}

.hero-actions {
	margin-top: 0.2rem;
}

.hero-note-row {
	grid-template-columns: 1fr;
}

.hero-note {
	padding: 1rem 1.05rem;
	border: 1px solid rgba(11, 31, 58, 0.08);
	border-radius: 18px;
	background: rgba(251, 248, 241, 0.92);
}

.hero-note p,
.hero-note .card-label {
	margin: 0;
}

.hero-aside {
	gap: 0.95rem;
}

.hero-card {
	background: linear-gradient(180deg, rgba(11, 31, 58, 0.98), rgba(22, 43, 75, 0.96));
	color: #fff;
}

.hero-card p,
.hero-card .card-label,
.hero-card .stat-value {
	color: inherit;
}

.hero-stat-card {
	background: rgba(251, 248, 241, 0.95);
}

.card-grid .info-card,
.split-section .info-card,
.split-section .cta-card {
	background: rgba(255, 255, 255, 0.96);
}

.home-differentiators-section {
	padding-top: 1rem;
}

.home-differentiators-grid {
	gap: 1.1rem;
}

.home-differentiators-grid .info-card {
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(251, 248, 241, 0.96));
	box-shadow: none;
}

.home-differentiators-grid .info-card h3 {
	font-size: 1.6rem;
}

.home-differentiators-grid .info-card p {
	max-width: 28rem;
}

.buyer-teaser-stack {
	display: grid;
	gap: 1rem;
}

.buyer-teaser-copy {
	display: grid;
	gap: 1.2rem;
}

.buyer-teaser-section {
	align-items: start;
}

.buyer-feature-list {
	display: grid;
	gap: 1rem;
}

.buyer-feature-list .hero-note {
	background: rgba(255, 255, 255, 0.6);
	box-shadow: none;
}

.cta-card.buyer-search-card {
	align-content: start;
	background: linear-gradient(180deg, rgba(11, 31, 58, 0.98), rgba(24, 49, 87, 0.96));
	color: #f5f5f5;
	border: 0;
	box-shadow: 0 24px 60px rgba(11, 31, 58, 0.14);
}

.cta-card.buyer-search-card p,
.cta-card.buyer-search-card h3,
.cta-card.buyer-search-card .card-label {
	color: #f5f5f5;
}

.cta-card.buyer-search-card .button-secondary {
	background: var(--ebr-accent);
	color: var(--ebr-ink);
}

.buyer-support-bar {
	display: grid;
	gap: 1rem;
	padding: 1rem 0;
	border-top: 1px solid rgba(11, 31, 58, 0.12);
	background: transparent;
	box-shadow: none;
}

.buyer-support-bar .card-label,
.buyer-support-bar .section-copy {
	margin: 0;
}

.buyer-support-bar .button-primary {
	justify-self: start;
}

.section-testimonials .section-intro {
	max-width: 760px;
}

.section-testimonials .section-actions {
	margin-top: 1.25rem;
	justify-content: center;
}

.idx-placeholder,
.idx-placeholder-box {
	display: grid;
	gap: 1rem;
}

.idx-placeholder {
	padding: 1.25rem;
	border: 1px solid var(--ebr-line);
	border-radius: var(--ebr-radius);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: var(--ebr-shadow);
}

.idx-placeholder-box {
	padding: 1.1rem;
	border: 1px dashed rgba(11, 31, 58, 0.24);
	border-radius: 18px;
	background: rgba(251, 248, 241, 0.9);
}

.idx-placeholder-title,
.idx-placeholder-code {
	margin: 0;
}

.idx-placeholder-title {
	font-weight: 700;
	color: var(--ebr-ink);
}

.idx-placeholder-code {
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 0.9rem;
	color: var(--ebr-muted);
}

.testimonial-card {
	display: grid;
	gap: 0.8rem;
	min-height: 100%;
}

.testimonial-card .quote-mark,
.testimonial-card .quote-attribution,
.testimonial-card .testimonial-context {
	margin: 0;
}

.testimonial-quote {
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.75;
	color: var(--ebr-ink);
}

.testimonial-context {
	color: var(--ebr-muted);
}

.testimonial-card .quote-attribution {
	color: var(--ebr-ink);
}

.section-alt {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(251, 248, 241, 0.9));
}

.stat-value {
	font-size: 1.6rem;
	max-width: none;
	margin-bottom: 0.4rem;
}

.form-card {
	background: rgba(255, 255, 255, 0.98);
}

.lead-form {
	gap: 0.9rem;
}

.seller-ai-card {
	gap: 1rem;
}

.seller-ai-progress {
	display: grid;
	gap: 0.65rem;
}

.seller-ai-progress-step {
	padding: 0.7rem 0.9rem;
	border: 1px solid var(--ebr-line);
	border-radius: 999px;
	background: rgba(251, 248, 241, 0.9);
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--ebr-muted);
	text-align: center;
}

.seller-ai-progress-step.is-active {
	background: var(--ebr-ink);
	color: #f5f5f5;
}

.seller-ai-progress-step.is-complete {
	background: var(--ebr-accent-soft);
	color: var(--ebr-ink);
}

.seller-ai-step {
	display: none;
	gap: 0.9rem;
}

.seller-ai-step.is-active {
	display: grid;
}

.seller-ai-summary {
	padding: 1rem 1.1rem;
	border: 1px solid var(--ebr-line);
	border-radius: 18px;
	background: rgba(251, 248, 241, 0.92);
}

.seller-ai-summary .card-label,
.seller-ai-summary .section-copy {
	margin: 0;
}

.seller-ai-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	justify-content: space-between;
}

.seller-ai-actions .button {
	flex: 1 1 180px;
}

.field-group input,
.field-group select,
.field-group textarea {
	width: 100%;
	padding: 0.95rem 1rem;
	border: 1px solid var(--ebr-line);
	border-radius: 16px;
	background: #fff;
	color: var(--ebr-charcoal);
	font: inherit;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
	outline: 2px solid var(--ebr-accent-soft);
	border-color: rgba(200, 155, 60, 0.7);
}

.field-group-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-notice {
	margin-bottom: 1rem;
	padding: 0.9rem 1rem;
	border-radius: 16px;
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 0.92rem;
}

.form-notice-success {
	background: rgba(200, 155, 60, 0.12);
	color: var(--ebr-ink);
}

.form-notice-error {
	background: rgba(189, 80, 58, 0.12);
	color: #8f3724;
}

.footer-cta-band {
	padding: 1.35rem;
	margin-bottom: 1.4rem;
	background: linear-gradient(145deg, rgba(11, 31, 58, 0.98), rgba(24, 49, 87, 0.96));
	color: #fff;
	border-radius: 0;
}

.footer-cta-band .section-copy,
.footer-cta-band .eyebrow,
.footer-cta-band h2 {
	color: inherit;
}

.site-footer {
	padding: 0 0 7.5rem;
	border-top: 1px solid rgba(11, 31, 58, 0.08);
}

.footer-shell {
	padding: 1.1rem 0 0;
}

.footer-grid {
	padding: 0.15rem 0 1.9rem;
	gap: 1.5rem;
}

.footer-grid > div {
	padding: 0;
}

.social-link-list {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 0.75rem;
}

.footer-brand-column,
.footer-contact-column,
.footer-meta-column {
	display: grid;
	align-content: start;
	gap: 0.85rem;
}

.footer-contact-column {
	justify-items: start;
}

.footer-wordmark {
	margin: 0;
	color: var(--ebr-ink);
	font-size: clamp(1.75rem, 4vw, 3.2rem);
	line-height: 0.95;
	font-weight: 700;
}

.footer-info-block {
	display: grid;
	gap: 0.7rem;
	max-width: 18rem;
}

.footer-phone {
	margin: 0;
	font-size: 2rem;
	line-height: 1.1;
}

.footer-phone a {
	color: var(--ebr-ink);
}

.footer-contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.footer-contact-actions .button {
	border-radius: 0;
}

.footer-meta-column {
	gap: 1.1rem;
	justify-items: start;
	padding-left: 0;
}

.footer-social-block,
.footer-brokerage-block {
	display: grid;
	gap: 0.65rem;
}

.footer-shell a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.footer-shell .button {
	text-decoration: none;
}

.social-circle-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.8rem;
	height: 2.8rem;
	border-radius: 999px;
	background: var(--ebr-ink);
	color: #fff;
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease;
}

.social-circle-icon {
	width: 1.15rem;
	height: 1.15rem;
	display: block;
}

.social-circle-link:hover,
.social-circle-link:focus-visible {
	background: var(--ebr-accent-dark);
	transform: translateY(-1px);
}

.footer-bottom-row {
	display: grid;
	gap: 1.5rem;
	padding: 1.7rem 0 0;
	border-top: 1px solid rgba(11, 31, 58, 0.12);
}

.footer-bottom-nav,
.footer-bottom-meta {
	display: grid;
	gap: 1rem;
	align-content: start;
}

.footer-menu,
.footer-bottom-nav .menu-fallback {
	gap: 0.9rem 1.5rem;
}

.footer-menu a,
.footer-bottom-nav .menu-fallback a {
	font-size: 0.92rem;
}

.brokerage-logo-wrap {
	padding: 0;
}

.brokerage-logo {
	display: block;
	width: 100%;
	max-width: 190px;
	height: auto;
}

.footer-legal {
	max-width: 30rem;
	font-size: 0.82rem;
	line-height: 1.55;
	text-transform: none;
	letter-spacing: 0;
}

.footer-copyright {
	margin: 0;
	color: var(--ebr-muted);
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 0.85rem;
}

.footer-brand-column,
.footer-contact-column,
.footer-social-block {
	padding-top: 0.35rem;
}

.mobile-cta-bar {
	position: fixed;
	right: 0.75rem;
	bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
	left: 0.75rem;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	z-index: 40;
}

.mobile-cta-link {
	padding: 1rem 0.75rem;
	border: 1px solid var(--ebr-line);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 12px 24px rgba(11, 31, 58, 0.18);
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 0.92rem;
	font-weight: 700;
	text-align: center;
	color: var(--ebr-ink);
}

.mobile-cta-call {
	background: rgba(11, 31, 58, 0.98);
	color: #f5f5f5;
}

.mobile-cta-text {
	background: rgba(200, 155, 60, 0.98);
	color: var(--ebr-ink);
}

.prose-block {
	max-width: 760px;
	padding: 1.5rem;
	border: 1px solid var(--ebr-line);
	border-radius: var(--ebr-radius);
	background: rgba(255, 255, 255, 0.95);
}

@media (min-width: 768px) {
	.site-main {
		padding-bottom: 3rem;
	}

	.site-footer {
		padding-bottom: 3rem;
	}

	.header-inner {
		grid-template-columns: minmax(0, 0.25fr) minmax(0, 0.5fr) minmax(0, 0.25fr);
		align-items: center;
		justify-items: stretch;
	}

	.header-brand-column {
		justify-self: start;
	}

	.primary-nav {
		width: auto;
	}

	.header-actions {
		justify-content: flex-end;
	}

	.hero-grid,
	.split-section,
	.footer-cta-band,
	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
	}

	.hero-grid {
		padding: 2rem;
	}

	.hero-note-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero-stat-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.seller-ai-progress {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.card-grid-three {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.card-grid-two {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.buyer-support-bar {
		grid-template-columns: 1fr auto;
		align-items: center;
	}

	.card-grid-four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.testimonial-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.testimonial-grid-expanded {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.about-highlights {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.footer-bottom-row {
		grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
		align-items: start;
	}

	.footer-bottom-meta {
		justify-items: end;
		text-align: right;
	}
}

@media (min-width: 1024px) {
	.hero-section,
	.page-hero,
	.section {
		padding: 4rem 0;
	}

	.card-grid-four {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.hero-grid {
		grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
		padding: 2.5rem;
	}

	.footer-grid {
		grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr) minmax(0, 0.95fr);
		align-items: start;
	}

	.mobile-cta-bar {
		display: none;
	}
}

/* Screenshot-inspired seller homepage refresh. */
:root {
	--ebr-canvas: #f4f4f3;
	--ebr-surface: #ffffff;
	--ebr-ink: #141517;
	--ebr-muted: #555b62;
	--ebr-accent: #bd9443;
	--ebr-accent-dark: #9b742d;
	--ebr-accent-soft: rgba(189, 148, 67, 0.18);
	--ebr-charcoal: #151718;
	--ebr-line: rgba(20, 21, 23, 0.12);
	--ebr-shadow: 0 14px 32px rgba(20, 21, 23, 0.12);
	--ebr-radius: 6px;
	--ebr-container: min(1180px, calc(100vw - 32px));
}

body {
	background: var(--ebr-canvas);
	color: var(--ebr-ink);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.45;
}

h1,
h2,
h3 {
	letter-spacing: 0;
}

h1 {
	font-size: 2.55rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.25rem;
}

.site-main {
	padding-bottom: 0;
}

.top-contact-bar {
	background: #111315;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	color: #fff;
}

.top-contact-inner {
	display: flex;
	justify-content: space-between;
	min-height: 34px;
	padding: 6px 0;
}

.top-contact-copy {
	position: relative;
	margin: 0;
	color: #f6f6f4;
	font-size: 0.78rem;
	letter-spacing: 0;
	text-transform: none;
}

.top-contact-copy:first-child {
	padding-left: 18px;
}

.top-contact-copy:first-child::before {
	position: absolute;
	top: 0.45em;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--ebr-accent);
	content: "";
}

.top-contact-phone a {
	color: #e7c16f;
	font-weight: 800;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(5, 6, 7, 0.98);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
	display: grid;
	grid-template-columns: 240px 1fr 230px;
	align-items: center;
	gap: 22px;
	min-height: 92px;
	padding: 12px 0;
}

.header-brand {
	color: #fff;
}

.header-wordmark,
.footer-wordmark {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: Arial, Helvetica, sans-serif;
	text-transform: uppercase;
}

.header-mark,
.footer-mark {
	position: relative;
	display: block;
	width: 70px;
	height: 36px;
}

.header-mark::before,
.header-mark::after,
.footer-mark::before,
.footer-mark::after {
	position: absolute;
	right: 0;
	left: 0;
	height: 3px;
	background: var(--ebr-accent);
	content: "";
	transform-origin: center;
}

.header-mark::before,
.footer-mark::before {
	top: 14px;
	transform: rotate(-30deg);
}

.header-mark::after,
.footer-mark::after {
	top: 14px;
	transform: rotate(30deg);
}

.header-brand-text,
.footer-wordmark > span:last-child {
	display: grid;
	line-height: 1;
}

.header-brand-name,
.footer-brand-name {
	color: #d7a64d;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.header-brand-subtitle,
.footer-brand-subtitle {
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.42em;
}

.header-logo {
	max-width: 190px;
	max-height: 70px;
}

.primary-nav {
	width: auto;
}

.primary-nav .menu-list,
.primary-nav .menu-fallback {
	justify-content: center;
	gap: 28px;
}

.site-header .menu-list a,
.site-header .menu-fallback a {
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.site-header .menu-list a:hover,
.site-header .menu-list a:focus-visible,
.site-header .menu-fallback a:hover,
.site-header .menu-fallback a:focus-visible {
	color: #e7c16f;
}

.header-actions {
	justify-content: flex-end;
}

.button {
	min-height: 44px;
	border-radius: 3px;
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.2;
	text-transform: uppercase;
}

.button-primary,
.header-cta.button-primary {
	background: linear-gradient(180deg, #d0a753, #b78b35);
	border-color: rgba(255, 255, 255, 0.14);
	color: #fff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible,
.header-cta.button-primary:hover,
.header-cta.button-primary:focus-visible {
	background: linear-gradient(180deg, #bc9037, #9f7428);
	color: #fff;
}

.button-secondary {
	background: #171a1c;
	color: #fff;
}

.button-outline {
	background: rgba(5, 6, 7, 0.5);
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
}

.header-cta.button-primary {
	max-width: 190px;
	padding: 14px 18px;
}

.hero-home {
	position: relative;
	overflow: hidden;
	min-height: 480px;
	padding: 0;
	background-image:
		linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.78) 35%, rgba(0, 0, 0, 0.38) 65%, rgba(0, 0, 0, 0.72) 100%),
		var(--hero-image);
	background-position: center;
	background-size: cover;
	color: #fff;
}

.hero-layout {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
	align-items: end;
	min-height: 480px;
}

.hero-copy-block {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 18px;
	padding: 52px 0 42px;
}

.hero-copy-block h1 {
	max-width: 12ch;
	margin: 0;
	color: #fff;
	font-size: 3.35rem;
	font-weight: 900;
	line-height: 0.98;
}

.hero-copy-block h1 span {
	display: block;
	margin-top: 8px;
	color: #d0a753;
	font-size: 1.7rem;
	line-height: 1.12;
}

.hero-copy {
	max-width: 430px;
	margin: 0;
	color: #fff;
	font-size: 1.02rem;
	font-weight: 700;
	line-height: 1.45;
}

.hero-actions {
	display: flex;
	gap: 14px;
	margin-top: 6px;
}

.hero-actions .button {
	min-width: 230px;
}

.hero-microcopy {
	position: relative;
	margin: 0;
	padding-left: 19px;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
}

.hero-microcopy::before {
	position: absolute;
	top: 0.25em;
	left: 1px;
	width: 9px;
	height: 9px;
	border: 1px solid #d0a753;
	border-radius: 2px;
	content: "";
}

.hero-agent-panel {
	position: absolute;
	right: 100px;
	bottom: -22px;
	z-index: 1;
	width: 390px;
	max-width: 40%;
	pointer-events: none;
}

.hero-agent-photo {
	display: block;
	width: 100%;
	height: auto;
	mix-blend-mode: lighten;
	filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.5));
}

.proof-strip {
	background: #fff;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.proof-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 22px;
	padding: 23px 0 24px;
}

.proof-item {
	display: grid;
	justify-items: center;
	align-content: start;
	gap: 7px;
	text-align: center;
}

.proof-icon,
.situation-icon {
	display: inline-grid;
	place-items: center;
	color: var(--ebr-accent);
}

.proof-icon {
	width: 50px;
	height: 44px;
	font-size: 2.4rem;
	font-weight: 900;
	line-height: 1;
}

.proof-icon svg,
.situation-icon svg,
.process-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.proof-icon-stars {
	width: auto;
	font-size: 1.15rem;
	letter-spacing: 0.08em;
}

.proof-logo {
	width: 96px;
	height: 44px;
	object-fit: contain;
}

.proof-item h3,
.proof-item p,
.process-step h3,
.process-step p,
.situation-item h3 {
	margin: 0;
}

.proof-item h3 {
	font-size: 0.88rem;
	font-weight: 900;
	text-transform: uppercase;
}

.proof-item p {
	max-width: 150px;
	color: #2f3337;
	font-size: 0.86rem;
	line-height: 1.25;
}

.section {
	padding: 28px 0;
}

.section-heading-centered {
	display: grid;
	justify-items: center;
	gap: 6px;
	margin-bottom: 18px;
	text-align: center;
}

.section-heading-centered h2 {
	position: relative;
	margin: 0;
	color: #171a1d;
	font-size: 2rem;
	font-weight: 900;
	line-height: 1.05;
}

.section-heading-centered h2::after {
	display: block;
	width: 34px;
	height: 3px;
	margin: 12px auto 0;
	background: var(--ebr-accent);
	content: "";
}

.section-heading-centered .section-copy {
	margin: 0;
	color: #596068;
	font-size: 0.92rem;
}

.selling-options-section {
	background: linear-gradient(180deg, #f4f4f3 0%, #fff 100%);
}

.selling-options-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
	align-items: center;
	gap: 16px;
	max-width: 1020px;
	margin: 0 auto;
}

.selling-option-card,
.testimonial-card {
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.13);
}

.selling-option-media {
	position: relative;
	height: 170px;
	overflow: hidden;
}

.selling-option-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.option-number,
.option-or {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	background: linear-gradient(180deg, #caa350, #b48631);
	color: #fff;
	font-weight: 900;
	box-shadow: 0 8px 18px rgba(143, 103, 35, 0.28);
}

.option-number {
	position: absolute;
	top: 20px;
	left: 24px;
	font-size: 1.35rem;
}

.option-or {
	justify-self: center;
	font-size: 1rem;
}

.selling-option-body {
	display: grid;
	gap: 8px;
	padding: 18px 34px 26px;
	text-align: center;
}

.selling-option-body h3 {
	margin: 0;
	color: #222528;
	font-size: 1.75rem;
	font-weight: 900;
}

.selling-option-body p {
	margin: 0;
	color: #34383d;
	font-size: 0.94rem;
	line-height: 1.35;
}

.option-kicker {
	color: var(--ebr-accent) !important;
	font-size: 1.12rem !important;
	font-weight: 900;
}

.check-list {
	display: grid;
	gap: 4px;
	margin: 8px auto 4px;
	padding: 0;
	color: #222528;
	font-size: 0.9rem;
	list-style: none;
	text-align: left;
}

.check-list li {
	position: relative;
	padding-left: 24px;
}

.check-list li::before {
	position: absolute;
	top: 0.12em;
	left: 0;
	width: 12px;
	height: 7px;
	border-bottom: 3px solid var(--ebr-accent);
	border-left: 3px solid var(--ebr-accent);
	content: "";
	transform: rotate(-45deg);
}

.option-best {
	text-align: left;
}

.selling-options-section .section-actions,
.section-testimonials .section-actions {
	display: flex;
	justify-content: center;
	margin-top: 16px;
}

.process-section {
	background: #fff;
	padding-top: 18px;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 54px;
	max-width: 980px;
	margin: 0 auto;
}

.process-step {
	position: relative;
	display: grid;
	justify-items: center;
	gap: 10px;
	text-align: center;
}

.process-step:not(:last-child)::after {
	position: absolute;
	top: 36px;
	right: -36px;
	color: #1b1d20;
	content: ">";
	font-size: 1.7rem;
	font-weight: 700;
}

.process-icon {
	display: grid;
	place-items: center;
	width: 74px;
	height: 74px;
	padding: 18px;
	border: 3px solid #2b2f33;
	border-radius: 999px;
	background: #191d20;
	color: var(--ebr-accent);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.process-step h3 {
	color: #151719;
	font-size: 0.86rem;
	font-weight: 900;
}

.process-step p {
	color: #2f3438;
	font-size: 0.88rem;
	line-height: 1.25;
}

.section-testimonials {
	background: #f1f2f3;
}

.testimonial-showcase {
	display: grid;
	grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.video-testimonial-card {
	position: relative;
	min-height: 240px;
	overflow: hidden;
	border-radius: 4px;
	background-image:
		linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.18)),
		var(--video-bg);
	background-position: center;
	background-size: cover;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.13);
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	place-items: center;
	width: 70px;
	height: 70px;
	border: 4px solid #fff;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.22);
	transform: translate(-50%, -50%);
}

.play-button::before {
	width: 0;
	height: 0;
	margin-left: 6px;
	border-top: 14px solid transparent;
	border-bottom: 14px solid transparent;
	border-left: 21px solid #fff;
	content: "";
}

.testimonial-card {
	display: grid;
	align-content: start;
	gap: 12px;
	min-height: 240px;
	padding: 24px 24px 20px;
}

.star-rating {
	margin: 0;
	color: var(--ebr-accent) !important;
	font-size: 1rem;
	letter-spacing: 0.08em;
}

.testimonial-quote {
	margin: 0;
	color: #30343a;
	font-size: 0.86rem;
	line-height: 1.45;
}

.quote-attribution {
	margin: 0;
	color: #151719 !important;
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: none;
}

.review-source {
	align-self: end;
	margin: 8px 0 0;
	color: #3679dc !important;
	font-size: 1rem !important;
	font-weight: 900;
	text-align: center;
	text-transform: none;
}

.situations-section {
	background: #fff;
}

.situations-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 28px;
	max-width: 1040px;
	margin: 0 auto;
}

.situation-item {
	display: grid;
	justify-items: center;
	gap: 12px;
	text-align: center;
}

.situation-icon {
	width: 58px;
	height: 58px;
	padding: 7px;
}

.situation-item h3 {
	max-width: 130px;
	color: #16191c;
	font-size: 0.95rem;
	font-weight: 900;
	line-height: 1.2;
}

.situations-copy {
	margin: 22px 0 0;
	color: #33383d;
	font-size: 1rem;
	text-align: center;
}

.footer-cta-band {
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	border: 0;
	background-image:
		linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.78)),
		var(--footer-hero-image);
	background-position: center;
	background-size: cover;
	border-radius: 0;
	box-shadow: none;
	color: #fff;
}

.footer-value-cta {
	display: grid;
	grid-template-columns: 1fr 260px;
	align-items: center;
	min-height: 180px;
	gap: 34px;
}

.footer-cta-copy {
	display: grid;
	justify-items: center;
	gap: 8px;
	text-align: center;
}

.footer-cta-copy h2,
.footer-cta-copy p {
	margin: 0;
	color: #fff;
}

.footer-cta-copy h2 {
	font-size: 2.2rem;
	font-weight: 900;
}

.footer-cta-copy p {
	max-width: 520px;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.25;
}

.report-preview {
	position: relative;
	height: 145px;
}

.report-page {
	position: absolute;
	top: 18px;
	width: 118px;
	height: 138px;
	border: 4px solid rgba(255, 255, 255, 0.78);
	border-radius: 4px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.report-page-back {
	left: 12px;
	background:
		linear-gradient(#1b1e22 0 18%, transparent 18%),
		linear-gradient(90deg, #cfac61 0 38%, #e6e0d1 38% 100%);
	transform: rotate(-2deg);
}

.report-page-front {
	right: 18px;
	display: grid;
	align-content: end;
	gap: 2px;
	padding: 14px;
	background-image:
		linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.75)),
		url("../images/home-option-direct-optimized.jpg");
	background-position: center;
	background-size: cover;
	color: #fff;
	text-transform: uppercase;
}

.report-kicker {
	color: #e6c477;
	font-size: 0.58rem;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.report-page-front strong {
	font-size: 0.95rem;
	line-height: 1.05;
}

.site-footer {
	padding: 0;
	background: #070808;
	border-top: 0;
	color: #fff;
}

.footer-shell {
	padding: 24px 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1.15fr;
	gap: 38px;
	padding: 0 0 24px;
}

.footer-brand-column,
.footer-links-column,
.footer-contact-column,
.footer-home-value-column {
	display: grid;
	align-content: start;
	gap: 8px;
}

.footer-heading {
	margin: 0;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: none;
}

.footer-copy,
.footer-legal,
.footer-copyright {
	margin: 0;
	color: #f0f0ed;
	font-size: 0.82rem;
	letter-spacing: 0;
	text-transform: none;
}

.footer-menu,
.footer-bottom-nav .menu-fallback {
	display: grid;
	gap: 2px;
}

.footer-menu a,
.footer-bottom-nav .menu-fallback a,
.footer-shell a {
	color: #fff;
	font-size: 0.8rem;
	text-decoration: none;
}

.footer-shell a:hover,
.footer-shell a:focus-visible {
	color: #e7c16f;
}

.social-link-list {
	gap: 10px;
	margin-top: 6px;
}

.social-circle-link {
	width: 26px;
	height: 26px;
	background: transparent;
	color: #fff;
}

.social-circle-icon {
	width: 18px;
	height: 18px;
}

.footer-home-value-column .button {
	margin-top: 8px;
}

.footer-bottom-row {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta-link {
	border-radius: 4px;
	font-size: 0.82rem;
	text-transform: uppercase;
}

@media (min-width: 1024px) {
	h1 {
		font-size: 3.35rem;
	}

	h2 {
		font-size: 2rem;
	}
}

@media (max-width: 1120px) {
	.header-inner {
		grid-template-columns: 210px 1fr;
	}

	.header-actions {
		grid-column: 1 / -1;
		justify-content: center;
	}

	.primary-nav .menu-list,
	.primary-nav .menu-fallback {
		gap: 18px;
	}

	.hero-agent-panel {
		right: 20px;
		width: 330px;
	}

	.testimonial-showcase {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 860px) {
	.top-contact-inner {
		justify-content: center;
		text-align: center;
	}

	.header-inner {
		grid-template-columns: 1fr;
		justify-items: center;
		min-height: auto;
		padding: 18px 0;
	}

	.header-brand-column,
	.header-actions {
		justify-self: center;
	}

	.primary-nav .menu-list,
	.primary-nav .menu-fallback {
		justify-content: center;
	}

	.hero-layout {
		grid-template-columns: 1fr;
		min-height: 560px;
	}

	.hero-copy-block {
		padding-top: 42px;
		padding-bottom: 220px;
	}

	.hero-copy-block h1 {
		font-size: 2.75rem;
	}

	.hero-copy-block h1 span {
		font-size: 1.42rem;
	}

	.hero-actions .button {
		min-width: 0;
		flex: 1 1 220px;
	}

	.hero-agent-panel {
		right: 50%;
		bottom: -32px;
		width: 270px;
		max-width: 72%;
		transform: translateX(50%);
	}

	.proof-grid,
	.situations-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.selling-options-grid {
		grid-template-columns: 1fr;
	}

	.option-or {
		margin: -2px auto;
	}

	.process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px;
	}

	.process-step::after {
		display: none;
	}

	.footer-value-cta,
	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.report-preview {
		display: none;
	}

	.footer-wordmark,
	.social-link-list {
		justify-content: center;
	}

	.footer-bottom-row {
		display: grid;
		justify-items: center;
		text-align: center;
	}
}

@media (max-width: 560px) {
	.container {
		width: min(100% - 22px, 1180px);
	}

	.top-contact-phone {
		display: none;
	}

	.header-brand-name,
	.footer-brand-name {
		font-size: 1.1rem;
	}

	.header-mark,
	.footer-mark {
		width: 52px;
	}

	.primary-nav .menu-list,
	.primary-nav .menu-fallback {
		gap: 12px;
	}

	.site-header .menu-list a,
	.site-header .menu-fallback a {
		font-size: 0.72rem;
	}

	.header-cta.button-primary {
		max-width: none;
		width: 100%;
	}

	.hero-home,
	.hero-layout {
		min-height: 600px;
	}

	.hero-copy-block h1 {
		font-size: 2.25rem;
	}

	.hero-copy-block h1 span {
		font-size: 1.2rem;
	}

	.hero-copy {
		font-size: 0.95rem;
	}

	.hero-actions {
		display: grid;
	}

	.proof-grid,
	.process-grid,
	.situations-grid,
	.testimonial-showcase {
		grid-template-columns: 1fr;
	}

	.selling-option-body {
		padding: 18px 22px 24px;
	}

	.selling-option-body h3 {
		font-size: 1.45rem;
	}

	.section-heading-centered h2,
	.footer-cta-copy h2 {
		font-size: 1.65rem;
	}
}

/* Reference alignment pass for the seller-focused homepage mockup. */
:root {
	--ebr-container: min(1280px, calc(100vw - 80px));
}

.top-contact-inner {
	min-height: 28px;
	padding: 4px 0;
}

.top-contact-copy {
	font-size: 0.76rem;
	font-weight: 800;
}

.site-header {
	position: relative;
}

.header-inner {
	grid-template-columns: 235px minmax(0, 1fr) 230px;
	gap: 22px;
	min-height: 78px;
	padding: 8px 0;
}

.header-mark,
.footer-mark {
	width: 78px;
	height: 38px;
}

.header-mark::before,
.footer-mark::before {
	top: 17px;
	left: 7px;
	width: 39px;
	transform: rotate(-31deg);
}

.header-mark::after,
.footer-mark::after {
	top: 17px;
	left: 35px;
	width: 39px;
	transform: rotate(31deg);
}

.header-brand-name {
	font-size: 1.2rem;
}

.header-brand-subtitle {
	font-size: 0.62rem;
}

.primary-nav .menu-list,
.primary-nav .menu-fallback {
	gap: 26px;
}

.site-header .menu-list a,
.site-header .menu-fallback a {
	font-size: 0.74rem;
}

.header-cta.button-primary {
	max-width: 188px;
	min-height: 56px;
	padding: 12px 18px;
	line-height: 1.15;
}

.hero-home,
.hero-layout {
	min-height: clamp(320px, 31vw, 430px);
}

.hero-home {
	background-image:
		linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 35%, rgba(0, 0, 0, 0.32) 66%, rgba(0, 0, 0, 0.72) 100%),
		var(--hero-image);
	background-position: center 45%;
}

.hero-layout {
	grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
	align-items: stretch;
}

.hero-copy-block {
	align-content: center;
	gap: 16px;
	padding: 30px 0;
}

.hero-copy-block h1 {
	max-width: 520px;
	font-size: clamp(2.7rem, 4.2vw, 3.45rem);
	line-height: 1;
}

.hero-copy-block h1 span {
	max-width: 430px;
	margin-top: 6px;
	font-size: clamp(1.32rem, 2.15vw, 1.8rem);
	line-height: 1.12;
}

.hero-copy {
	max-width: 430px;
	font-size: 1rem;
	line-height: 1.42;
}

.hero-actions {
	flex-wrap: nowrap;
	gap: 14px;
}

.hero-actions .button {
	min-width: 0;
	min-height: 46px;
	padding: 0.82rem 1rem;
}

.hero-actions .button-primary {
	min-width: 255px;
}

.hero-actions .button-outline {
	min-width: 150px;
}

.hero-agent-panel {
	right: max(56px, calc((100vw - var(--ebr-container)) / 2 + 125px));
	top: 0;
	bottom: 0;
	width: clamp(330px, 31vw, 470px);
	max-width: 44%;
}

.hero-agent-photo {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
	filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.56));
	mix-blend-mode: normal;
	-webkit-mask-image: none;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	mask-image: none;
	mask-repeat: no-repeat;
	mask-size: 100% 100%;
}

.proof-grid {
	gap: 16px;
	padding: 20px 0 22px;
}

.proof-icon-star {
	font-size: 2.55rem;
}

.proof-google-mark {
	display: grid;
	justify-items: center;
	gap: 2px;
	min-height: 44px;
	color: var(--ebr-accent);
}

.proof-google-letter {
	background: conic-gradient(from -35deg, #4285f4 0 24%, #34a853 0 42%, #fbbc05 0 62%, #ea4335 0 80%, #4285f4 0);
	background-clip: text;
	color: transparent;
	font-size: 1.7rem;
	font-weight: 900;
	line-height: 1;
	-webkit-background-clip: text;
}

.proof-google-stars {
	color: var(--ebr-accent);
	font-size: 0.9rem;
	letter-spacing: 0.08em;
	line-height: 1;
}

.proof-logo {
	width: 112px;
	height: 44px;
}

.proof-item h3 {
	font-size: 0.78rem;
}

.proof-item p {
	font-size: 0.82rem;
}

.section {
	padding: 24px 0;
}

.section-heading-centered {
	margin-bottom: 16px;
}

.section-heading-centered h2 {
	font-size: clamp(1.72rem, 2.45vw, 2.08rem);
}

.selling-options-grid {
	max-width: 1100px;
	gap: 14px;
}

.selling-option-media {
	height: clamp(124px, 13vw, 166px);
}

.selling-option-body {
	gap: 6px;
	padding: 16px 30px 22px;
}

.selling-option-body h3 {
	font-size: clamp(1.45rem, 2.15vw, 1.72rem);
}

.option-kicker {
	font-size: 1rem !important;
}

.selling-option-body p,
.check-list {
	font-size: 0.86rem;
}

.section-actions .button {
	min-width: 248px;
}

.process-section {
	padding-top: 16px;
	padding-bottom: 24px;
}

.process-grid {
	max-width: 1000px;
	gap: 50px;
}

.process-icon {
	width: 66px;
	height: 66px;
	padding: 16px;
}

.process-step:not(:last-child)::after {
	top: 29px;
	right: -35px;
}

.process-step p {
	font-size: 0.82rem;
}

.section-testimonials {
	padding-top: 22px;
	padding-bottom: 24px;
}

.testimonial-showcase {
	grid-template-columns: minmax(270px, 1.35fr) repeat(3, minmax(0, 1fr));
	max-width: 1120px;
	margin: 0 auto;
}

.video-testimonial-card {
	min-height: 190px;
	background-image: var(--video-bg);
	background-position: center;
}

.video-testimonial-card::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 68px;
	height: 68px;
	border: 4px solid #fff;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.2);
	content: "";
	transform: translate(-50%, -50%);
}

.video-testimonial-card::before {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	margin-left: 5px;
	border-top: 14px solid transparent;
	border-bottom: 14px solid transparent;
	border-left: 21px solid #fff;
	content: "";
	transform: translate(-42%, -50%);
}

.testimonial-card {
	min-height: 190px;
	padding: 20px 22px 18px;
}

.testimonial-quote {
	font-size: 0.8rem;
}

.situations-section {
	padding-top: 24px;
	padding-bottom: 28px;
}

.situation-icon {
	width: 50px;
	height: 50px;
}

.situation-item h3 {
	font-size: 0.86rem;
}

.footer-value-cta {
	min-height: 158px;
}

.footer-cta-copy h2 {
	font-size: clamp(1.8rem, 3vw, 2.25rem);
}

.footer-shell {
	padding-top: 22px;
}

.footer-grid {
	gap: 34px;
}

.footer-wordmark {
	font-size: 1.4rem;
}

@media (min-width: 768px) {
	.mobile-cta-bar {
		display: none;
	}
}

@media (max-width: 1120px) and (min-width: 861px) {
	:root {
		--ebr-container: min(100vw - 110px, 1050px);
	}

	.header-inner {
		grid-template-columns: 170px minmax(0, 1fr) 164px;
		gap: 14px;
		min-height: 74px;
	}

	.header-actions {
		grid-column: auto;
		justify-content: flex-end;
	}

	.primary-nav .menu-list,
	.primary-nav .menu-fallback {
		gap: 16px;
	}

	.site-header .menu-list a,
	.site-header .menu-fallback a {
		font-size: 0.66rem;
	}

	.header-mark {
		width: 50px;
		height: 30px;
	}

	.header-mark::before {
		top: 14px;
		left: 4px;
		width: 29px;
	}

	.header-mark::after {
		top: 14px;
		left: 25px;
		width: 29px;
	}

	.header-brand-name {
		font-size: 0.96rem;
	}

	.header-brand-subtitle {
		font-size: 0.5rem;
	}

	.header-cta.button-primary {
		max-width: 162px;
		min-height: 50px;
		padding: 10px 12px;
		font-size: 0.68rem;
	}

	.hero-layout {
		grid-template-columns: minmax(0, 390px) minmax(0, 1fr);
	}

	.hero-copy-block {
		gap: 11px;
		padding: 22px 0;
	}

	.hero-copy-block h1 {
		font-size: 2.28rem;
	}

	.hero-copy-block h1 span {
		font-size: 1.1rem;
	}

	.hero-copy {
		max-width: 350px;
		font-size: 0.82rem;
		line-height: 1.34;
	}

	.hero-actions .button-primary {
		min-width: 230px;
	}

	.hero-actions .button-outline {
		min-width: 122px;
	}

	.hero-actions .button {
		min-height: 38px;
		padding: 0.62rem 0.9rem;
		font-size: 0.68rem;
	}

	.hero-agent-panel {
		right: max(22px, calc((100vw - var(--ebr-container)) / 2 + 36px));
		width: 330px;
		max-width: 43%;
	}

	.hero-microcopy {
		font-size: 0.72rem;
	}

	.proof-grid {
		gap: 10px;
		padding: 16px 0 18px;
	}

	.proof-item h3 {
		font-size: 0.68rem;
	}

	.proof-item p {
		font-size: 0.72rem;
	}

	.selling-options-grid {
		gap: 10px;
	}

	.section {
		padding: 14px 0;
	}

	.section-heading-centered {
		margin-bottom: 12px;
	}

	.section-heading-centered h2 {
		font-size: 1.68rem;
	}

	.section-heading-centered h2::after {
		margin-top: 8px;
	}

	.selling-option-media {
		height: 98px;
	}

	.selling-option-body {
		gap: 4px;
		padding: 8px 20px 10px;
	}

	.selling-option-body h3 {
		font-size: 1.34rem;
	}

	.option-kicker {
		font-size: 0.9rem !important;
	}

	.selling-option-body p,
	.check-list {
		font-size: 0.78rem;
		line-height: 1.26;
	}

	.check-list {
		gap: 2px;
		margin-top: 5px;
		margin-bottom: 2px;
	}

	.section-actions .button {
		min-width: 216px;
		min-height: 34px;
		padding: 0.55rem 1rem;
		font-size: 0.68rem;
	}

	.process-section {
		padding-top: 8px;
		padding-bottom: 10px;
	}

	.process-grid {
		gap: 34px;
	}

	.process-icon {
		width: 52px;
		height: 52px;
		padding: 13px;
	}

	.process-step {
		gap: 7px;
	}

	.process-step:not(:last-child)::after {
		top: 22px;
		right: -27px;
		font-size: 1.35rem;
	}

	.process-step h3 {
		font-size: 0.74rem;
	}

	.process-step p {
		font-size: 0.72rem;
		line-height: 1.22;
	}

	.testimonial-showcase {
		grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(0, 1fr));
		gap: 12px;
	}

	.section-testimonials {
		padding-top: 10px;
		padding-bottom: 8px;
	}

	.video-testimonial-card,
	.testimonial-card {
		min-height: 124px;
	}

	.testimonial-card {
		gap: 5px;
		padding: 10px;
	}

	.testimonial-quote {
		font-size: 0.62rem;
		line-height: 1.35;
	}

	.quote-attribution {
		font-size: 0.62rem;
	}

	.review-source {
		margin-top: 2px;
		font-size: 0.76rem !important;
	}

	.situations-section {
		padding-top: 10px;
		padding-bottom: 8px;
	}

	.situations-grid {
		gap: 12px;
	}

	.situation-icon {
		width: 36px;
		height: 36px;
	}

	.situation-item {
		gap: 6px;
	}

	.situation-item h3 {
		max-width: 110px;
		font-size: 0.68rem;
	}

	.situations-copy {
		margin-top: 10px;
		font-size: 0.78rem;
	}

	.footer-value-cta {
		grid-template-columns: minmax(0, 1fr) 230px;
		min-height: 88px;
		gap: 14px;
	}

	.footer-cta-copy {
		gap: 4px;
	}

	.footer-cta-copy h2 {
		font-size: 1.26rem;
	}

	.footer-cta-copy p {
		font-size: 0.66rem;
		line-height: 1.15;
	}

	.footer-cta-copy .button {
		min-height: 32px;
		padding: 0.5rem 1rem;
	}

	.report-preview {
		height: 82px;
	}

	.report-page {
		top: 4px;
		width: 70px;
		height: 82px;
	}

	.report-page-front {
		padding: 9px;
	}

	.report-kicker {
		font-size: 0.45rem;
	}

	.report-page-front strong {
		font-size: 0.72rem;
	}

	.footer-shell {
		padding-top: 9px;
	}

	.footer-grid {
		gap: 14px;
		padding-bottom: 6px;
	}

	.footer-heading {
		font-size: 0.78rem;
	}

	.footer-copy,
	.footer-menu a,
	.footer-bottom-nav .menu-fallback a,
	.footer-shell a {
		font-size: 0.66rem;
	}

	.footer-bottom-row {
		padding: 6px 0;
	}

	.footer-wordmark {
		font-size: 1.12rem;
	}

	.footer-mark {
		width: 58px;
	}

	.social-circle-link {
		width: 22px;
		height: 22px;
	}

	.social-circle-icon {
		width: 14px;
		height: 14px;
	}

	.footer-home-value-column .button {
		min-height: 32px;
		margin-top: 4px;
		padding: 0.48rem 0.75rem;
		font-size: 0.6rem;
	}
}

@media (max-width: 860px) {
	:root {
		--ebr-container: min(100% - 28px, 760px);
	}

	.site-header {
		position: relative;
	}

	.hero-home,
	.hero-layout {
		min-height: 560px;
	}

	.hero-copy-block {
		padding: 34px 0 210px;
	}

	.hero-actions {
		flex-wrap: wrap;
	}

	.hero-agent-panel {
		right: 50%;
		top: auto;
		bottom: 0;
		width: 270px;
		height: 315px;
		max-width: 74%;
		transform: translateX(50%);
	}

	.hero-agent-photo {
		height: 100%;
		object-fit: contain;
		object-position: center bottom;
	}

	.testimonial-showcase {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	:root {
		--ebr-container: min(100% - 22px, 1180px);
	}

	.header-inner {
		padding: 14px 0;
	}

	.hero-copy-block h1 {
		font-size: 2.12rem;
	}

	.hero-copy-block h1 span {
		font-size: 1.08rem;
	}

	.hero-actions .button,
	.hero-actions .button-primary,
	.hero-actions .button-outline,
	.section-actions .button {
		width: 100%;
		min-width: 0;
	}

	.testimonial-showcase {
		grid-template-columns: 1fr;
	}

	.footer-value-cta {
		min-height: 210px;
	}
}

@media (max-width: 560px) {
	.hero-home,
	.hero-layout {
		min-height: 720px;
	}

	.hero-copy-block {
		align-content: start;
		padding-top: 30px;
		padding-bottom: 360px;
	}

	.hero-agent-panel {
		bottom: 100px;
		height: 285px;
	}
}

/* Keep the footer value CTA centered like the reference, with the report as a right-side accent. */
.footer-value-cta {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 150px;
}

.footer-cta-copy {
	position: relative;
	z-index: 2;
	width: min(100%, 680px);
	margin: 0 auto;
}

.footer-cta-copy h2 {
	white-space: nowrap;
}

.report-preview {
	position: absolute;
	top: 50%;
	right: max(34px, calc((100vw - var(--ebr-container)) / 2 + 38px));
	z-index: 1;
	width: 210px;
	transform: translateY(-50%);
}

@media (max-width: 1120px) and (min-width: 861px) {
	.footer-value-cta {
		display: flex;
		min-height: 112px;
	}

	.footer-cta-copy {
		width: min(100%, 540px);
	}

	.footer-cta-copy h2 {
		font-size: 1.46rem;
		line-height: 1.05;
	}

	.footer-cta-copy p {
		max-width: 430px;
		font-size: 0.72rem;
		line-height: 1.15;
	}

	.report-preview {
		right: 0;
		width: 152px;
	}
}

@media (max-width: 860px) {
	.footer-value-cta {
		display: flex;
	}

	.report-preview {
		display: none;
	}
}

/* Final homepage reference pass. Keep this at the end so the mockup lockup wins over legacy rules. */
body.home {
	background: #f5f5f5;
	color: #2b2b2b;
}

.top-contact-bar {
	background: #070b10;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.top-contact-inner {
	min-height: 28px;
	padding: 4px 0;
}

.top-contact-copy {
	color: #fff;
	font-size: 0.74rem;
	font-weight: 800;
}

.top-contact-phone a {
	color: #d7ad52;
}

.site-header {
	position: relative;
	background: #050608;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
	grid-template-columns: 220px minmax(0, 1fr) 190px;
	min-height: 76px;
	gap: 26px;
}

.header-brand {
	max-width: 205px;
}

.header-wordmark {
	gap: 10px;
}

.header-brand-name {
	font-size: 1.16rem;
	line-height: 0.86;
}

.header-brand-subtitle {
	font-size: 0.56rem;
}

.site-header .menu-list,
.site-header .menu-fallback {
	justify-content: center;
	gap: 26px;
}

.site-header .menu-list a,
.site-header .menu-fallback a {
	color: #fff;
	font-size: 0.72rem;
	font-weight: 900;
}

.button-primary,
.header-cta.button-primary,
.footer-home-value-column .button-primary {
	background: linear-gradient(180deg, #d5ad52 0%, #c89b3c 100%);
	border-color: #c89b3c;
	color: #fff;
	box-shadow: none;
}

.header-cta.button-primary {
	max-width: 188px;
	min-height: 56px;
	padding: 11px 16px;
	border-radius: 4px;
	font-size: 0.74rem;
	line-height: 1.15;
	text-align: center;
}

.hero-home,
.hero-layout {
	min-height: clamp(338px, 30vw, 486px);
}

.hero-home {
	background-image:
		linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.74) 35%, rgba(0, 0, 0, 0.26) 66%, rgba(0, 0, 0, 0.7) 100%),
		var(--hero-image);
	background-position: center 48%;
	background-size: cover;
}

.hero-layout {
	grid-template-columns: minmax(0, 510px) minmax(0, 1fr);
	align-items: stretch;
}

.hero-copy-block {
	z-index: 2;
	max-width: 510px;
	gap: 14px;
	padding: clamp(30px, 4vw, 56px) 0 30px;
}

.hero-copy-block h1 {
	max-width: 500px;
	color: #fff;
	font-size: clamp(2.32rem, 4.25vw, 4.1rem);
	font-weight: 900;
	line-height: 0.98;
}

.hero-copy-block h1 span {
	display: block;
	margin-top: 6px;
	color: #c89b3c;
	font-size: clamp(1.35rem, 2.5vw, 2.35rem);
	line-height: 1.04;
}

.hero-copy {
	max-width: 430px;
	color: #fff;
	font-size: clamp(0.88rem, 1.15vw, 1.08rem);
	font-weight: 700;
	line-height: 1.35;
}

.hero-actions {
	gap: 16px;
}

.hero-actions .button {
	min-height: 48px;
	border-radius: 4px;
	font-size: 0.78rem;
	font-weight: 900;
}

.hero-actions .button-primary {
	min-width: 260px;
}

.hero-actions .button-outline {
	min-width: 160px;
	border-color: rgba(255, 255, 255, 0.8);
	color: #fff;
}

.hero-microcopy {
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
}

.hero-agent-panel {
	right: max(52px, calc((100vw - var(--ebr-container)) / 2 + 122px));
	top: 0;
	bottom: 0;
	width: clamp(320px, 31vw, 485px);
	height: auto;
}

.hero-agent-photo {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
}

.proof-strip {
	background: #fff;
	border-bottom: 1px solid #ececec;
	box-shadow: none;
}

.proof-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	align-items: center;
	min-height: 144px;
	padding: 18px 0;
	gap: 28px;
}

.proof-item {
	gap: 7px;
	min-width: 0;
	text-align: center;
}

.proof-item h3 {
	color: #070b10;
	font-size: 0.8rem;
	font-weight: 900;
	text-transform: uppercase;
}

.proof-item p {
	color: #2b2b2b;
	font-size: 0.78rem;
	line-height: 1.25;
}

.proof-icon,
.proof-google-letter {
	color: #c89b3c;
}

.proof-icon {
	width: 42px;
	height: 42px;
	margin: 0 auto;
}

.selling-options-section {
	padding: 18px 0 14px;
	background: linear-gradient(180deg, #f5f5f5 0%, #fff 100%);
}

.section-heading-centered {
	margin-bottom: 18px;
}

.section-heading-centered h2 {
	color: #11151a;
	font-size: clamp(1.6rem, 3vw, 2.35rem);
	line-height: 1.08;
}

.selling-options-grid {
	grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
	align-items: center;
	max-width: 1100px;
	gap: 14px;
}

.selling-option-card {
	border: 1px solid #d7d7d7;
	border-radius: 3px;
	background: #fff;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
	overflow: hidden;
}

.selling-option-media {
	height: 148px;
}

.selling-option-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.selling-option-body {
	padding: 14px 30px 22px;
	text-align: center;
}

.selling-option-body h3 {
	color: #11151a;
	font-size: 1.55rem;
	font-weight: 900;
}

.option-kicker {
	color: #c89b3c;
	font-size: 1.02rem;
	font-weight: 900;
}

.selling-option-body p,
.check-list,
.option-best {
	font-size: 0.88rem;
	line-height: 1.25;
}

.check-list {
	width: fit-content;
	margin: 14px auto 10px;
	text-align: left;
}

.option-number,
.option-or {
	background: #c89b3c;
	color: #fff;
	box-shadow: none;
}

.section-actions .button-primary {
	min-width: 250px;
	border-radius: 4px;
}

.process-section {
	padding: 18px 0 26px;
	background: #fff;
}

.process-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	max-width: 980px;
	gap: 52px;
}

.process-icon {
	width: 66px;
	height: 66px;
	background: #1b2024;
	border: 6px solid #2c3338;
	color: #c89b3c;
}

.process-step:not(:last-child)::after {
	top: 29px;
	right: -37px;
	color: #11151a;
}

.process-step h3 {
	color: #11151a;
	font-size: 0.82rem;
	font-weight: 900;
}

.process-step p {
	color: #2b2b2b;
	font-size: 0.82rem;
	line-height: 1.26;
}

.section-testimonials {
	padding: 22px 0 28px;
	background: #f0f1f2;
}

.testimonial-showcase {
	grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.video-testimonial-card {
	min-height: 170px;
	border-radius: 4px;
}

.testimonial-card {
	border-radius: 4px;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.09);
}

.situations-section {
	padding: 24px 0 28px;
	background: #fff;
}

.situations-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	max-width: 1120px;
	gap: 34px;
}

.situation-icon {
	color: #c89b3c;
}

.situation-item h3 {
	color: #070b10;
	font-size: 0.9rem;
	font-weight: 900;
	line-height: 1.15;
}

.situations-copy {
	margin-top: 22px;
	color: #2b2b2b;
}

.footer-cta-band {
	background-image:
		linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.7)),
		var(--footer-hero-image);
	background-position: center 58%;
	background-size: cover;
}

.footer-value-cta {
	display: grid;
	grid-template-columns: minmax(0, 650px) 250px;
	align-items: center;
	justify-content: center;
	gap: 38px;
	min-height: 154px;
}

.footer-cta-copy {
	width: auto;
	max-width: 650px;
	margin: 0;
	text-align: center;
}

.footer-cta-copy h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(1.9rem, 3vw, 2.4rem);
	line-height: 1.04;
	white-space: nowrap;
}

.footer-cta-copy p {
	max-width: 560px;
	margin: 0 auto;
	color: #fff;
	font-size: 0.92rem;
	font-weight: 900;
	line-height: 1.2;
}

.footer-cta-copy .button {
	min-width: 180px;
	min-height: 44px;
	margin-top: 8px;
	border-radius: 4px;
}

.report-preview {
	position: relative;
	top: auto;
	right: auto;
	width: 250px;
	height: 128px;
	transform: none;
}

.report-page {
	top: 8px;
	width: 104px;
	height: 122px;
	border-width: 4px;
}

.report-page-back {
	left: 8px;
}

.report-page-front {
	right: 14px;
}

.footer-shell {
	padding-top: 22px;
}

.footer-grid {
	grid-template-columns: 1.1fr 0.8fr 1fr 1.1fr;
	gap: 38px;
}

@media (max-width: 1120px) and (min-width: 861px) {
	.header-inner {
		grid-template-columns: 178px minmax(0, 1fr) 164px;
		gap: 14px;
		min-height: 74px;
	}

	.site-header .menu-list,
	.site-header .menu-fallback {
		gap: 16px;
	}

	.site-header .menu-list a,
	.site-header .menu-fallback a {
		font-size: 0.66rem;
	}

	.header-cta.button-primary {
		max-width: 164px;
		min-height: 50px;
		font-size: 0.68rem;
	}

	.hero-home,
	.hero-layout {
		min-height: 320px;
	}

	.hero-layout {
		grid-template-columns: minmax(0, 390px) minmax(0, 1fr);
	}

	.hero-copy-block {
		gap: 10px;
		padding: 22px 0;
	}

	.hero-copy-block h1 {
		font-size: 2.24rem;
	}

	.hero-copy-block h1 span {
		font-size: 1.1rem;
	}

	.hero-copy {
		max-width: 350px;
		font-size: 0.8rem;
	}

	.hero-actions .button {
		min-height: 38px;
		padding: 0.62rem 0.9rem;
		font-size: 0.68rem;
	}

	.hero-actions .button-primary {
		min-width: 230px;
	}

	.hero-actions .button-outline {
		min-width: 122px;
	}

	.hero-agent-panel {
		right: max(22px, calc((100vw - var(--ebr-container)) / 2 + 36px));
		width: 330px;
		max-width: 43%;
	}

	.proof-grid {
		min-height: 144px;
		gap: 18px;
	}

	.selling-option-media {
		height: 126px;
	}

	.selling-option-body {
		padding: 12px 28px 18px;
	}

	.selling-option-body h3 {
		font-size: 1.34rem;
	}

	.process-grid {
		gap: 42px;
	}

	.process-step:not(:last-child)::after {
		right: -31px;
	}

	.testimonial-showcase {
		grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
		gap: 14px;
	}

	.footer-value-cta {
		grid-template-columns: minmax(0, 558px) 150px;
		gap: 22px;
		min-height: 112px;
	}

	.footer-cta-copy {
		max-width: 558px;
	}

	.footer-cta-copy h2 {
		font-size: 1.44rem;
	}

	.footer-cta-copy p {
		max-width: 440px;
		font-size: 0.7rem;
	}

	.footer-cta-copy .button {
		min-width: 126px;
		min-height: 34px;
		margin-top: 5px;
		padding: 0.52rem 0.9rem;
		font-size: 0.68rem;
	}

	.report-preview {
		width: 150px;
		height: 88px;
	}

	.report-page {
		top: 4px;
		width: 70px;
		height: 82px;
	}

	.report-page-front {
		right: 0;
		padding: 8px;
	}

	.report-page-back {
		left: 0;
	}

	.report-kicker {
		font-size: 0.42rem;
	}

	.report-page-front strong {
		font-size: 0.68rem;
	}
}

@media (max-width: 860px) {
	:root {
		--ebr-container: min(100% - 28px, 760px);
	}

	.top-contact-inner {
		justify-content: center;
		text-align: center;
	}

	.top-contact-phone {
		display: none;
	}

	.header-inner {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 12px;
		padding: 16px 0;
	}

	.primary-nav {
		width: 100%;
		overflow-x: auto;
	}

	.site-header .menu-list,
	.site-header .menu-fallback {
		justify-content: flex-start;
		gap: 18px;
		width: max-content;
		margin: 0 auto;
	}

	.header-actions {
		width: 100%;
		justify-content: center;
	}

	.header-cta.button-primary {
		width: min(100%, 320px);
		max-width: 320px;
	}

	.hero-home,
	.hero-layout {
		min-height: 720px;
	}

	.hero-layout {
		display: block;
	}

	.hero-copy-block {
		max-width: none;
		padding: 30px 0 350px;
	}

	.hero-copy-block h1 {
		font-size: 2.18rem;
	}

	.hero-copy-block h1 span {
		font-size: 1.16rem;
	}

	.hero-actions,
	.hero-actions .button {
		width: 100%;
	}

	.hero-agent-panel {
		right: 50%;
		bottom: 72px;
		top: auto;
		width: min(82vw, 350px);
		height: 310px;
		max-width: none;
		transform: translateX(50%);
	}

	.proof-grid,
	.situations-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.proof-grid {
		min-height: 0;
		padding: 22px 0;
	}

	.selling-options-grid {
		grid-template-columns: 1fr;
	}

	.option-or {
		justify-self: center;
	}

	.selling-option-media {
		height: 170px;
	}

	.process-grid,
	.testimonial-showcase {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.process-step:not(:last-child)::after {
		content: "";
		display: none;
	}

	.footer-value-cta {
		grid-template-columns: 1fr;
		min-height: auto;
		padding: 30px 0;
	}

	.footer-cta-copy {
		max-width: 620px;
		margin: 0 auto;
	}

	.footer-cta-copy h2 {
		font-size: 1.8rem;
		white-space: normal;
	}

	.report-preview {
		display: none;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

@media (max-width: 560px) {
	.hero-copy-block h1 {
		font-size: 2.04rem;
	}

	.proof-grid,
	.situations-grid {
		grid-template-columns: 1fr;
	}

	.selling-option-body {
		padding: 16px 18px 22px;
	}

	.footer-cta-copy h2 {
		font-size: 1.55rem;
	}
}

/* Desktop density correction against the supplied reference image. */
@media (min-width: 861px) {
	body.home .proof-grid {
		min-height: 136px;
		padding: 10px 0;
	}

	body.home .proof-item {
		gap: 5px;
	}

	body.home .proof-icon {
		width: 34px;
		height: 34px;
	}

	body.home .proof-icon-star {
		font-size: 2.15rem;
		line-height: 1;
	}

	body.home .proof-google-mark {
		gap: 0;
		min-height: 34px;
	}

	body.home .proof-google-letter {
		font-size: 1.42rem;
		line-height: 1;
	}

	body.home .proof-google-stars {
		font-size: 0.72rem;
	}

	body.home .proof-logo {
		width: 104px;
		height: 36px;
	}

	body.home .proof-item h3 {
		font-size: 0.72rem;
	}

	body.home .proof-item p {
		max-width: 140px;
		font-size: 0.72rem;
		line-height: 1.18;
	}

	body.home .selling-options-section {
		padding: 12px 0 10px;
	}

	body.home .section-heading-centered {
		margin-bottom: 12px;
	}

	body.home .section-heading-centered h2 {
		font-size: clamp(1.55rem, 2.7vw, 2rem);
	}

	body.home .selling-options-grid {
		max-width: 1080px;
	}

	body.home .selling-option-media {
		height: 112px;
	}

	body.home .selling-option-body {
		padding: 9px 22px 12px;
	}

	body.home .selling-option-body h3 {
		margin: 0 0 2px;
		font-size: 1.28rem;
		line-height: 1.05;
	}

	body.home .option-kicker {
		margin: 0 0 5px;
		font-size: 0.88rem;
		line-height: 1.1;
	}

	body.home .selling-option-body p,
	body.home .check-list,
	body.home .option-best {
		font-size: 0.74rem;
		line-height: 1.2;
	}

	body.home .selling-option-body > p {
		margin: 0;
	}

	body.home .check-list {
		margin: 8px auto 6px;
	}

	body.home .check-list li {
		margin: 1px 0;
	}

	body.home .option-best {
		margin: 6px 0 0;
	}

	body.home .selling-options-section .section-actions {
		margin-top: 14px;
	}

	body.home .section-actions .button-primary {
		min-height: 36px;
		padding: 0.6rem 1.3rem;
		font-size: 0.72rem;
	}

	body.home .process-section {
		padding: 12px 0 16px;
	}

	body.home .process-grid {
		max-width: 960px;
		gap: 40px;
	}

	body.home .process-step {
		gap: 7px;
	}

	body.home .process-icon {
		width: 56px;
		height: 56px;
		padding: 13px;
		border-width: 5px;
	}

	body.home .process-step:not(:last-child)::after {
		top: 24px;
		right: -30px;
	}

	body.home .process-step h3 {
		font-size: 0.7rem;
		line-height: 1.12;
	}

	body.home .process-step p {
		font-size: 0.72rem;
		line-height: 1.18;
	}

	body.home .section-testimonials {
		padding: 14px 0 16px;
	}

	body.home .section-testimonials .section-heading-centered {
		margin-bottom: 12px;
	}

	body.home .section-copy {
		margin-top: 5px;
		font-size: 0.84rem;
	}

	body.home .testimonial-showcase {
		gap: 16px;
	}

	body.home .situations-section {
		padding: 16px 0 18px;
	}

	body.home .situations-grid {
		gap: 28px;
	}

	body.home .situation-icon {
		width: 34px;
		height: 34px;
	}

	body.home .situation-item {
		gap: 8px;
	}

	body.home .situation-item h3 {
		font-size: 0.78rem;
		line-height: 1.12;
	}

	body.home .situations-copy {
		margin-top: 14px;
		font-size: 0.86rem;
	}

	body.home .footer-shell {
		padding-top: 14px;
	}

	body.home .footer-grid {
		gap: 28px;
		padding-bottom: 12px;
	}

	body.home .footer-heading {
		margin-bottom: 5px;
		font-size: 0.72rem;
	}

	body.home .footer-copy,
	body.home .footer-menu a,
	body.home .footer-shell a {
		font-size: 0.68rem;
		line-height: 1.2;
	}

	body.home .footer-menu {
		gap: 2px;
	}

	body.home .footer-wordmark {
		font-size: 1.08rem;
	}

	body.home .footer-mark {
		width: 58px;
		height: 30px;
	}

	body.home .footer-brand-name {
		font-size: 1.08rem;
	}

	body.home .footer-brand-subtitle {
		font-size: 0.58rem;
	}

	body.home .social-link-list {
		margin-top: 6px;
	}

	body.home .footer-home-value-column .button {
		min-height: 32px;
		padding: 0.52rem 0.9rem;
		font-size: 0.62rem;
	}

	body.home .footer-bottom-row {
		padding: 8px 0 0;
	}

	body.home .footer-copyright,
	body.home .footer-legal {
		font-size: 0.68rem;
	}
}

/* Lower-page compression so the footer lands like the reference screenshot. */
@media (min-width: 861px) {
	body.home .section-testimonials {
		padding-top: 10px;
		padding-bottom: 12px;
	}

	body.home .section-testimonials .section-heading-centered {
		margin-bottom: 8px;
	}

	body.home .section-testimonials .section-heading-centered h2 {
		font-size: 1.55rem;
	}

	body.home .section-testimonials .section-copy {
		margin-top: 3px;
		font-size: 0.76rem;
		line-height: 1.15;
	}

	body.home .testimonial-showcase,
	body.home .video-testimonial-card,
	body.home .testimonial-card {
		min-height: 160px;
	}

	body.home .testimonial-card {
		padding: 16px;
	}

	body.home .testimonial-card p,
	body.home .testimonial-card blockquote {
		font-size: 0.68rem;
		line-height: 1.25;
	}

	body.home .situations-section {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	body.home .situations-section .section-heading-centered {
		margin-bottom: 8px;
	}

	body.home .situations-grid {
		gap: 24px;
	}

	body.home .situation-icon {
		width: 30px;
		height: 30px;
	}

	body.home .situation-item {
		gap: 6px;
	}

	body.home .situation-item h3 {
		font-size: 0.72rem;
		line-height: 1.08;
	}

	body.home .situations-copy {
		margin-top: 8px;
		font-size: 0.78rem;
	}

	body.home .footer-shell {
		padding-top: 12px;
	}

	body.home .footer-grid {
		align-items: start;
		gap: 24px;
		padding-bottom: 8px;
	}

	body.home .footer-links-column .menu-fallback,
	body.home .footer-menu {
		display: grid;
		gap: 0;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	body.home .footer-links-column .menu-fallback li,
	body.home .footer-menu li {
		margin: 0;
		padding: 0;
		line-height: 1.05;
		list-style: none;
	}

	body.home .footer-links-column .menu-fallback a,
	body.home .footer-menu a {
		font-size: 0.62rem;
		line-height: 1.15;
	}

	body.home .footer-heading {
		margin-bottom: 3px;
		font-size: 0.68rem;
		line-height: 1.15;
	}

	body.home .footer-copy {
		font-size: 0.62rem;
		line-height: 1.15;
	}

	body.home .footer-contact-column .footer-copy + .footer-copy {
		margin-top: 3px;
	}

	body.home .social-link-list {
		margin-top: 5px;
	}

	body.home .social-circle-link {
		width: 18px;
		height: 18px;
	}

	body.home .footer-home-value-column .button {
		width: 100%;
		min-height: 28px;
		padding: 0.45rem 0.8rem;
	}

	body.home .footer-bottom-row {
		min-height: 0;
		padding-top: 6px;
	}
}

/* True-center the footer CTA copy; the report preview is decorative and must not affect alignment. */
body.home .footer-cta-band {
	display: block;
}

body.home .footer-value-cta {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	max-width: none;
	min-height: 154px;
	margin-left: calc(50% - 50vw);
	margin-right: 0;
}

body.home .footer-cta-copy {
	position: relative;
	left: auto;
	z-index: 2;
	display: grid;
	justify-items: center;
	width: min(100% - 32px, 860px);
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
	transform: none;
}

body.home .footer-cta-copy h2 {
	width: 100%;
	margin: 0;
	text-align: center;
	white-space: nowrap;
}

body.home .footer-cta-copy p {
	max-width: 640px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

body.home .report-preview {
	position: absolute;
	top: 50%;
	right: max(24px, calc((100vw - var(--ebr-container)) / 2 - 40px));
	z-index: 1;
	transform: translateY(-50%);
}

@media (max-width: 1120px) and (min-width: 861px) {
	body.home .footer-cta-copy {
		width: min(100% - 200px, 600px);
		max-width: 600px;
	}

	body.home .footer-cta-copy h2 {
		font-size: 1.44rem;
	}

	body.home .report-preview {
		right: 0;
		width: 132px;
	}
}

@media (max-width: 860px) {
	body.home .footer-cta-copy {
		width: min(100% - 28px, 620px);
	}

	body.home .footer-cta-copy h2 {
		white-space: normal;
	}
}

/* Buyer page funnel. */
.buyer-page {
	--buyer-navy: #061d38;
	--buyer-navy-soft: #0d2c50;
	--buyer-gold: #c89b3c;
	--buyer-gold-dark: #a87922;
	--buyer-ink: #0b1f3a;
	--buyer-muted: #52606f;
	--buyer-line: rgba(11, 31, 58, 0.14);
	background: #fff;
	color: var(--buyer-ink);
	font-family: Arial, Helvetica, sans-serif;
}

body.buyer-page-active {
	--buyer-gold: #c89b3c;
	--buyer-gold-dark: #a87922;
}

.buyer-page h1,
.buyer-page h2,
.buyer-page h3,
.buyer-page p {
	margin-top: 0;
}

.buyer-hero {
	position: relative;
	display: grid;
	align-items: center;
	min-height: clamp(560px, 74vw, 660px);
	background-image:
		linear-gradient(90deg, rgba(6, 29, 56, 0.94) 0%, rgba(6, 29, 56, 0.82) 42%, rgba(6, 29, 56, 0.22) 72%),
		var(--buyer-hero-image);
	background-position: center;
	background-size: cover;
	color: #fff;
	overflow: hidden;
}

.buyer-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 110px;
	background: linear-gradient(180deg, rgba(6, 29, 56, 0), rgba(6, 29, 56, 0.82));
	pointer-events: none;
}

.buyer-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	align-items: center;
	min-height: inherit;
	padding: clamp(42px, 7vw, 82px) 0;
}

.buyer-hero-copy {
	display: grid;
	gap: 14px;
	max-width: 650px;
}

.buyer-kicker {
	color: #f0d698;
	font-size: 0.74rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.buyer-hero h1 {
	max-width: 11ch;
	color: #fff;
	font-size: clamp(2.55rem, 8vw, 5rem);
	font-weight: 900;
	line-height: 0.98;
	letter-spacing: 0;
}

.buyer-hero-subhead {
	margin-bottom: 0;
	color: #fff;
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	font-weight: 900;
	line-height: 1.35;
}

.buyer-hero-copy p:not(.buyer-kicker):not(.buyer-hero-subhead) {
	max-width: 560px;
	color: rgba(255, 255, 255, 0.94);
	font-size: clamp(0.98rem, 1.45vw, 1.15rem);
	font-weight: 700;
	line-height: 1.55;
}

.buyer-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	margin-top: 8px;
}

.buyer-page .button,
.buyer-final-cta .button {
	min-height: 48px;
	border-radius: 4px;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.buyer-page .button-primary,
body.buyer-page-active .footer-cta-band .button-primary {
	background: linear-gradient(180deg, #d7b45c 0%, var(--buyer-gold) 100%);
	border-color: var(--buyer-gold);
	color: #fff;
}

.buyer-page .button-primary:hover,
.buyer-page .button-primary:focus-visible,
body.buyer-page-active .footer-cta-band .button-primary:hover,
body.buyer-page-active .footer-cta-band .button-primary:focus-visible {
	background: var(--buyer-gold-dark);
	color: #fff;
}

.buyer-page .button-outline {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.78);
	color: #fff;
}

.buyer-page .button-outline:hover,
.buyer-page .button-outline:focus-visible {
	background: #fff;
	color: var(--buyer-ink);
}

.buyer-section {
	padding: clamp(46px, 7vw, 78px) 0;
	background: #fff;
}

.buyer-process-section,
.buyer-faq-section {
	background:
		linear-gradient(180deg, #f8f8f8 0%, #fff 100%);
}

.buyer-section-heading {
	display: grid;
	gap: 12px;
	max-width: 760px;
	margin: 0 auto clamp(28px, 4vw, 42px);
	text-align: center;
}

.buyer-section-heading h2 {
	color: var(--buyer-ink);
	font-size: clamp(1.65rem, 4vw, 2.45rem);
	font-weight: 900;
	line-height: 1.08;
	text-transform: uppercase;
}

.buyer-section-heading h2::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	margin: 14px auto 0;
	background: var(--buyer-gold);
}

.buyer-section-heading p {
	max-width: 690px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	color: var(--buyer-muted);
	font-size: 1rem;
	line-height: 1.55;
}

.buyer-section-heading-light h2,
.buyer-section-heading-light p {
	color: #fff;
}

.buyer-section-heading-left {
	margin-right: 0;
	margin-left: 0;
	text-align: left;
}

.buyer-section-heading-left h2::after {
	margin-left: 0;
}

.buyer-help-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.buyer-help-card {
	display: grid;
	gap: 12px;
	align-content: start;
	min-height: 100%;
	padding: 22px;
	border: 1px solid var(--buyer-line);
	border-radius: 6px;
	background: #fff;
	text-align: center;
	box-shadow: 0 12px 28px rgba(11, 31, 58, 0.08);
}

.buyer-line-icon,
.buyer-process-icon,
.buyer-va-icon,
.buyer-strategy-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--buyer-gold);
}

.buyer-line-icon {
	width: 54px;
	height: 54px;
	margin: 0 auto;
}

.buyer-line-icon svg,
.buyer-process-icon svg,
.buyer-va-icon svg,
.buyer-strategy-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.buyer-help-card h3,
.buyer-process-card h3,
.buyer-strategy-card h3 {
	margin-bottom: 0;
	color: var(--buyer-ink);
	font-size: 0.96rem;
	font-weight: 900;
	line-height: 1.2;
}

.buyer-help-card p,
.buyer-process-card p,
.buyer-strategy-card p {
	margin-bottom: 0;
	color: var(--buyer-muted);
	font-size: 0.9rem;
	line-height: 1.45;
}

.buyer-process-track {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.buyer-process-card {
	position: relative;
	display: grid;
	gap: 10px;
	align-content: start;
	min-height: 100%;
	padding: 24px 18px 20px;
	border: 1px solid var(--buyer-line);
	border-radius: 6px;
	background: #fff;
	text-align: center;
	box-shadow: 0 12px 28px rgba(11, 31, 58, 0.08);
}

.buyer-process-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin: 0 auto 2px;
	border-radius: 999px;
	background: var(--buyer-navy);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 900;
}

.buyer-process-icon {
	width: 42px;
	height: 42px;
	margin: 0 auto;
}

.buyer-va-section {
	position: relative;
	padding: clamp(48px, 7vw, 76px) 0;
	background:
		linear-gradient(90deg, rgba(6, 29, 56, 0.98), rgba(8, 37, 71, 0.94)),
		linear-gradient(135deg, #071a33, #102f55);
	color: #fff;
	overflow: hidden;
}

.buyer-va-inner {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 30px;
	align-items: center;
}

.buyer-va-visual {
	position: relative;
	min-height: 190px;
	border-radius: 6px;
	background:
		radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.2), transparent 24%),
		linear-gradient(145deg, rgba(200, 155, 60, 0.24), rgba(255, 255, 255, 0.03));
	overflow: hidden;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.buyer-va-visual::before {
	content: "";
	position: absolute;
	top: 28px;
	left: -28px;
	width: 78%;
	height: 112px;
	background:
		repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0 12px, rgba(164, 42, 45, 0.78) 12px 24px);
	clip-path: polygon(0 12%, 100% 0, 90% 100%, 0 88%);
	transform: rotate(-4deg);
	opacity: 0.74;
}

.buyer-va-visual::after {
	content: "";
	position: absolute;
	top: 28px;
	left: -20px;
	width: 34%;
	height: 62px;
	background: rgba(6, 29, 56, 0.92);
	clip-path: polygon(0 16%, 100% 4%, 92% 100%, 0 90%);
}

.buyer-va-visual span {
	position: absolute;
	right: 34px;
	width: 8px;
	border-radius: 999px;
	background: rgba(200, 155, 60, 0.72);
}

.buyer-va-visual span:nth-child(1) {
	top: 38px;
	height: 86px;
}

.buyer-va-visual span:nth-child(2) {
	top: 68px;
	right: 54px;
	height: 66px;
}

.buyer-va-visual span:nth-child(3) {
	top: 94px;
	right: 74px;
	height: 44px;
}

.buyer-va-copy {
	display: grid;
	gap: 18px;
}

.buyer-va-copy > p {
	max-width: 760px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.58;
}

.buyer-va-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.buyer-va-grid article {
	display: grid;
	gap: 8px;
	justify-items: center;
	padding: 16px 10px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.04);
	text-align: center;
}

.buyer-va-icon {
	width: 48px;
	height: 48px;
}

.buyer-va-grid h3 {
	margin-bottom: 0;
	color: #fff;
	font-size: 0.84rem;
	font-weight: 900;
	line-height: 1.2;
}

.buyer-strategy-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.buyer-strategy-card {
	position: relative;
	display: grid;
	gap: 12px;
	align-content: start;
	text-align: center;
}

.buyer-strategy-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 4px;
	object-fit: cover;
	box-shadow: 0 12px 24px rgba(11, 31, 58, 0.1);
}

.buyer-strategy-icon {
	width: 54px;
	height: 54px;
	margin: -36px auto 0;
	padding: 12px;
	border-radius: 999px;
	background: var(--buyer-gold);
	color: #fff;
	box-shadow: 0 10px 22px rgba(11, 31, 58, 0.18);
}

.buyer-eric-section {
	padding: clamp(46px, 7vw, 76px) 0;
	background:
		linear-gradient(90deg, var(--buyer-navy), var(--buyer-navy-soft));
	color: #fff;
}

.buyer-eric-grid {
	display: grid;
	gap: 28px;
	align-items: center;
}

.buyer-eric-photo img {
	display: block;
	width: min(100%, 440px);
	aspect-ratio: 4 / 5;
	border-radius: 6px;
	object-fit: cover;
	object-position: center 18%;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.buyer-eric-copy {
	display: grid;
	gap: 16px;
}

.buyer-eric-copy > p {
	max-width: 680px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	line-height: 1.58;
}

.buyer-check-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.buyer-check-grid li {
	position: relative;
	min-height: 28px;
	padding-left: 34px;
	color: #fff;
	font-size: 0.96rem;
	font-weight: 800;
	line-height: 1.35;
}

.buyer-check-grid li::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 0;
	width: 18px;
	height: 10px;
	border-bottom: 3px solid var(--buyer-gold);
	border-left: 3px solid var(--buyer-gold);
	transform: rotate(-45deg);
}

.buyer-faq-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	max-width: 1080px;
	margin: 0 auto;
}

.buyer-faq-item {
	border: 1px solid var(--buyer-line);
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 8px 20px rgba(11, 31, 58, 0.06);
}

.buyer-faq-item summary {
	position: relative;
	display: block;
	padding: 17px 48px 17px 18px;
	color: var(--buyer-ink);
	font-size: 0.95rem;
	font-weight: 900;
	cursor: pointer;
}

.buyer-faq-item summary::-webkit-details-marker {
	display: none;
}

.buyer-faq-item summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 18px;
	color: var(--buyer-ink);
	font-size: 1.35rem;
	line-height: 1;
	transform: translateY(-50%);
}

.buyer-faq-item[open] summary::after {
	content: "-";
}

.buyer-faq-item p {
	margin: 0;
	padding: 0 18px 18px;
	color: var(--buyer-muted);
	font-size: 0.94rem;
	line-height: 1.55;
}

.buyer-final-cta {
	padding: clamp(56px, 8vw, 90px) 0;
	background-image:
		linear-gradient(90deg, rgba(6, 29, 56, 0.91), rgba(6, 29, 56, 0.72)),
		url("../images/home-hero-twilight-optimized.jpg");
	background-position: center 58%;
	background-size: cover;
	color: #fff;
	text-align: center;
}

.buyer-final-inner {
	display: grid;
	justify-items: center;
	gap: 14px;
}

.buyer-final-cta h2 {
	margin-bottom: 0;
	color: #fff;
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 900;
	line-height: 1.04;
}

.buyer-final-cta p {
	max-width: 660px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.94);
	font-size: 1.05rem;
	font-weight: 800;
}

.buyer-final-actions {
	justify-content: center;
}

.buyer-contact-strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 22px;
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.92rem;
	font-weight: 800;
}

.buyer-contact-strip a {
	color: #fff;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

body.buyer-page-active .footer-home-value-column .button-primary {
	color: #fff;
}

@media (min-width: 640px) {
	.buyer-help-grid,
	.buyer-strategy-grid,
	.buyer-faq-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

@media (min-width: 860px) {
	.buyer-hero {
		min-height: clamp(520px, 43vw, 650px);
	}

	.buyer-help-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0;
	}

	.buyer-help-card {
		border-top: 0;
		border-bottom: 0;
		border-left: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.buyer-help-card:first-child {
		border-left: 1px solid var(--buyer-line);
	}

	.buyer-process-track {
		grid-template-columns: repeat(7, minmax(0, 1fr));
		gap: 12px;
	}

	.buyer-process-track::before {
		content: "";
		position: absolute;
		top: 17px;
		right: 7%;
		left: 7%;
		height: 2px;
		background: var(--buyer-gold);
	}

	.buyer-process-card {
		border: 0;
		background: transparent;
		box-shadow: none;
		padding-right: 8px;
		padding-left: 8px;
	}

	.buyer-process-number {
		position: relative;
		z-index: 1;
	}

	.buyer-va-inner {
		grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.25fr);
	}

	.buyer-va-visual {
		min-height: 280px;
	}

	.buyer-eric-grid {
		grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
	}
}

@media (min-width: 1120px) {
	.buyer-help-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.buyer-strategy-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.buyer-va-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.buyer-hero {
		background-position: 58% center;
	}

	.buyer-actions,
	.buyer-actions .button {
		width: 100%;
	}

	.buyer-page .button,
	.buyer-final-cta .button {
		padding-right: 0.95rem;
		padding-left: 0.95rem;
	}

	.buyer-va-grid {
		grid-template-columns: 1fr;
	}
}

body.buyer-page-active .site-header {
	position: sticky;
	top: 0;
}

/* Seller landing page. Scoped so the global header, footer, and homepage remain untouched. */
.sellers-landing {
	background: #f5f5f5;
	color: #11151a;
	font-family: Arial, Helvetica, sans-serif;
}

.seller-hero-section {
	overflow: hidden;
	padding: 28px 0 22px;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82) 52%, rgba(245, 245, 245, 0.78)),
		linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
}

.seller-hero-grid,
.seller-hero-copy,
.seller-hero-panel,
.seller-value-form,
.seller-contact-fields,
.seller-feature-card,
.seller-process-step,
.seller-testimonial-card,
.seller-final-cta-inner {
	display: grid;
}

.seller-hero-grid {
	gap: 20px;
}

.seller-hero-copy {
	align-content: center;
	gap: 16px;
}

.seller-eyebrow,
.seller-form-kicker {
	margin: 0;
	color: #c89b3c;
	font-size: 0.76rem;
	font-weight: 900;
	line-height: 1.15;
	text-transform: uppercase;
}

.seller-hero-title {
	max-width: 680px;
	margin: 0;
	color: #11151a;
	font-size: clamp(2.38rem, 10vw, 4.1rem);
	font-weight: 900;
	line-height: 0.98;
	text-transform: uppercase;
}

.seller-hero-title span {
	display: block;
	color: #11151a;
}

.seller-hero-title .seller-title-accent {
	color: #c89b3c;
}

.seller-hero-text {
	max-width: 520px;
	margin: 0;
	color: #22262a;
	font-size: clamp(0.98rem, 2vw, 1.1rem);
	font-weight: 700;
	line-height: 1.4;
}

.seller-hero-actions,
.seller-final-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.seller-hero-actions .button,
.seller-final-actions .button {
	min-height: 48px;
	border-radius: 4px;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.seller-hero-actions .button-primary {
	min-width: min(100%, 220px);
	color: #fff;
}

.seller-hero-actions .button-outline {
	background: transparent;
	border-color: #11151a;
	color: #11151a;
}

.seller-hero-actions .button-secondary {
	background: #11151a;
	color: #fff;
}

.seller-trust-list {
	display: grid;
	gap: 10px;
	margin: 4px 0 0;
	padding: 0;
	list-style: none;
}

.seller-trust-list li {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	min-width: 0;
	color: #11151a;
	font-size: 0.86rem;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.seller-mini-icon,
.seller-feature-icon,
.seller-process-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #c89b3c;
}

.seller-mini-icon {
	width: 38px;
	height: 38px;
	border: 1px solid rgba(17, 21, 26, 0.16);
	border-radius: 999px;
	background: #fff;
}

.seller-mini-icon svg,
.seller-feature-icon svg,
.seller-process-icon svg {
	width: 58%;
	height: 58%;
	fill: currentColor;
}

.seller-hero-panel {
	align-items: end;
	gap: 16px;
}

.seller-hero-form-column {
	display: grid;
	align-items: center;
	justify-items: center;
	min-width: 0;
}

.seller-agent-card {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	min-height: 300px;
	margin: 0;
	overflow: visible;
	background: transparent;
}

.seller-agent-card img {
	position: relative;
	z-index: 1;
	width: auto;
	height: clamp(300px, 60vw, 430px);
	max-width: 100%;
	object-fit: contain;
	object-position: center;
	filter: drop-shadow(0 22px 28px rgba(17, 21, 26, 0.22));
}

.seller-value-card {
	align-content: start;
	justify-self: center;
	width: min(100%, 460px);
	max-width: 100%;
	gap: 16px;
	padding: 34px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(180deg, #15191d 0%, #090c0f 100%);
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
	color: #fff;
}

.seller-value-card h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(1.65rem, 4vw, 2.28rem);
	font-weight: 900;
	line-height: 1.06;
	text-align: center;
	text-transform: uppercase;
}

.seller-value-card .seller-form-kicker {
	text-align: center;
}

.seller-value-form {
	gap: 10px;
}

.seller-value-card .field-group {
	gap: 8px;
}

.seller-value-card .field-group label {
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.66rem;
	letter-spacing: 0.08em;
}

.seller-value-card .field-group input {
	min-height: 56px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 6px;
	background: #fff;
	color: #11151a;
	font-size: 1rem;
}

.seller-value-card .button {
	width: 100%;
	min-height: 56px;
	border-radius: 6px;
	color: #fff;
	font-size: 0.82rem;
	font-weight: 900;
	text-transform: uppercase;
}

.seller-contact-fields {
	gap: 10px;
	max-height: 520px;
	overflow: hidden;
	opacity: 1;
}

.seller-value-card:not(.is-expanded) .seller-contact-fields {
	max-height: 0;
	visibility: hidden;
	opacity: 0;
}

.seller-value-card.is-expanded .seller-address-next {
	display: none;
}

.seller-form-note {
	margin: 2px 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
}

.sellers-landing .form-notice {
	margin: 0;
	border-radius: 4px;
	font-size: 0.82rem;
	line-height: 1.35;
}

.seller-section {
	padding: 28px 0;
}

.seller-offers-section,
.seller-testimonials-section {
	background: #fff;
}

.seller-process-section {
	background: linear-gradient(180deg, #ffffff 0%, #f4f4f3 100%);
}

.seller-why-section {
	background: #f0f1f2;
}

.sellers-landing .section-heading-centered {
	margin-bottom: 18px;
}

.sellers-landing .section-heading-centered h2 {
	color: #11151a;
	font-size: clamp(1.58rem, 6vw, 2.08rem);
	font-weight: 900;
	line-height: 1.08;
	text-align: center;
	text-transform: uppercase;
}

.seller-offer-grid,
.seller-why-grid,
.seller-testimonial-grid {
	display: grid;
	gap: 14px;
}

.seller-feature-card {
	align-content: start;
	justify-items: center;
	gap: 10px;
	min-height: 100%;
	padding: 18px;
	border: 1px solid #dedede;
	border-radius: 4px;
	background: #fff;
	text-align: center;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.seller-feature-card.compact {
	padding: 16px 12px;
}

.seller-feature-icon {
	width: 52px;
	height: 52px;
	border-radius: 999px;
	background: #15191d;
}

.seller-feature-card.compact .seller-feature-icon {
	background: transparent;
	color: #c89b3c;
}

.seller-feature-card.compact .seller-feature-icon svg {
	width: 42px;
	height: 42px;
}

.seller-feature-card h3 {
	margin: 0;
	color: #11151a;
	font-size: 0.92rem;
	font-weight: 900;
	line-height: 1.12;
	text-transform: uppercase;
}

.seller-feature-card p {
	max-width: 270px;
	margin: 0;
	color: #2b2b2b;
	font-size: 0.82rem;
	line-height: 1.38;
}

.seller-process-grid {
	display: grid;
	gap: 14px;
}

.seller-process-step {
	position: relative;
	align-content: start;
	justify-items: center;
	gap: 10px;
	padding: 18px 14px;
	border: 1px solid rgba(17, 21, 26, 0.1);
	border-radius: 4px;
	background: #fff;
	text-align: center;
}

.seller-step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	background: #c89b3c;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 900;
}

.seller-process-icon {
	width: 70px;
	height: 70px;
	color: #11151a;
}

.seller-process-step h3 {
	margin: 0;
	color: #11151a;
	font-size: 0.88rem;
	font-weight: 900;
	line-height: 1.12;
	text-transform: uppercase;
}

.seller-process-step p,
.seller-process-step ul {
	margin: 0;
	color: #2b2b2b;
	font-size: 0.82rem;
	line-height: 1.38;
}

.seller-process-step ul {
	display: grid;
	gap: 4px;
	justify-items: start;
	padding-left: 18px;
	text-align: left;
}

.seller-testimonial-card {
	align-content: start;
	justify-items: center;
	gap: 10px;
	padding: 20px 18px;
	border-left: 1px solid rgba(17, 21, 26, 0.14);
	text-align: center;
}

.seller-testimonial-card:first-child {
	border-left: 0;
}

.seller-stars {
	color: #c89b3c;
	font-size: 1rem;
	letter-spacing: 0.05em;
}

.seller-testimonial-card blockquote {
	max-width: 330px;
	margin: 0;
	color: #11151a;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.45;
}

.seller-testimonial-card cite {
	color: #11151a;
	font-size: 0.82rem;
	font-style: normal;
	font-weight: 900;
}

.seller-testimonial-card p {
	margin: -6px 0 0;
	color: #555b62;
	font-size: 0.78rem;
}

.seller-final-cta {
	padding: 20px 0;
	background: #f5f0e8;
}

.seller-final-cta-inner {
	gap: 16px;
	align-items: center;
	padding: 22px;
	border-radius: 4px;
	background: linear-gradient(90deg, #ffffff 0%, #f8f2e7 100%);
}

.seller-final-cta h2 {
	margin: 0 0 4px;
	color: #11151a;
	font-size: clamp(1.55rem, 6vw, 2rem);
	font-weight: 900;
	line-height: 1.05;
	text-transform: uppercase;
}

.seller-final-cta p {
	margin: 0;
	color: #11151a;
	font-size: 0.9rem;
	font-weight: 900;
	text-transform: uppercase;
}

.seller-final-actions .button-primary {
	color: #fff;
}

.seller-final-actions .button-outline {
	background: #fff;
	border-color: #11151a;
	color: #11151a;
}

.seller-final-actions .button-secondary {
	background: #11151a;
	color: #fff;
}

@media (min-width: 640px) {
	.seller-trust-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.seller-hero-panel {
		grid-template-columns: minmax(0, 0.78fr) minmax(300px, 1fr);
		align-items: center;
		gap: 12px;
	}

	.seller-agent-card {
		min-height: 400px;
	}

	.seller-offer-grid,
	.seller-testimonial-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

@media (min-width: 861px) {
	.seller-hero-section {
		padding: 30px 0 24px;
	}

	.seller-hero-grid {
		grid-template-columns: minmax(0, 500px) minmax(170px, 245px) minmax(380px, 460px);
		align-items: center;
		justify-content: center;
		gap: 8px;
		min-height: 500px;
	}

	.seller-hero-title {
		max-width: 520px;
		font-size: clamp(3rem, 4.4vw, 3.65rem);
	}

	.seller-hero-text {
		max-width: 470px;
	}

	.seller-hero-panel {
		display: contents;
	}

	.seller-agent-card {
		z-index: 2;
		justify-self: end;
		width: min(100%, 275px);
		min-height: 0;
		height: 465px;
		margin-right: -18px;
	}

	.seller-agent-card img {
		height: min(46vw, 485px);
		max-height: 100%;
		max-width: none;
		transform: translateX(10px);
	}

	.seller-value-card {
		position: relative;
		z-index: 3;
		align-self: center;
		justify-self: start;
		width: min(100%, 460px);
		padding: 40px;
	}

	.seller-section {
		padding: 30px 0;
	}

	.seller-offer-grid {
		gap: 22px;
	}

	.seller-process-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 26px;
	}

	.seller-process-step:not(:last-child)::after {
		position: absolute;
		top: 92px;
		right: -18px;
		width: 12px;
		height: 12px;
		border-top: 3px solid #11151a;
		border-right: 3px solid #11151a;
		content: "";
		transform: rotate(45deg);
	}

	.seller-why-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 0;
	}

	.seller-why-grid .seller-feature-card {
		border-radius: 0;
		box-shadow: none;
	}

	.seller-why-grid .seller-feature-card:first-child {
		border-top-left-radius: 4px;
		border-bottom-left-radius: 4px;
	}

	.seller-why-grid .seller-feature-card:last-child {
		border-top-right-radius: 4px;
		border-bottom-right-radius: 4px;
	}

	.seller-final-cta-inner {
		grid-template-columns: minmax(0, 1fr) auto;
	}
}

@media (min-width: 861px) and (max-width: 1119px) {
	.seller-hero-grid {
		grid-template-columns: 1fr;
		min-height: 0;
		gap: 22px;
	}

	.seller-hero-panel {
		display: grid;
		grid-template-columns: minmax(0, 0.74fr) minmax(340px, 1fr);
		align-items: center;
		gap: 10px;
	}

	.seller-agent-card {
		justify-self: end;
		width: min(100%, 320px);
		height: 410px;
		margin-right: -18px;
	}

	.seller-agent-card img {
		height: min(52vw, 430px);
		max-width: none;
		transform: translateX(8px);
	}

	.seller-value-card {
		justify-self: start;
		width: min(100%, 440px);
		padding: 38px;
	}
}

@media (max-width: 860px) {
	.seller-hero-grid {
		grid-template-columns: 1fr;
	}

	.seller-hero-grid {
		display: grid;
	}

	.seller-hero-copy,
	.seller-hero-panel {
		display: contents;
	}

	.seller-eyebrow {
		order: 1;
	}

	.seller-hero-title {
		order: 2;
	}

	.seller-hero-text {
		order: 3;
	}

	.seller-value-card {
		order: 4;
		justify-self: stretch;
		width: 100%;
	}

	.seller-agent-card {
		order: 5;
		width: 100%;
		min-height: 330px;
	}

	.seller-agent-card img {
		height: min(72vw, 380px);
		transform: none;
	}

	.seller-trust-list {
		order: 6;
	}

	.seller-response-disclaimer {
		order: 7;
	}

	.seller-hero-actions {
		order: 8;
	}

	.seller-hero-actions .button,
	.seller-final-actions .button {
		flex: 1 1 100%;
		width: 100%;
	}

	.seller-final-cta-inner {
		text-align: center;
	}

	.seller-final-actions {
		width: 100%;
	}
}

@media (max-width: 560px) {
	.sellers-landing {
		overflow-x: hidden;
	}

	.sellers-landing .container {
		width: calc(100vw - 22px);
		max-width: calc(100vw - 22px);
	}

	.seller-hero-copy,
	.seller-hero-title,
	.seller-hero-text {
		min-width: 0;
		max-width: 100%;
	}

	.seller-hero-text {
		overflow-wrap: break-word;
		max-width: 32ch;
	}

	.seller-hero-section {
		padding-top: 24px;
	}

	.seller-hero-title {
		font-size: 2.12rem;
		max-width: 10.5ch;
	}

	.seller-value-card h2 {
		max-width: 15ch;
		margin-right: auto;
		margin-left: auto;
		font-size: 1.48rem;
		line-height: 1.08;
		text-wrap: balance;
	}

	.seller-agent-card {
		min-height: 260px;
	}

	.seller-agent-card img {
		height: 285px;
	}

	.seller-trust-list li {
		grid-template-columns: 40px minmax(0, 1fr);
	}

	.seller-value-card,
	.seller-feature-card,
	.seller-process-step,
	.seller-final-cta-inner {
		padding: 16px;
	}

	.seller-value-card {
		padding: 24px 18px;
	}

	.seller-testimonial-card {
		border-left: 0;
		border-top: 1px solid rgba(17, 21, 26, 0.14);
	}

	.seller-testimonial-card:first-child {
		border-top: 0;
	}
}

/* Seller disclaimers and IDX preparation. */
.seller-disclaimer {
	max-width: 900px;
	margin: 1rem auto 0;
	font-size: 0.78rem;
	line-height: 1.65;
	color: var(--ebr-muted);
}

.seller-response-disclaimer {
	margin: 1.2rem 0 0;
	max-width: 590px;
	color: rgba(17, 21, 26, 0.62);
}

.seller-incentive-disclaimer {
	color: var(--ebr-muted);
	text-align: center;
}

.idx-embed-card,
.idx-support-card {
	display: grid;
	gap: 1rem;
	height: 100%;
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid var(--ebr-line);
	border-radius: var(--ebr-radius);
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--ebr-shadow);
}

.idx-shortcode-slot {
	display: grid;
	align-content: center;
	min-height: 320px;
	padding: clamp(1rem, 3vw, 1.5rem);
	border: 1px dashed rgba(194, 146, 58, 0.55);
	border-radius: 18px;
	background: rgba(251, 248, 241, 0.92);
	color: var(--ebr-muted);
	overflow: auto;
}

.idx-shortcode-slot > * {
	margin: 0;
}

.idx-shortcode-slot code {
	display: inline-block;
	margin-top: 0.4rem;
	padding: 0.35rem 0.55rem;
	border-radius: 6px;
	background: #ffffff;
	color: var(--ebr-ink);
	white-space: normal;
}

.idx-contact-list {
	display: grid;
	gap: 0.45rem;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--ebr-ink);
}

.idx-integration-notes .feature-card {
	min-height: 100%;
}

/* Homepage hero without Eric cutout photo. */
.hero-home-no-agent {
	background-image:
		linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.78) 42%, rgba(0, 0, 0, 0.34) 72%, rgba(0, 0, 0, 0.58) 100%),
		var(--hero-image);
}

.hero-home-no-agent .hero-layout {
	grid-template-columns: minmax(0, 600px) minmax(0, 1fr);
	align-items: center;
	justify-items: start;
	width: 100%;
	max-width: none;
	padding-right: 6%;
	padding-left: 6%;
}

.hero-home-no-agent .hero-copy-block {
	max-width: 600px;
	margin: 0;
	padding-bottom: clamp(30px, 4vw, 56px);
	text-align: left;
	justify-items: start;
}

.hero-home-no-agent .hero-copy-block h1 {
	max-width: 600px;
	font-size: 4rem;
	line-height: 1.02;
	text-wrap: balance;
}

.hero-home-no-agent .hero-copy-block h1 span {
	max-width: 520px;
	font-size: 1.7rem;
	line-height: 1.14;
	text-wrap: balance;
}

.hero-home-no-agent .hero-copy {
	max-width: 520px;
	font-size: 1.2rem;
	line-height: 1.5;
}

.hero-home-no-agent .hero-copy-block h1,
.hero-home-no-agent .hero-copy {
	margin-right: 0;
	margin-left: 0;
}

.hero-home-no-agent .hero-actions {
	justify-content: flex-start;
	gap: 16px;
	margin-top: 8px;
}

@media (max-width: 860px) {
	.hero-home-no-agent,
	.hero-home-no-agent .hero-layout {
		min-height: auto;
	}

	.hero-home-no-agent .hero-layout {
		grid-template-columns: 1fr;
		padding-right: 22px;
		padding-left: 22px;
	}

	.hero-home-no-agent .hero-copy-block {
		padding: 42px 0;
		text-align: left;
		justify-items: start;
	}

	.hero-home-no-agent .hero-copy-block h1 {
		max-width: 11ch;
		font-size: 2.45rem;
	}

	.hero-home-no-agent .hero-copy-block h1 span {
		max-width: 14ch;
		font-size: 1.45rem;
	}

	.hero-home-no-agent .hero-copy {
		max-width: 31ch;
		font-size: 1.08rem;
	}

	.hero-home-no-agent .hero-actions {
		display: grid;
		grid-template-columns: 1fr;
		width: min(100%, 390px);
	}

	.hero-home-no-agent .hero-actions .button {
		width: 100%;
		min-width: 0;
	}
}

/* About and contact page refresh. */
.centered-stack {
	text-align: center;
	justify-items: center;
}

.ebr-about-hero,
.ebr-contact-hero {
	overflow: hidden;
	background-position: center;
	background-size: cover;
}

.ebr-about-hero {
	background-color: #f7f7f4;
	background-image:
		linear-gradient(90deg, rgba(247, 247, 244, 0.98) 0%, rgba(247, 247, 244, 0.9) 42%, rgba(247, 247, 244, 0.24) 72%, rgba(247, 247, 244, 0.06) 100%),
		var(--ebr-about-hero-image);
}

.ebr-about-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 620px) minmax(320px, 1fr);
	align-items: end;
	gap: clamp(32px, 5vw, 80px);
	min-height: 560px;
}

.ebr-about-hero-copy {
	display: grid;
	gap: 18px;
	padding: clamp(52px, 7vw, 88px) 0;
}

.ebr-about-hero h1,
.ebr-contact-hero h1,
.ebr-about-icons-section h2,
.ebr-about-results h2,
.ebr-gold-cta h2,
.ebr-contact-main h2,
.ebr-home-value-card h2 {
	margin: 0;
	color: #07172f;
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.04;
}

.ebr-about-hero h1 {
	max-width: 600px;
	font-size: clamp(3.2rem, 5.8vw, 4.6rem);
	text-wrap: balance;
}

.ebr-gold-subtitle {
	max-width: 720px;
	margin: 0;
	color: #c99a35;
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: clamp(1.25rem, 2.1vw, 1.55rem);
	font-weight: 900;
	line-height: 1.22;
}

.ebr-hero-body,
.ebr-contact-hero p,
.ebr-contact-main p,
.ebr-about-results p,
.ebr-icon-column p,
.ebr-result-card p,
.ebr-home-value-card p,
.ebr-benefit-item p {
	margin: 0;
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.55;
	letter-spacing: 0;
}

.ebr-hero-body {
	max-width: 620px;
	color: #07172f;
	font-size: clamp(1.05rem, 1.4vw, 1.18rem);
}

.ebr-page-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin-top: 10px;
}

.ebr-page-actions .button {
	min-height: 56px;
	border-radius: 6px;
	padding: 15px 24px;
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 0.92rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: none;
}

.ebr-page-actions .button-outline {
	background: rgba(255, 255, 255, 0.76);
	border-color: #07172f;
	color: #07172f;
}

.ebr-about-hero-photo {
	align-self: end;
	justify-self: center;
	margin: 0;
	line-height: 0;
}

.ebr-about-hero-photo img {
	width: min(100%, 480px);
	max-height: 520px;
	object-fit: contain;
	object-position: bottom center;
	filter: drop-shadow(0 22px 28px rgba(7, 23, 47, 0.2));
}

.ebr-about-icons-section,
.ebr-contact-main {
	padding: clamp(34px, 5vw, 58px) 0;
	background: #fff;
}

.ebr-about-icons-section h2 {
	text-align: center;
	font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.ebr-section-rule {
	width: 48px;
	height: 3px;
	margin: 12px 0 0;
	background: #c99a35;
}

.ebr-about-icons-section > .container > .ebr-section-rule {
	margin: 10px auto 28px;
}

.ebr-icon-column-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0;
}

.ebr-icon-column {
	display: grid;
	align-content: start;
	justify-items: center;
	gap: 10px;
	min-height: 100%;
	padding: 10px 20px 4px;
	text-align: center;
	border-left: 1px solid rgba(7, 23, 47, 0.14);
}

.ebr-icon-column:first-child {
	border-left: 0;
}

.ebr-line-icon,
.ebr-contact-icon,
.ebr-large-home-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #c99a35;
}

.ebr-line-icon svg,
.ebr-contact-icon svg,
.ebr-large-home-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.ebr-line-icon {
	width: 52px;
	height: 52px;
}

.ebr-icon-column h3,
.ebr-result-card h3,
.ebr-contact-card strong,
.ebr-service-area strong,
.ebr-benefit-item strong {
	margin: 0;
	color: #07172f;
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 1rem;
	font-weight: 900;
	line-height: 1.2;
}

.ebr-icon-column p {
	max-width: 190px;
	color: #07172f;
	font-size: 0.95rem;
	line-height: 1.42;
}

.ebr-about-results {
	padding: clamp(34px, 5vw, 58px) 0;
	background: linear-gradient(135deg, #06172b 0%, #071f3d 100%);
	color: #fff;
}

.ebr-results-grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.45fr);
	align-items: stretch;
	gap: 36px;
}

.ebr-about-results h2,
.ebr-about-results p {
	color: #fff;
}

.ebr-about-results h2 {
	font-size: clamp(1.8rem, 3.2vw, 2.35rem);
}

.ebr-about-results p {
	max-width: 560px;
	font-size: 1.05rem;
}

.ebr-results-copy {
	display: grid;
	align-content: center;
	gap: 18px;
}

.ebr-results-cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.ebr-result-card {
	display: grid;
	align-content: start;
	justify-items: center;
	gap: 12px;
	min-height: 100%;
	padding: 26px 20px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.08);
	text-align: center;
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.ebr-result-card h3 {
	color: #fff;
	font-size: 1.08rem;
}

.ebr-result-card p {
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.98rem;
}

.ebr-gold-cta {
	padding: 18px 0;
	background: linear-gradient(90deg, #c99a35 0%, #dbb25c 100%);
}

.ebr-gold-cta-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 24px 48px;
}

.ebr-gold-cta h2 {
	color: #fff;
	font-size: clamp(1.6rem, 3vw, 2.15rem);
}

.ebr-gold-cta .button-secondary {
	background: #06172b;
	border-color: #06172b;
	color: #fff;
}

.ebr-gold-cta .button-outline {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.82);
	color: #fff;
}

.ebr-contact-hero {
	background-color: #f7f7f4;
	background-image:
		linear-gradient(90deg, rgba(247, 247, 244, 0.98) 0%, rgba(247, 247, 244, 0.88) 42%, rgba(247, 247, 244, 0.3) 67%, rgba(247, 247, 244, 0.06) 100%),
		var(--ebr-contact-hero-image);
	background-position: center right;
}

.ebr-contact-hero-inner {
	display: grid;
	align-content: center;
	justify-items: start;
	min-height: 440px;
	padding: clamp(52px, 7vw, 78px) 0;
}

.ebr-contact-label {
	margin: 0 0 8px;
	color: #c99a35;
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 1rem;
	font-weight: 900;
	text-transform: uppercase;
}

.ebr-contact-hero h1 {
	max-width: 600px;
	font-size: clamp(2.6rem, 5vw, 4.05rem);
	text-wrap: balance;
}

.ebr-contact-hero p:not(.ebr-contact-label) {
	max-width: 560px;
	margin-top: 18px;
	color: #07172f;
	font-size: clamp(1.04rem, 1.5vw, 1.18rem);
}

.ebr-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 1.25fr) minmax(280px, 0.78fr);
	gap: clamp(28px, 4vw, 46px);
	align-items: start;
}

.ebr-contact-options,
.ebr-contact-form-panel {
	display: grid;
	align-content: start;
	gap: 14px;
}

.ebr-contact-main h2 {
	font-size: clamp(1.55rem, 2.3vw, 2rem);
}

.ebr-contact-main p {
	color: #07172f;
}

.ebr-contact-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 10px;
}

.ebr-contact-card {
	display: grid;
	justify-items: center;
	gap: 6px;
	min-width: 0;
	padding: 18px 10px;
	border: 1px solid rgba(7, 23, 47, 0.12);
	border-radius: 6px;
	background: #fff;
	text-align: center;
	box-shadow: 0 12px 28px rgba(7, 23, 47, 0.06);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.ebr-contact-card:hover,
.ebr-contact-card:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 16px 32px rgba(7, 23, 47, 0.12);
}

.ebr-contact-icon {
	width: 58px;
	height: 58px;
	border-radius: 999px;
	background: rgba(201, 154, 53, 0.12);
}

.ebr-contact-icon svg {
	width: 32px;
	height: 32px;
}

.ebr-contact-card span:not(.ebr-contact-icon),
.ebr-service-area p,
.ebr-service-area small,
.ebr-contact-card small {
	color: #07172f;
	font-family: "Trebuchet MS", Arial, sans-serif;
	line-height: 1.3;
	overflow-wrap: anywhere;
}

.ebr-contact-card small,
.ebr-service-area small {
	font-size: 0.86rem;
}

.ebr-service-area {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	margin-top: 6px;
}

.ebr-service-area .ebr-contact-icon {
	width: 44px;
	height: 44px;
	background: #c99a35;
	color: #fff;
}

.ebr-service-area .ebr-contact-icon svg {
	width: 26px;
	height: 26px;
}

.ebr-contact-form-panel {
	padding-left: clamp(0px, 3vw, 36px);
	border-left: 1px solid rgba(7, 23, 47, 0.14);
}

.ebr-contact-form-panel .form-card {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.ebr-contact-form-panel .lead-form {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 16px;
	margin-top: 8px;
}

.ebr-contact-form-panel .lead-form .contact-field-phone,
.ebr-contact-form-panel .lead-form .contact-field-notes,
.ebr-contact-form-panel .lead-form .button {
	grid-column: 1 / -1;
}

.ebr-contact-form-panel .field-group label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.ebr-contact-form-panel input,
.ebr-contact-form-panel textarea {
	border-color: rgba(7, 23, 47, 0.14);
	border-radius: 6px;
	background: #fff;
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 1rem;
}

.ebr-contact-form-panel .button {
	min-height: 54px;
	border-radius: 6px;
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 0.95rem;
	font-weight: 900;
	text-transform: none;
}

.ebr-home-value-card {
	display: grid;
	justify-items: center;
	gap: 18px;
	min-height: 100%;
	padding: 36px 28px;
	border-radius: 8px;
	background: linear-gradient(145deg, #06172b 0%, #09284d 100%);
	color: #fff;
	text-align: center;
	box-shadow: 0 20px 42px rgba(6, 23, 43, 0.22);
}

.ebr-large-home-icon {
	width: 74px;
	height: 74px;
}

.ebr-home-value-card h2,
.ebr-home-value-card p {
	color: #fff;
}

.ebr-home-value-card h2 {
	font-size: clamp(1.45rem, 2.5vw, 1.9rem);
}

.ebr-home-value-card p {
	max-width: 270px;
}

.ebr-home-value-card .ebr-section-rule {
	margin-top: 0;
}

.ebr-home-value-card .button {
	width: 100%;
	min-height: 54px;
	border-radius: 6px;
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 0.96rem;
	font-weight: 900;
	text-transform: none;
}

.ebr-contact-benefits {
	padding: 18px 0;
	background: #06172b;
	color: #fff;
}

.ebr-benefit-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 4vw, 48px);
}

.ebr-benefit-item {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
}

.ebr-benefit-item .ebr-line-icon {
	width: 52px;
	height: 52px;
}

.ebr-benefit-item strong,
.ebr-benefit-item p {
	color: #fff;
}

@media (max-width: 1120px) {
	.ebr-icon-column-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 24px 0;
	}

	.ebr-icon-column:nth-child(4) {
		border-left: 0;
	}

	.ebr-results-grid,
	.ebr-contact-grid {
		grid-template-columns: 1fr;
	}

	.ebr-results-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ebr-contact-form-panel {
		padding-left: 0;
		border-left: 0;
	}
}

@media (max-width: 860px) {
	.ebr-about-hero-grid {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.ebr-about-hero-copy {
		padding: 42px 0 10px;
	}

	.ebr-about-hero-photo {
		justify-self: center;
	}

	.ebr-about-hero-photo img {
		max-height: 380px;
	}

	.ebr-contact-hero-inner {
		min-height: auto;
		padding: 48px 0;
	}

	.ebr-page-actions {
		display: grid;
		grid-template-columns: 1fr;
		width: min(100%, 390px);
	}

	.ebr-page-actions .button {
		width: 100%;
	}

	.ebr-benefit-strip {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.ebr-about-hero {
		background-image:
			linear-gradient(180deg, rgba(247, 247, 244, 0.98) 0%, rgba(247, 247, 244, 0.94) 58%, rgba(247, 247, 244, 0.76) 100%),
			var(--ebr-about-hero-image);
	}

	.ebr-contact-hero {
		background-image:
			linear-gradient(90deg, rgba(247, 247, 244, 0.98) 0%, rgba(247, 247, 244, 0.94) 70%, rgba(247, 247, 244, 0.7) 100%),
			var(--ebr-contact-hero-image);
	}

	.ebr-about-hero h1,
	.ebr-contact-hero h1 {
		font-size: 2.55rem;
	}

	.ebr-icon-column-grid,
	.ebr-results-cards,
	.ebr-contact-card-grid,
	.ebr-contact-form-panel .lead-form {
		grid-template-columns: 1fr;
	}

	.ebr-icon-column,
	.ebr-icon-column:nth-child(4) {
		border-left: 0;
		border-top: 1px solid rgba(7, 23, 47, 0.12);
	}

	.ebr-icon-column:first-child {
		border-top: 0;
	}

	.ebr-contact-form-panel .lead-form .field-group,
	.ebr-contact-form-panel .lead-form .button {
		grid-column: auto;
	}

	.ebr-gold-cta-inner {
		justify-content: flex-start;
	}

	.ebr-gold-cta h2 {
		width: 100%;
	}
}

/* Sellers hero wide desktop composition. */
@media (min-width: 1180px) {
	.seller-hero-section {
		padding: 58px 0 54px;
		background:
			linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 42%, rgba(248, 248, 248, 0.92) 100%);
	}

	.seller-hero-grid {
		grid-template-columns: minmax(430px, 520px) minmax(260px, 375px) minmax(420px, 560px);
		align-items: center;
		justify-content: center;
		gap: 0;
		width: min(1440px, calc(100vw - 48px));
		max-width: 1440px;
		min-height: 720px;
	}

	.seller-hero-copy {
		gap: 20px;
		align-content: center;
		justify-self: start;
		width: min(100%, 520px);
		max-width: 520px;
	}

	.seller-eyebrow {
		font-size: 0.9rem;
		letter-spacing: 0.08em;
	}

	.seller-hero-title {
		max-width: 520px;
		font-size: clamp(4.4rem, 5.2vw, 5.6rem);
		line-height: 0.92;
		letter-spacing: 0;
	}

	.seller-hero-text {
		max-width: 520px;
		font-size: 1.22rem;
		line-height: 1.42;
	}

	.seller-hero-actions {
		flex-wrap: nowrap;
		gap: 14px;
		align-items: center;
		width: 100%;
	}

	.seller-hero-actions .button {
		min-height: 58px;
		padding: 15px 22px;
		font-size: 0.86rem;
		white-space: nowrap;
	}

	.seller-hero-actions .button-primary {
		min-width: 238px;
	}

	.seller-hero-actions .button-outline,
	.seller-hero-actions .button-secondary {
		min-width: 118px;
	}

	.seller-trust-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
		margin-top: 12px;
	}

	.seller-trust-list li {
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 10px;
		font-size: 1.02rem;
		line-height: 1.05;
	}

	.seller-mini-icon {
		width: 44px;
		height: 44px;
	}

	.seller-response-disclaimer {
		display: none;
	}

	.seller-hero-panel {
		display: contents;
	}

	.seller-agent-card {
		z-index: 2;
		justify-self: center;
		width: 365px;
		min-height: 0;
		height: 520px;
		margin: 0;
	}

	.seller-agent-card img {
		height: min(34vw, 500px);
		max-height: 500px;
		max-width: none;
		transform: translateX(10px);
	}

	.seller-value-card {
		position: relative;
		z-index: 3;
		align-self: center;
		justify-self: start;
		width: min(100%, 540px);
		margin-left: -48px;
		padding: 48px 42px;
		border-radius: 10px;
		box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
	}

	.seller-value-card h2 {
		font-size: clamp(2.75rem, 3.1vw, 3.45rem);
		line-height: 0.98;
		letter-spacing: 0;
	}

	.seller-value-card .seller-form-kicker {
		font-size: 0.92rem;
		letter-spacing: 0.08em;
	}

	.seller-value-form {
		gap: 14px;
	}

	.seller-value-card .field-group input {
		min-height: 72px;
		padding-right: 22px;
		padding-left: 22px;
		font-size: 1.16rem;
	}

	.seller-value-card .button {
		min-height: 68px;
		font-size: 0.95rem;
	}

	.seller-form-note {
		font-size: 0.88rem;
	}
}

@media (min-width: 861px) and (max-width: 1179px) {
	.seller-hero-section {
		padding: 42px 0 40px;
	}

	.seller-hero-grid {
		grid-template-columns: 1fr;
		min-height: 0;
		gap: 28px;
	}

	.seller-hero-copy,
	.seller-hero-panel {
		display: grid;
	}

	.seller-hero-copy {
		max-width: 720px;
	}

	.seller-hero-panel {
		grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1fr);
		align-items: center;
		gap: 14px;
	}

	.seller-eyebrow,
	.seller-hero-title,
	.seller-hero-text,
	.seller-value-card,
	.seller-agent-card,
	.seller-trust-list,
	.seller-response-disclaimer,
	.seller-hero-actions {
		order: initial;
	}

	.seller-hero-title {
		max-width: 620px;
		font-size: clamp(4rem, 8vw, 5rem);
	}

	.seller-agent-card {
		justify-self: end;
		width: min(100%, 340px);
		height: 430px;
		margin: 0;
	}

	.seller-agent-card img {
		height: min(50vw, 440px);
		max-width: none;
		transform: none;
	}

	.seller-value-card {
		justify-self: start;
		width: min(100%, 520px);
		margin-left: -28px;
		padding: 40px;
	}
}

@media (max-width: 860px) {
	.seller-hero-copy,
	.seller-hero-panel {
		display: grid;
	}

	.seller-hero-panel {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.seller-eyebrow,
	.seller-hero-title,
	.seller-hero-text,
	.seller-value-card,
	.seller-agent-card,
	.seller-trust-list,
	.seller-response-disclaimer,
	.seller-hero-actions {
		order: initial;
	}

	.seller-hero-title {
		max-width: 12ch;
		font-size: clamp(2.8rem, 12vw, 4rem);
	}

	.seller-hero-actions {
		display: grid;
		grid-template-columns: 1fr;
		width: min(100%, 430px);
	}

	.seller-trust-list {
		grid-template-columns: 1fr;
	}

	.seller-agent-card {
		width: 100%;
		min-height: 0;
		height: auto;
	}

	.seller-agent-card img {
		height: min(86vw, 420px);
		transform: none;
	}

	.seller-value-card {
		width: 100%;
		margin-left: 0;
	}
}

/* Final direct-grid sellers hero placement. */
@media (min-width: 900px) {
	.seller-hero-section {
		padding: 60px 0 56px;
	}

	.seller-hero-grid {
		display: grid;
		grid-template-columns: minmax(300px, 520px) minmax(180px, 360px) minmax(300px, 540px);
		align-items: center;
		justify-content: center;
		gap: 0;
		width: min(1440px, calc(100vw - 40px));
		max-width: 1440px;
		min-height: 720px;
	}

	.seller-hero-copy {
		display: grid;
		gap: 20px;
		align-content: center;
		justify-self: start;
		width: 100%;
		max-width: 520px;
	}

	.seller-hero-title {
		max-width: 520px;
		font-size: clamp(4rem, 5.2vw, 5.6rem);
		line-height: 0.92;
	}

	.seller-hero-text {
		max-width: 500px;
		font-size: 1.16rem;
		line-height: 1.42;
	}

	.seller-hero-actions {
		display: flex;
		flex-wrap: nowrap;
		gap: 12px;
		width: 100%;
	}

	.seller-hero-actions .button {
		min-height: 56px;
		padding: 14px 20px;
		font-size: 0.82rem;
		white-space: nowrap;
	}

	.seller-hero-actions .button-primary {
		min-width: 210px;
	}

	.seller-hero-actions .button-outline,
	.seller-hero-actions .button-secondary {
		min-width: 112px;
	}

	.seller-trust-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
		margin-top: 12px;
	}

	.seller-trust-list li {
		grid-template-columns: 44px minmax(0, 1fr);
		font-size: 0.94rem;
		line-height: 1.08;
	}

	.seller-mini-icon {
		width: 42px;
		height: 42px;
	}

	.seller-response-disclaimer {
		display: none;
	}

	.seller-agent-card {
		grid-column: 2;
		grid-row: 1;
		z-index: 2;
		justify-self: center;
		align-self: center;
		width: min(100%, 360px);
		min-height: 0;
		height: 520px;
		margin: 0;
	}

	.seller-agent-card img {
		height: min(42vw, 500px);
		max-height: 500px;
		max-width: none;
		transform: translateX(8px);
	}

	.seller-hero-form-column {
		grid-column: 3;
		grid-row: 1;
		z-index: 3;
		justify-self: start;
		width: min(100%, 520px);
		margin-left: -34px;
	}

	.seller-hero-form-column .seller-value-card {
		width: 100%;
		margin-left: 0;
		padding: 42px 36px;
		border-radius: 10px;
		box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
	}

	.seller-hero-form-column .seller-value-card h2 {
		font-size: clamp(2.45rem, 3vw, 3.3rem);
		line-height: 0.98;
	}

	.seller-hero-form-column .seller-value-card .seller-form-kicker {
		font-size: 0.9rem;
	}

	.seller-hero-form-column .seller-value-card .field-group input {
		min-height: 68px;
		font-size: 1.12rem;
	}

	.seller-hero-form-column .seller-value-card .button {
		min-height: 66px;
		font-size: 0.94rem;
	}
}

@media (min-width: 1180px) {
	.seller-hero-grid {
		grid-template-columns: minmax(470px, 520px) minmax(315px, 375px) minmax(500px, 560px);
		width: min(1440px, calc(100vw - 48px));
	}

	.seller-hero-form-column {
		width: min(100%, 540px);
		margin-left: -48px;
	}

	.seller-hero-form-column .seller-value-card {
		padding: 48px 42px;
	}
}

@media (min-width: 900px) and (max-width: 1179px) {
	.seller-hero-title {
		font-size: clamp(3.1rem, 5vw, 4rem);
	}
}

@media (max-width: 899px) {
	.seller-hero-grid {
		grid-template-columns: 1fr;
	}

	.seller-agent-card,
	.seller-hero-form-column {
		grid-column: auto;
		grid-row: auto;
		margin-left: 0;
	}

	.seller-hero-form-column .seller-value-card {
		width: 100%;
		margin-left: 0;
	}
}

/* Shared layout polish for centered CTAs and reusable media blocks. */
.cta-section,
body.home .footer-cta-band,
.footer-cta-band {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding-right: 0;
	padding-left: 0;
	text-align: center;
}

body.home .footer-value-cta,
.footer-value-cta {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: min(1200px, calc(100vw - 48px));
	max-width: 1200px;
	min-height: 154px;
	margin-right: auto;
	margin-left: auto;
	padding: 24px;
}

body.home .footer-cta-copy,
.footer-cta-copy {
	display: grid;
	justify-items: center;
	width: min(100%, 680px);
	max-width: 680px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

body.home .footer-cta-copy h2,
.footer-cta-copy h2 {
	white-space: normal;
	text-align: center;
	text-wrap: balance;
}

body.home .footer-cta-copy p,
.footer-cta-copy p {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

body.home .footer-cta-copy .button,
.footer-cta-copy .button {
	justify-self: center;
	margin-right: auto;
	margin-left: auto;
}

body.home .footer-value-cta .report-preview,
.footer-value-cta .report-preview {
	position: absolute;
	top: 50%;
	right: clamp(16px, 3vw, 40px);
	width: clamp(150px, 16vw, 210px);
	height: clamp(78px, 9.5vw, 108px);
	pointer-events: none;
	transform: translateY(-50%);
}

.selling-options-grid,
.process-grid,
.situations-grid,
.buyer-help-grid,
.buyer-process-track,
.buyer-strategy-grid,
.buyer-faq-grid,
.buyer-va-grid {
	margin-right: auto;
	margin-left: auto;
}

.ebr-gold-cta-inner {
	justify-content: center;
	text-align: center;
}

.video-testimonial-card {
	position: relative;
	display: block;
	overflow: hidden;
	min-height: 0;
	aspect-ratio: 16 / 9;
	border-radius: 4px;
	background: #06172b;
}

.video-testimonial-card::before,
.video-testimonial-card::after {
	content: none;
	display: none;
}

.video-testimonial-card .testimonial-video {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	border-radius: inherit;
	background: #06172b;
	object-fit: cover;
}

.flag-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.flag-wrapper .flag-image {
	display: block;
	width: 100%;
	max-width: 500px;
	height: auto;
	object-fit: contain;
}

.buyer-va-flag-image {
	border-radius: 8px;
	box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.buyer-va-photo {
	aspect-ratio: 3 / 2;
	border-radius: 8px;
	box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
	object-fit: cover;
	object-position: center;
}

.flag-wrapper .buyer-va-visual::before {
	top: 32px;
	left: 24px;
	width: 72%;
	height: 42%;
	transform: rotate(-6deg);
}

.flag-wrapper .buyer-va-visual::after {
	top: 32px;
	left: 24px;
	width: 31%;
	height: 24%;
	transform: rotate(-6deg);
}

@media (min-width: 861px) {
	.hero-home-no-agent .hero-layout {
		width: min(1200px, calc(100vw - 48px));
		max-width: 1200px;
		margin-right: auto;
		margin-left: auto;
		padding-right: 0;
		padding-left: 0;
	}
}

@media (max-width: 1120px) and (min-width: 861px) {
	body.home .footer-cta-copy,
	.footer-cta-copy {
		width: min(100%, 580px);
	}

	body.home .footer-value-cta .report-preview,
	.footer-value-cta .report-preview {
		width: 150px;
		height: 78px;
		right: 16px;
	}
}

@media (max-width: 860px) {
	body.home .footer-value-cta,
	.footer-value-cta {
		width: min(760px, calc(100vw - 28px));
		min-height: 190px;
		padding: 30px 0;
	}

	body.home .footer-value-cta .report-preview,
	.footer-value-cta .report-preview {
		display: none;
	}

	.ebr-gold-cta-inner {
		justify-content: center;
		text-align: center;
	}
}

.footer-realtypath-logo {
	width: min(100%, 190px);
	margin-top: 2px;
	padding: 8px 10px;
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.footer-realtypath-logo .brokerage-logo {
	max-width: 100%;
}

@media (max-width: 860px) {
	.footer-realtypath-logo {
		margin-right: auto;
		margin-left: auto;
	}
}

/* Search Homes IDX-ready page. */
.search-homes-page {
	--search-navy: #06172b;
	--search-navy-soft: #0b294c;
	--search-gold: #c89b3c;
	--search-gold-dark: #a87922;
	--search-ink: #07172f;
	--search-muted: #52606f;
	--search-line: rgba(7, 23, 47, 0.13);
	--search-panel: #ffffff;
	--search-soft: #f6f7f8;
	background: #fff;
	color: var(--search-ink);
	font-family: Arial, Helvetica, sans-serif;
}

.search-homes-page *,
.search-homes-page *::before,
.search-homes-page *::after {
	box-sizing: border-box;
}

.search-homes-page h1,
.search-homes-page h2,
.search-homes-page h3,
.search-homes-page p {
	margin-top: 0;
}

.search-homes-page svg {
	width: 1.05em;
	height: 1.05em;
	flex: 0 0 auto;
}

.search-homes-page .button {
	gap: 8px;
	min-height: 48px;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 900;
	text-transform: none;
}

.search-homes-page .button-primary {
	background: linear-gradient(180deg, #d7b45c 0%, var(--search-gold) 100%);
	border-color: var(--search-gold);
	color: #fff;
}

.search-homes-page .button-primary:hover,
.search-homes-page .button-primary:focus-visible {
	background: var(--search-gold-dark);
	color: #fff;
}

.search-homes-page .button-secondary {
	background: var(--search-navy);
	color: #fff;
}

.search-homes-page .button-outline {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.74);
	color: #fff;
}

.search-homes-page .button-outline:hover,
.search-homes-page .button-outline:focus-visible {
	background: #fff;
	color: var(--search-ink);
}

.search-hero {
	position: relative;
	padding: clamp(42px, 8vw, 86px) 0 clamp(28px, 6vw, 68px);
	background-image:
		linear-gradient(180deg, rgba(6, 23, 43, 0.88), rgba(6, 23, 43, 0.72)),
		var(--search-hero-image);
	background-position: center;
	background-size: cover;
	color: #fff;
	overflow: hidden;
}

.search-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	gap: clamp(24px, 5vw, 42px);
	align-items: end;
}

.search-hero-copy {
	display: grid;
	gap: 14px;
	max-width: 720px;
}

.search-kicker {
	margin-bottom: 0;
	color: var(--search-gold);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.search-hero h1 {
	max-width: 12ch;
	margin-bottom: 0;
	color: #fff;
	font-size: clamp(2.55rem, 10vw, 5rem);
	font-weight: 900;
	line-height: 0.98;
	letter-spacing: 0;
}

.search-hero-copy p:not(.search-kicker) {
	max-width: 660px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.94);
	font-size: clamp(1rem, 2vw, 1.2rem);
	font-weight: 700;
	line-height: 1.55;
}

.search-hero-actions,
.search-alert-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.search-filter-card {
	display: grid;
	gap: 0;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.98);
	color: var(--search-ink);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

.search-filter-tabs {
	display: flex;
	max-width: 100%;
	overflow-x: auto;
	border-bottom: 1px solid var(--search-line);
}

.search-filter-tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: max-content;
	padding: 14px 18px;
	border-right: 1px solid var(--search-line);
	color: var(--search-ink);
	font-size: 0.84rem;
	font-weight: 900;
	white-space: nowrap;
}

.search-filter-tab.is-active {
	background: var(--search-navy);
	color: #fff;
}

.search-filter-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	padding: 18px;
}

.search-field {
	display: grid;
	gap: 6px;
}

.search-field label {
	color: var(--search-ink);
	font-size: 0.76rem;
	font-weight: 900;
}

.search-field input,
.search-field select {
	width: 100%;
	min-height: 48px;
	padding: 0 12px;
	border: 1px solid var(--search-line);
	border-radius: 6px;
	background: #fff;
	color: var(--search-muted);
	font: inherit;
	opacity: 1;
}

.search-filter-submit {
	width: 100%;
	min-height: 50px;
	align-self: end;
}

.search-popular-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	padding: 0 18px 16px;
	color: var(--search-muted);
	font-size: 0.83rem;
	line-height: 1.4;
}

.search-popular-row strong {
	color: var(--search-ink);
}

.search-preview-note {
	margin: 0;
	padding: 12px 18px 16px;
	border-top: 1px solid rgba(7, 23, 47, 0.08);
	color: var(--search-muted);
	font-size: 0.84rem;
	line-height: 1.45;
}

.search-seo-section,
.search-idx-section,
.search-benefits-section {
	padding: clamp(42px, 7vw, 76px) 0;
}

.search-seo-grid {
	display: grid;
	gap: 22px;
	align-items: start;
}

.search-seo-copy,
.search-seo-text,
.search-section-heading {
	display: grid;
	gap: 12px;
}

.search-seo-copy h2,
.search-section-heading h2,
.search-alert-inner h2 {
	margin-bottom: 0;
	color: var(--search-ink);
	font-size: clamp(1.7rem, 5vw, 2.75rem);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: 0;
}

.search-seo-text p,
.search-section-heading p,
.search-alert-inner p,
.search-benefit p {
	margin-bottom: 0;
	color: var(--search-muted);
	font-size: 1rem;
	line-height: 1.62;
}

.search-idx-section {
	background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}

.search-section-heading {
	max-width: 820px;
	margin-bottom: clamp(22px, 4vw, 34px);
}

.search-results-shell {
	display: grid;
	gap: 16px;
	border: 1px solid var(--search-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 44px rgba(7, 23, 47, 0.08);
	overflow: hidden;
}

.search-results-toolbar {
	display: grid;
	gap: 12px;
	padding: 16px;
	border-bottom: 1px solid var(--search-line);
	background: #fff;
}

.search-results-toolbar p {
	margin: 0;
	color: var(--search-ink);
}

.search-view-toggle {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.search-view-toggle span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	border: 1px solid var(--search-line);
	border-radius: 6px;
	background: #fff;
	color: var(--search-ink);
	font-size: 0.86rem;
	font-weight: 900;
}

.search-view-toggle span:first-child {
	background: var(--search-navy);
	border-color: var(--search-navy);
	color: #fff;
}

.search-idx-layout {
	display: grid;
	gap: 16px;
	padding: 0 16px;
}

.search-results-shell.has-live-idx .search-idx-layout {
	display: none;
}

.search-list-preview {
	display: grid;
	gap: 12px;
}

.search-list-placeholder {
	display: grid;
	grid-template-columns: 116px minmax(0, 1fr);
	gap: 12px;
	min-height: 116px;
	padding: 10px;
	border: 1px solid rgba(7, 23, 47, 0.1);
	border-radius: 8px;
	background: #fff;
}

.search-list-image-placeholder {
	position: relative;
	min-height: 96px;
	border-radius: 6px;
	background:
		linear-gradient(135deg, rgba(6, 23, 43, 0.1), rgba(200, 155, 60, 0.14)),
		linear-gradient(180deg, #e8edf2, #d8e0e8);
	overflow: hidden;
}

.search-list-image-placeholder::before,
.search-list-image-placeholder::after {
	position: absolute;
	right: 14px;
	left: 14px;
	height: 2px;
	background: rgba(6, 23, 43, 0.32);
	content: "";
}

.search-list-image-placeholder::before {
	bottom: 32px;
	transform: rotate(-24deg);
}

.search-list-image-placeholder::after {
	bottom: 32px;
	transform: rotate(24deg);
}

.search-list-lines {
	display: grid;
	align-content: center;
	gap: 9px;
	min-width: 0;
}

.search-list-lines span {
	display: block;
	height: 10px;
	border-radius: 999px;
	background: #e5e9ee;
}

.search-list-lines span:nth-child(1) {
	width: 52%;
	background: rgba(7, 23, 47, 0.18);
}

.search-list-lines span:nth-child(2) {
	width: 86%;
}

.search-list-lines span:nth-child(3) {
	width: 68%;
}

.search-list-lines p {
	margin: 0;
	color: var(--search-muted);
	font-size: 0.78rem;
	line-height: 1.35;
}

.search-map-preview {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 320px;
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.58) 0 1px, transparent 1px 42px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.62) 0 1px, transparent 1px 42px),
		linear-gradient(135deg, rgba(200, 155, 60, 0.18), transparent 38%),
		linear-gradient(145deg, #dce9e1 0%, #eef3f6 48%, #d7ead9 100%);
	overflow: hidden;
}

.search-map-preview::before {
	position: absolute;
	inset: 28% -10% auto;
	height: 20px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow:
		0 64px 0 rgba(255, 255, 255, 0.78),
		0 -54px 0 rgba(255, 255, 255, 0.7);
	content: "";
	transform: rotate(-19deg);
}

.search-map-grid-line {
	position: absolute;
	background: rgba(200, 155, 60, 0.8);
	border-radius: 999px;
}

.search-map-grid-line-one {
	top: 0;
	left: 46%;
	width: 9px;
	height: 120%;
	transform: rotate(8deg);
}

.search-map-grid-line-two {
	top: 54%;
	left: -12%;
	width: 125%;
	height: 8px;
	transform: rotate(-7deg);
}

.search-map-pin {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	min-height: 28px;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--search-navy);
	color: #fff;
	font-size: 0.76rem;
	font-weight: 900;
	box-shadow: 0 8px 18px rgba(7, 23, 47, 0.22);
}

.search-map-pin-one {
	top: 25%;
	left: 28%;
}

.search-map-pin-two {
	top: 43%;
	right: 24%;
}

.search-map-pin-three {
	right: 36%;
	bottom: 23%;
}

.search-map-preview p {
	position: relative;
	z-index: 1;
	max-width: 220px;
	margin: 0;
	padding: 10px 12px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--search-ink);
	font-size: 0.9rem;
	font-weight: 900;
	line-height: 1.3;
	text-align: center;
}

.idx-broker-embed-shell {
	display: grid;
	gap: 12px;
	padding: 0 16px 16px;
}

.idx-container-label {
	margin: 0;
	color: var(--search-ink);
	font-size: 0.86rem;
	font-weight: 900;
}

.idx-broker-shortcode-slot {
	display: grid;
	min-height: 280px;
	border: 1px dashed rgba(200, 155, 60, 0.6);
	border-radius: 8px;
	background: #fbf8f1;
	color: var(--search-muted);
	overflow-x: auto;
}

.idx-broker-shortcode-slot > * {
	min-width: 0;
}

.idx-broker-placeholder {
	display: grid;
	align-content: center;
	gap: 10px;
	padding: clamp(18px, 5vw, 34px);
	text-align: center;
}

.idx-broker-placeholder p {
	max-width: 620px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	color: var(--search-muted);
	line-height: 1.55;
}

.idx-placeholder-heading {
	color: var(--search-ink) !important;
	font-size: 1.1rem;
	font-weight: 900;
}

.idx-broker-placeholder code {
	display: inline-block;
	max-width: 100%;
	margin: 0 auto;
	padding: 10px 12px;
	border-radius: 6px;
	background: #fff;
	color: var(--search-ink);
	font-size: 0.84rem;
	line-height: 1.5;
	overflow-wrap: anywhere;
	white-space: normal;
}

.idx-load-fallback {
	display: grid;
	gap: 4px;
	margin: 0;
	padding: 12px 14px;
	border: 1px solid rgba(200, 155, 60, 0.28);
	border-radius: 8px;
	background: rgba(200, 155, 60, 0.1);
	color: var(--search-ink);
	font-size: 0.88rem;
	line-height: 1.45;
}

.idx-load-fallback span {
	color: var(--search-muted);
}

.search-alert-cta {
	padding: clamp(42px, 7vw, 70px) 0;
	background: linear-gradient(90deg, var(--search-navy) 0%, var(--search-navy-soft) 100%);
	color: #fff;
}

.search-alert-inner {
	display: grid;
	gap: 22px;
	align-items: center;
}

.search-alert-inner h2,
.search-alert-inner p {
	color: #fff;
}

.search-alert-inner p {
	max-width: 720px;
	color: rgba(255, 255, 255, 0.9);
}

.search-alert-actions {
	align-content: start;
}

.search-alert-actions .button {
	width: 100%;
}

.search-benefits-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	border-top: 1px solid var(--search-line);
	border-bottom: 1px solid var(--search-line);
}

.search-benefit {
	display: grid;
	justify-items: center;
	gap: 10px;
	padding: 26px 18px;
	border-top: 1px solid var(--search-line);
	text-align: center;
}

.search-benefit:first-child {
	border-top: 0;
}

.search-benefit-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	color: var(--search-navy);
}

.search-benefit-icon svg {
	width: 100%;
	height: 100%;
}

.search-benefit h3 {
	margin-bottom: 0;
	color: var(--search-ink);
	font-size: 0.98rem;
	font-weight: 900;
}

@media (min-width: 640px) {
	.search-filter-form {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.search-field-wide,
	.search-filter-submit {
		grid-column: 1 / -1;
	}

	.search-results-toolbar {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
	}

	.search-view-toggle {
		min-width: 250px;
	}

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

	.search-benefit:nth-child(2) {
		border-top: 0;
	}

	.search-benefit:nth-child(even) {
		border-left: 1px solid var(--search-line);
	}
}

@media (min-width: 920px) {
	.search-hero {
		padding-bottom: 58px;
		background-image:
			linear-gradient(90deg, rgba(6, 23, 43, 0.92) 0%, rgba(6, 23, 43, 0.78) 42%, rgba(6, 23, 43, 0.46) 100%),
			var(--search-hero-image);
	}

	.search-hero-inner {
		grid-template-columns: minmax(320px, 0.8fr) minmax(560px, 1.2fr);
	}

	.search-filter-form {
		grid-template-columns: minmax(220px, 1.45fr) repeat(4, minmax(94px, 0.65fr)) minmax(168px, 0.9fr);
		align-items: end;
		gap: 14px;
		padding: 22px;
	}

	.search-field-wide,
	.search-filter-submit {
		grid-column: auto;
	}

	.search-popular-row,
	.search-preview-note {
		padding-right: 22px;
		padding-left: 22px;
	}

	.search-seo-grid {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
		gap: clamp(36px, 6vw, 70px);
	}

	.search-idx-layout {
		grid-template-columns: minmax(300px, 0.78fr) minmax(430px, 1fr);
		align-items: stretch;
	}

	.search-map-preview {
		min-height: 100%;
	}

	.search-alert-inner {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
	}

	.search-alert-actions .button {
		width: 100%;
	}
}

@media (min-width: 1120px) {
	.search-benefits-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.search-benefit,
	.search-benefit:nth-child(2) {
		border-top: 0;
	}

	.search-benefit {
		border-left: 1px solid var(--search-line);
	}

	.search-benefit:first-child {
		border-left: 0;
	}
}

@media (max-width: 560px) {
	.search-hero-actions,
	.search-hero-actions .button {
		width: 100%;
	}

	.search-filter-tab {
		padding-right: 14px;
		padding-left: 14px;
	}

	.search-list-placeholder {
		grid-template-columns: 1fr;
	}

	.search-list-image-placeholder {
		aspect-ratio: 16 / 9;
		min-height: 0;
	}
}

/* Launch QA hardening: accessible mobile navigation and overflow protection. */
html,
body {
	overflow-x: hidden;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.mobile-nav-toggle {
	display: none;
}

.site-header .current-menu-item > a,
.site-header .menu-list a[aria-current="page"],
.site-header .menu-fallback a[aria-current="page"] {
	color: #f0d698;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 0.35em;
}

@media (max-width: 860px) {
	body.nav-open {
		overflow: hidden;
	}

	.site-header {
		position: relative;
		z-index: 60;
	}

	.site-header .header-inner {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		justify-items: stretch;
		gap: 12px;
		min-height: 72px;
		padding: 12px 0;
	}

	.site-header .header-brand-column {
		justify-self: start;
		min-width: 0;
	}

	.site-header .header-brand {
		max-width: min(68vw, 230px);
	}

	.site-header .header-logo {
		max-width: min(68vw, 190px);
		max-height: 58px;
	}

	.mobile-nav-toggle {
		position: relative;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		justify-self: end;
		width: 48px;
		height: 48px;
		border: 1px solid rgba(255, 255, 255, 0.24);
		border-radius: 6px;
		background: rgba(255, 255, 255, 0.08);
		color: #fff;
		cursor: pointer;
	}

	.mobile-nav-toggle-bars,
	.mobile-nav-toggle-bars::before,
	.mobile-nav-toggle-bars::after {
		position: absolute;
		width: 22px;
		height: 2px;
		border-radius: 999px;
		background: currentColor;
		content: "";
		transition: transform 160ms ease, opacity 160ms ease;
	}

	.mobile-nav-toggle-bars::before {
		transform: translateY(-7px);
	}

	.mobile-nav-toggle-bars::after {
		transform: translateY(7px);
	}

	.site-header.is-nav-open .mobile-nav-toggle-bars {
		background: transparent;
	}

	.site-header.is-nav-open .mobile-nav-toggle-bars::before {
		background: currentColor;
		transform: rotate(45deg);
	}

	.site-header.is-nav-open .mobile-nav-toggle-bars::after {
		background: currentColor;
		transform: rotate(-45deg);
	}

	.site-header .primary-nav,
	.site-header .header-actions {
		display: none;
		grid-column: 1 / -1;
		width: 100%;
	}

	html:not(.js-ready) .site-header .primary-nav,
	html:not(.js-ready) .site-header .header-actions {
		display: grid;
	}

	html:not(.js-ready) .mobile-nav-toggle {
		display: none;
	}

	.site-header.is-nav-open .primary-nav,
	.site-header.is-nav-open .header-actions {
		display: grid;
	}

	.site-header .primary-nav {
		padding: 6px 0 0;
		overflow: visible;
	}

	.site-header .menu-list,
	.site-header .menu-fallback {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
		width: 100%;
		margin: 0;
		padding: 8px 0;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.site-header .menu-list li,
	.site-header .menu-fallback li {
		width: 100%;
	}

	.site-header .menu-list a,
	.site-header .menu-fallback a {
		display: flex;
		align-items: center;
		min-height: 48px;
		padding: 0 4px;
		font-size: 0.88rem;
	}

	.site-header .header-actions {
		justify-items: stretch;
		padding-top: 4px;
	}

	.site-header .header-cta.button-primary {
		width: 100%;
		max-width: none;
		min-height: 50px;
	}
}

/* Final launch safeguards for mobile browsers, IDX embeds, and long content. */
html {
	scroll-padding-top: 88px;
}

.site-shell,
.site-main,
.site-footer,
section,
article,
.container,
.header-inner,
.footer-grid,
.lead-form,
.form-card,
.search-results-shell,
.idx-broker-embed-shell,
.idx-broker-shortcode-slot {
	min-width: 0;
}

.button,
button,
input,
select,
textarea,
.mobile-cta-link,
.site-header a,
.footer-shell a {
	max-width: 100%;
	overflow-wrap: anywhere;
}

.button,
button {
	white-space: normal;
	text-align: center;
	touch-action: manipulation;
}

input,
select,
textarea {
	min-width: 0;
}

iframe,
embed,
object,
video,
canvas,
svg {
	max-width: 100%;
}

video,
canvas {
	height: auto;
}

.idx-broker-shortcode-slot iframe,
.idx-broker-shortcode-slot embed,
.idx-broker-shortcode-slot object,
.idx-broker-shortcode-slot table,
.idx-broker-shortcode-slot img,
.idx-broker-shortcode-slot form {
	max-width: 100%;
}

.idx-broker-shortcode-slot iframe,
.idx-broker-shortcode-slot embed,
.idx-broker-shortcode-slot object {
	width: 100%;
}

.search-map-preview,
.idx-broker-shortcode-slot {
	overscroll-behavior: contain;
}

@media (max-width: 767px) {
	.site-main {
		padding-bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px));
	}

	.mobile-cta-bar {
		right: max(0.75rem, env(safe-area-inset-right, 0px));
		bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
		left: max(0.75rem, env(safe-area-inset-left, 0px));
	}
}

@media (max-width: 380px) {
	.mobile-cta-link {
		padding-right: 0.55rem;
		padding-left: 0.55rem;
		font-size: 0.85rem;
	}
}
