:root {
	--dark: #2d2926;
	--cream: #f5f2e9;
	--paper: #f5f2e9;
	--ink: #2d2926;
	--muted-dark: #e6e1d6;
	--muted: #5e5954;
	--muted-inverse: #c9c3b7;
	--gold: #7d6b3d;
	--gold-soft: #b5a682;
	--hero-bg: #1e1e1e;
	--line: #dcd8cb;
	--container: 1280px;
	--gutter: clamp(22px, 5.6vw, 80px);
}

* {
	box-sizing: border-box;
}

html {
	background: var(--dark);
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family:
		Inter,
		ui-sans-serif,
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

a {
	color: inherit;
}

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

.section {
	padding: clamp(56px, 8vw, 112px) var(--gutter);
}

.section-inner,
.header-inner,
.offer-inner {
	margin: 0 auto;
	max-width: var(--container);
}

.eyebrow {
	align-items: center;
	color: var(--gold-soft);
	display: inline-flex;
	font-size: 0.8125rem;
	font-weight: 400;
	gap: 8px;
	letter-spacing: 0.154em;
	margin: 0 0 28px;
	text-transform: uppercase;
}

.heading {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 1.05;
	margin: 0;
}

.copy {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.55;
	margin: 0;
}

.button {
	align-items: center;
	background: var(--gold);
	border: 0;
	border-radius: 3px;
	color: #fffaf0;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 1rem;
	font-weight: 600;
	justify-content: center;
	min-height: 54px;
	padding: 0 28px;
	text-decoration: none;
}

.button.is-light {
	background: var(--paper);
	color: var(--dark);
}

.logo,
.footer-logo {
	display: block;
	width: 68px;
}

.site-header .logo {
	filter: brightness(0) invert(1);
}

.nav {
	align-items: center;
	color: var(--muted-dark);
	display: flex;
	font-size: 0.9375rem;
	font-weight: 400;
	gap: clamp(20px, 3vw, 34px);
}

.nav a,
.footer-nav a {
	text-decoration: none;
}

.nav .button {
	font-size: 0.875rem;
	min-height: 36px;
	padding: 0 18px;
}

.home-page .site-header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	left: 0;
	margin: 0 auto;
	max-width: calc(var(--container) + (var(--gutter) * 2));
	padding: 40px var(--gutter);
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
}

.hero {
	background: var(--dark);
	color: var(--paper);
	display: grid;
	min-height: 820px;
	padding-top: 110px;
}

.hero .section-inner {
	align-self: center;
	width: 100%;
}

.hero-title {
	color: var(--paper);
	font-size: clamp(4rem, 5.42vw, 4.875rem);
	line-height: 1.05;
	max-width: 920px;
}

.hero-copy {
	color: var(--muted-dark);
	font-size: 1.125rem;
	margin-top: 24px;
	max-width: 540px;
}

.hero-actions {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 30px;
}

.promise {
	color: var(--muted-dark);
	font-size: 0.9375rem;
	font-weight: 400;
}

.steps {
	background: var(--cream);
	padding-bottom: 100px;
	padding-top: 100px;
}

.steps .eyebrow {
	color: var(--gold);
}

.steps-title {
	font-size: clamp(2.4rem, 3.2vw, 2.875rem);
	max-width: 640px;
}

.step-list {
	display: grid;
	margin-top: clamp(42px, 7vw, 74px);
}

.step {
	align-items: start;
	border-bottom: 1px solid var(--line);
	display: grid;
	gap: clamp(22px, 4vw, 46px);
	grid-template-columns: 44px minmax(0, 620px);
	padding: 36px 0;
}

.step:first-child {
	padding-top: 0;
}

.step:last-child {
	border-bottom: 0;
}

.step-number {
	color: var(--gold);
	font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 1.375rem;
	line-height: 1;
}

.step h3 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.875rem;
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 1;
	margin: 0 0 12px;
}

.step p {
	color: var(--muted);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	margin: 0;
	max-width: 610px;
}

.why {
	background: var(--dark);
	color: var(--paper);
	padding-top: 0;
}

.color-blocks {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	margin: 0 auto;
	max-width: var(--container);
}

.color-blocks span {
	height: 8px;
}

.color-blocks span:nth-child(1) {
	background: #4a3f24;
}

.color-blocks span:nth-child(2) {
	background: var(--gold);
}

.color-blocks span:nth-child(3) {
	background: var(--gold-soft);
}

.why .section-inner {
	display: grid;
	gap: clamp(46px, 7vw, 78px);
	padding-top: clamp(56px, 8vw, 100px);
}

.why-title {
	font-size: clamp(2.4rem, 3.2vw, 2.875rem);
	line-height: 1.1;
	max-width: 900px;
}

.why-copy {
	color: var(--muted-dark);
	font-size: 1.125rem;
	margin-top: 20px;
	max-width: 650px;
}

.stats {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat {
	border-left: 1px solid rgba(159, 135, 75, 0.42);
	padding-left: 22px;
}

.stat strong {
	display: block;
	font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: clamp(2rem, 2.8vw, 2.5rem);
	font-weight: 400;
	letter-spacing: -0.05em;
	line-height: 1;
}

.stat span {
	color: var(--muted-dark);
	display: block;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.35;
	margin-top: 12px;
}

.faq {
	background: var(--cream);
	color: var(--ink);
	padding-bottom: 100px;
	padding-top: 100px;
}

.faq .section-inner {
	display: grid;
	gap: clamp(42px, 7vw, 100px);
	grid-template-columns: 440px minmax(0, 1fr);
}

.faq .eyebrow {
	color: var(--gold);
}

.faq-title {
	font-size: clamp(2.4rem, 3.2vw, 2.875rem);
	max-width: 440px;
}

.faq-left {
	display: grid;
	gap: 40px;
	align-content: start;
}

.faq-footnote {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.faq-footnote span,
.faq-footnote a {
	font-size: 1rem;
	font-weight: 400;
}

.faq-footnote a {
	color: var(--gold);
	font-weight: 600;
	text-decoration: none;
}

.faq-list {
	display: grid;
	padding-top: 2.4rem;
}

.faq-item {
	border-top: 1px solid var(--line);
	display: grid;
	gap: 16px;
	padding: 32px 0;
}

.faq-item:first-child {
	border-top: 0;
	padding-top: 0;
}

.faq-question {
	align-items: center;
	cursor: pointer;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	list-style: none;
}

.faq-question::-webkit-details-marker {
	display: none;
}

.faq-question span:first-child {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.12;
}

.faq-question .faq-chevron {
	flex: 0 0 auto;
	border-bottom: 1.5px solid var(--muted);
	border-right: 1.5px solid var(--muted);
	height: 10px;
	transform: rotate(45deg);
	transition: transform 160ms ease;
	width: 10px;
}

.faq-item[open] .faq-chevron {
	transform: rotate(225deg);
}

.faq-answer {
	color: var(--muted);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.55;
	margin: 0;
}

.image-cta {
	background:
		linear-gradient(rgba(45, 41, 38, 0.35), rgba(45, 41, 38, 0.35)),
		url('photos/sell.jpg') center / cover;
	min-height: 640px;
	padding-bottom: 0;
	padding-top: 0;
	position: relative;
}

.image-cta .section-inner {
	display: grid;
	justify-content: end;
	min-height: inherit;
}

.cta-card {
	align-self: center;
	background: var(--dark);
	color: var(--paper);
	border-radius: 4px;
	box-shadow:
		0 1px 3px rgba(0, 0, 0, 0.08),
		0 12px 32px rgba(0, 0, 0, 0.14);
	max-width: 560px;
	padding: clamp(34px, 5vw, 56px);
}

.cta-card .eyebrow {
	margin-bottom: 22px;
}

.cta-card h2 {
	font-size: clamp(2.25rem, 2.8vw, 2.5rem);
	line-height: 1.1;
	max-width: 420px;
}

.cta-card p {
	color: var(--muted-dark);
	margin: 22px 0 28px;
	max-width: 420px;
}

.site-footer {
	background: var(--cream);
	color: var(--muted);
	padding: 28px var(--gutter);
}

.footer-inner {
	align-items: center;
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr auto 1fr;
	margin: 0 auto;
	max-width: var(--container);
}

.footer-nav {
	display: flex;
	font-size: 0.875rem;
	font-weight: 400;
	gap: 28px;
}

.copyright {
	font-size: 0.8125rem;
	font-weight: 400;
	justify-self: end;
}

.offer-page {
	background: var(--hero-bg);
	color: var(--paper);
}

.offer-page .site-header {
	padding: 28px var(--gutter);
}

.offer-page .header-inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.offer-page .nav {
	color: var(--paper);
}

.offer-page .nav .button {
	background: var(--cream);
	color: var(--ink);
}

.offer {
	background: var(--hero-bg);
	padding: 100px var(--gutter);
}

.offer-inner {
	display: grid;
	gap: clamp(42px, 7vw, 100px);
	grid-template-columns: 440px minmax(0, 740px);
	justify-content: space-between;
}

.offer-caption {
	color: var(--gold);
	font-size: 0.8125rem;
	font-weight: 400;
	letter-spacing: 0.154em;
	margin: 0 0 28px;
	text-transform: uppercase;
}

.offer-page .heading {
	font-size: clamp(3.4rem, 5vw, 3.875rem);
	line-height: 1.05;
}

.offer-copy {
	color: var(--muted-inverse);
	font-size: 1.0625rem;
	font-weight: 400;
	line-height: 1.55;
	margin: 28px 0 0;
}

.bullets {
	display: grid;
	gap: 16px;
	margin-top: 28px;
}

.bullet {
	align-items: center;
	color: var(--paper);
	display: flex;
	font-size: 0.9375rem;
	gap: 12px;
}

.bullet::before {
	align-items: center;
	background: var(--gold);
	border-radius: 999px;
	color: var(--paper);
	content: '✓';
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 0.875rem;
	height: 28px;
	justify-content: center;
	line-height: 1;
	width: 28px;
}

.form-card {
	background: #fcfaf4;
	border: 1px solid var(--line);
	border-radius: 16px;
	box-shadow:
		0 2px 8px rgba(0, 0, 0, 0.07),
		0 16px 40px rgba(0, 0, 0, 0.06);
	display: grid;
	gap: 20px;
	padding: 36px;
}

.field {
	display: grid;
	gap: 7px;
}

.field label {
	color: var(--muted);
	font-size: 0.875rem;
	font-weight: 600;
}

.field input,
.field select {
	appearance: none;
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: 10px;
	color: var(--ink);
	font: inherit;
	font-size: 1rem;
	min-height: 61px;
	padding: 0 18px;
	width: 100%;
}

.field select {
	background-image:
		linear-gradient(45deg, transparent 50%, var(--muted) 50%),
		linear-gradient(135deg, var(--muted) 50%, transparent 50%);
	background-position:
		calc(100% - 22px) 26px,
		calc(100% - 17px) 26px;
	background-repeat: no-repeat;
	background-size:
		5px 5px,
		5px 5px;
	padding-right: 36px;
}

.form-row {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
}

.form-card .button {
	background: var(--gold);
	border-radius: 10px;
	color: #fffaf0;
	min-height: 61px;
	width: 100%;
}

.thank-you {
	align-items: center;
	background: var(--hero-bg);
	display: flex;
	justify-content: center;
	min-height: calc(100svh - 104px);
	padding: 120px var(--gutter);
	text-align: center;
}

.thank-you-inner {
	display: grid;
	gap: 22px;
	justify-items: center;
	max-width: 640px;
}

.thank-you-inner .heading {
	margin: 0;
}

.thank-you-inner p:not(.eyebrow) {
	color: var(--muted-inverse);
	font-size: 1.0625rem;
	line-height: 1.6;
	margin: 0;
}

.thank-you-inner .button {
	margin-top: 12px;
}

@media (max-width: 840px) {
	.home-page .site-header {
		align-items: flex-start;
		gap: 24px;
		position: absolute;
	}

	.nav {
		gap: 16px;
	}

	.nav a:not(.button) {
		display: none;
	}

	.hero {
		min-height: 650px;
	}

	.step,
	.stats,
	.faq .section-inner,
	.footer-inner,
	.offer-inner {
		grid-template-columns: 1fr;
	}

	.step {
		gap: 14px;
	}

	.stat {
		padding-bottom: 16px;
	}

	.faq-left {
		gap: 24px;
	}

	.faq-list {
		padding-top: 0;
	}

	.faq-item {
		padding: 28px 0;
	}

	.image-cta .section-inner {
		justify-content: stretch;
	}

	.cta-card {
		align-self: end;
		max-width: none;
	}

	.footer-nav {
		flex-wrap: wrap;
		gap: 16px 24px;
	}

	.copyright {
		justify-self: start;
	}
}

@media (max-width: 620px) {
	.offer {
		padding: 64px 22px;
	}

	.offer-page .site-header {
		padding-left: 22px;
		padding-right: 22px;
	}

	.form-card {
		padding: 24px;
	}
}

@media (max-width: 520px) {
	.section {
		padding: 50px 22px;
	}

	.hero {
		min-height: 610px;
	}

	.hero-title {
		font-size: clamp(3.5rem, 18vw, 5rem);
	}
}

.doorway-page {
	background: var(--cream);
	color: var(--ink);
}

.doorway-container {
	margin: 0 auto;
	max-width: var(--container);
	width: 100%;
}

.doorway-header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	left: 0;
	margin: 0 auto;
	max-width: calc(var(--container) + (var(--gutter) * 2));
	padding: 40px var(--gutter);
	position: absolute;
	right: 0;
	top: 0;
	z-index: 5;
}

.doorway-hero {
	background: var(--hero-bg);
	color: var(--paper);
	min-height: 820px;
	padding: 140px var(--gutter) 80px;
}

.doorway-hero-grid {
	align-items: center;
	display: grid;
	gap: 64px;
	grid-template-columns: minmax(0, 540px) 460px;
	justify-content: space-between;
	min-height: 600px;
}

.doorway-hero-copy {
	display: grid;
	gap: 28px;
}

.eyebrow.has-dot::before {
	background: currentColor;
	border-radius: 999px;
	content: '';
	height: 7px;
	width: 7px;
}

.doorway-hero-copy .eyebrow {
	color: var(--gold-soft);
	margin: 0;
}

.doorway-hero h1 {
	color: var(--paper);
	font-size: clamp(3.75rem, 5vw, 3.875rem);
	line-height: 1.05;
	max-width: 540px;
}

.doorway-hero-copy p:not(.eyebrow) {
	color: var(--muted-dark);
	font-size: 1.125rem;
	line-height: 1.5;
	margin: 0;
	max-width: 540px;
}

.doorway-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.doorway-actions span {
	color: var(--muted-dark);
	font-size: 0.9375rem;
}

.doorway-arch {
	height: 600px;
	position: relative;
	width: min(460px, 100%);
}

.doorway-arch img {
	border-radius: 230px 230px 16px 16px;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.offer-chip {
	align-items: center;
	background: #1e1e1e;
	border-radius: 999px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
	color: var(--paper);
	display: flex;
	gap: 11px;
	padding: 8px 18px 8px 8px;
	position: absolute;
}

.chip-primary {
	right: 100px;
	top: 150px;
}

.chip-secondary {
	left: -16px;
	top: 262px;
}

.chip-icon {
	align-items: center;
	background: var(--gold);
	border-radius: 999px;
	display: inline-flex;
	font-weight: 700;
	height: 36px;
	justify-content: center;
	width: 36px;
}

.offer-chip small,
.offer-chip strong {
	display: block;
}

.offer-chip small {
	color: var(--muted-inverse);
	font-size: 0.6875rem;
	line-height: 1.2;
}

.offer-chip strong {
	font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 0.9375rem;
	line-height: 1.2;
}

.doorway-stats {
	align-items: center;
	background: var(--line);
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding: 52px var(--gutter);
}

.stat-tile {
	align-items: center;
	border-left: 1px solid #c6c0b1;
	display: grid;
	gap: 6px;
	justify-items: center;
	min-height: 69px;
	text-align: center;
}

.stat-tile:first-child {
	border-left: 0;
}

.stat-tile strong {
	font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 2.25rem;
	font-weight: 400;
	line-height: 1;
}

.stat-tile span {
	color: var(--muted);
	font-size: 0.8125rem;
}

.doorway-section {
	background: var(--cream);
	padding: 100px var(--gutter);
}

.section-heading {
	display: grid;
	gap: 14px;
	margin: 0 auto 56px;
}

.section-heading.centered {
	justify-items: center;
	text-align: center;
}

.section-kicker {
	color: var(--gold);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.154em;
	margin: 0;
	text-transform: uppercase;
}

.section-heading h2 {
	font-size: clamp(2.5rem, 3.5vw, 2.875rem);
	line-height: 1.15;
}

.difference-grid {
	align-items: center;
	display: grid;
	gap: 72px;
	grid-template-columns: 540px minmax(0, 1fr);
}

.difference-illustration {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 470px;
	padding: clamp(8px, 3vw, 28px);
	width: 100%;
}

.difference-illustration img {
	height: auto;
	max-height: 430px;
	width: min(100%, 500px);
}

.difference-list {
	display: grid;
	gap: 22px;
}

.difference-list p {
	display: grid;
	align-items: center;
	color: var(--ink);
	font-size: 1.0625rem;
	gap: 14px;
	grid-template-columns: 30px minmax(0, 1fr);
	line-height: 1.35;
	margin: 0;
}

.difference-list p > span:first-child {
	align-items: center;
	background: var(--gold);
	border-radius: 999px;
	color: var(--paper);
	display: flex;
	font-size: 0.875rem;
	height: 30px;
	justify-content: center;
	width: 30px;
}

.difference-copy {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: 0 6px;
}

.difference-copy strong {
	color: var(--ink);
	font-weight: 700;
}

.difference-copy span {
	color: var(--muted);
	font-weight: 400;
}

.doorway-process {
	text-align: center;
}

.timeline {
	display: grid;
	margin: 0 auto;
	max-width: 760px;
	text-align: left;
}

.timeline-step {
	display: grid;
	gap: 28px;
	grid-template-columns: 44px minmax(0, 1fr);
	min-height: 150px;
	position: relative;
}

.timeline-step::after {
	background: var(--ink);
	content: '';
	height: calc(100% - 44px);
	left: 21px;
	position: absolute;
	top: 44px;
	width: 1.5px;
}

.timeline-step:last-child {
	min-height: auto;
}

.timeline-step:last-child::after {
	display: none;
}

.timeline-number {
	align-items: center;
	border: 1.5px solid var(--ink);
	border-radius: 999px;
	display: inline-flex;
	font-size: 1rem;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.timeline-step h3 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.625rem;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin: 4px 0 10px;
}

.timeline-step p {
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.55;
	margin: 0;
}

.timeline-cta {
	margin-top: 56px;
}

.doorway-final-cta {
	align-items: center;
	background: var(--hero-bg);
	display: grid;
	gap: 26px;
	justify-items: center;
	padding: 120px var(--gutter);
	text-align: center;
}

.doorway-final-cta h2 {
	color: var(--paper);
	font-size: clamp(2.8rem, 4vw, 3.125rem);
	line-height: 1.1;
	max-width: 565px;
}

.doorway-final-cta p {
	color: var(--muted-inverse);
	font-size: 1.125rem;
	line-height: 1.55;
	margin: 0;
	max-width: 660px;
}

.doorway-actions.is-centered {
	justify-content: center;
	padding-top: 14px;
}

.button-outline {
	background: transparent;
	border: 1.5px solid var(--ink);
	color: var(--ink);
}

.doorway-faq .section-heading {
	margin-bottom: 44px;
}

.doorway-faq-list {
	margin: 0 auto;
	max-width: 820px;
	padding-top: 0;
}

.doorway-faq-list .faq-item {
	padding: 32px 0;
}

.doorway-faq-list .faq-item:first-child {
	border-top: 1px solid var(--line);
}

.doorway-faq-list .faq-question span:first-child {
	font-size: 1.5rem;
}

.centered-footnote {
	justify-content: center;
	margin-top: 44px;
}

.doorway-footer {
	align-items: center;
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	padding: 36px var(--gutter);
}

.doorway-footer .footer-logo {
	width: 62px;
}

@media (max-width: 960px) {
	.doorway-hero-grid,
	.difference-grid {
		grid-template-columns: 1fr;
	}

	.doorway-arch {
		justify-self: center;
	}

	.doorway-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 0;
	}

	.stat-tile:nth-child(odd) {
		border-left: 0;
	}
}

@media (max-width: 620px) {
	.doorway-header {
		padding: 28px 22px;
	}

	.doorway-hero {
		padding: 112px 22px 64px;
	}

	.doorway-hero h1 {
		font-size: clamp(3.2rem, 15vw, 4rem);
	}

	.doorway-arch {
		height: 480px;
	}

	.chip-primary {
		right: 28px;
	}

	.chip-secondary {
		left: 12px;
	}

	.doorway-stats {
		grid-template-columns: 1fr;
	}

	.stat-tile {
		border-left: 0;
		border-top: 1px solid #c6c0b1;
		padding-top: 24px;
	}

	.stat-tile:first-child {
		border-top: 0;
		padding-top: 0;
	}

	.doorway-section,
	.doorway-final-cta {
		padding-left: 22px;
		padding-right: 22px;
	}

	.difference-illustration {
		min-height: 280px;
		padding: 0;
	}

	.difference-illustration img {
		max-height: 280px;
	}

	.timeline-step {
		gap: 18px;
	}

	.doorway-footer {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
		padding-left: 22px;
		padding-right: 22px;
	}
}
