	:root {
	--bg: #fafafa;
	--surface: rgba(255, 255, 255, 0.68);
	--text: #111111;
	--muted: #666666;
	--line: rgba(17, 17, 17, 0.1);
	--line-strong: rgba(17, 17, 17, 0.16);
	--accent: #e74c3c;
	--accent-soft: rgba(231, 76, 60, 0.08);
	--radius: 8px;
	--content-width: 1200px;
	--aside-width: 56px;
	--page-gutter: 32px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

#top,
#results,
#work,
#about,
#stack-title,
#cta-title {
	scroll-margin-top: 140px;
}

body {
	margin: 0;
	min-width: 320px;
	background: var(--bg);
	color: var(--text);
	font-family: "Manrope", "Segoe UI", sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body :where(p, li, a, span, label) {
	color: var(--muted);
}

a {
	color: inherit;
	text-decoration: none;
}

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

.page-shell {
	position: relative;
	width: 100vw;
	overflow-x: clip;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	width: 100vw;
	margin-inline: calc(50% - 50vw);
	background: #fafafa;
	box-shadow: 0 0 0 rgba(17, 17, 17, 0);
	transition: box-shadow 180ms ease;
}

.site-header--scrolled {
	box-shadow: 0 14px 40px rgba(17, 17, 17, 0.06);
}

.site-header__inner {
	width: min(100% - (var(--page-gutter) * 2), var(--content-width));
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 78px;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.site-logo::before {
	content: "";
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(231, 76, 60, 0.92), rgba(231, 76, 60, 0.3));
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.site-nav a {
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.site-nav a:hover,
.site-nav a:focus-visible {
	color: var(--text);
}

.nav-burger {
	display: none;
	position: relative;
	z-index: 50;
	width: 46px;
	height: 46px;
	background: transparent;
	border-radius: 8px;
	cursor: pointer;
}

.nav-burger span {
	position: absolute;
	left: 12px;
	width: 20px;
	height: 1.5px;
	background: var(--text);
	border-radius: 999px;
	transform-origin: center;
	transition: transform 220ms ease, opacity 180ms ease, top 220ms ease;
}

.nav-burger span:nth-child(1) {
	top: 16px;
}

.nav-burger span:nth-child(2) {
	top: 22px;
}

.nav-burger span:nth-child(3) {
	top: 28px;
}

.nav-overlay {
	position: fixed;
	inset: 0;
	z-index: 35;
	background: rgba(17, 17, 17, 0.18);
	opacity: 0;
	pointer-events: none;
	transition: opacity 220ms ease;
}

body.is-nav-open {
	overflow: hidden;
}

.rail {
	position: fixed;
	inset-block: 0;
	left: 10px;
	z-index: 3;
	width: var(--aside-width);
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.rail__inner {
	display: grid;
	justify-items: center;
	gap: 22px;
	pointer-events: auto;
}

.rail__line {
	width: 1px;
	height: 108px;
	background: linear-gradient(
		180deg,
		rgba(231, 76, 60, 0),
		rgba(231, 76, 60, 0.32),
		rgba(17, 17, 17, 0.08)
	);
}

.rail__link,
.rail__keywords {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-size: 0.69rem;
	line-height: 1;
}

.rail__link {
	color: var(--text);
	font-weight: 700;
	position: relative;
	padding-right: 1.1em;
	transition: color 180ms ease;
}

.rail__link:hover,
.rail__link:focus-visible {
	color: var(--accent);
}

.rail__keywords {
	color: var(--muted);
	font-weight: 600;
}

.rail--inverted .rail__link {
	color: var(--muted);
}

.main {
	position: relative;
	z-index: 2;
	width: 100vw;
	margin-inline: auto;
	padding-block: 36px 120px;
	background: var(--bg);
}

.main__inner {
	width: min(100% - (var(--page-gutter) * 2), var(--content-width));
	margin-inline: auto;
}

.hero {
	min-height: calc(100vh - 72px);
	display: grid;
	align-items: center;
	padding-block: 0;
}

.hero > div {
	display: grid;
	justify-items: center;
	text-align: center;
}

.hero__scroll-hint {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	margin-top: 30px;
}

.hero__scroll-hint span {
	width: 16px;
	height: 16px;
	opacity: 0.15;
	animation: hintPulse 1.8s ease-in-out infinite;
}

.hero__scroll-hint span + span {
	margin-top: -5px;
}

.hero__scroll-hint span:nth-child(2) {
	animation-delay: 0.2s;
}

.hero__scroll-hint span:nth-child(3) {
	animation-delay: 0.4s;
}

.hero__scroll-hint svg {
	display: block;
	width: 100%;
	height: 100%;
}

@keyframes hintPulse {
	0%,
	100% {
		opacity: 0.16;
		transform: translateY(0);
	}
	50% {
		opacity: 1;
		transform: translateY(2px);
	}
}

.eyebrow,
.section-label {
	margin: 0 0 20px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero h1 {
	max-width: 15in;
	margin: 0;
	font-family: "Newsreader", Georgia, serif;
	font-size: clamp(3.5rem, 6.6vw, 5.3125rem);
	line-height: 0.96;
	letter-spacing: -0.06em;
	font-weight: 500;
}

.hero__copy {
	max-width: 60rem;
	margin: 28px 0 0;
	font-size: clamp(1.02rem, 1.8vw, 1.3rem);
	line-height: 1.75;
}

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 18px;
	margin-top: 34px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-top: 32px;
}

.hero__meta span {
	padding: 8px 0;
	font-size: 0.95rem;
	font-weight: 600;
}

.hero__meta span::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-right: 10px;
	border-radius: 50%;
	background: rgba(231, 76, 60, 0.52);
	vertical-align: middle;
}

section {
	padding-block: clamp(48px, 6vw, 82px);
}

.section-heading {
	display: grid;
	margin-bottom: 44px;
	gap: 18px;
}

.work-section .section-heading {
	margin-bottom: 70px;
}

.section-heading h2 {
	margin: 0;
	font-family: "Newsreader", Georgia, serif;
	font-size: clamp(2.2rem, 5vw, 4.5rem);
	line-height: 0.98;
	letter-spacing: -0.05em;
	font-weight: 500;
}

.section-heading p {
	margin: 0;
	font-size: clamp(1.02rem, 1.8vw, 1.3rem);
	line-height: 1.75;
}

.section-heading h2 + p,
.section-heading h1 + p,
.hero h1 + p,
.hero h2 + p {
	margin-top: 0;
	font-size: clamp(1.02rem, 1.8vw, 1.3rem);
	line-height: 1.75;
}

.mid-cta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: -8px;
	font-size: 1rem;
	flex-direction: column;
}

.mid-cta a {
	font-weight: 700;
}

.contact-band__secondary {
	color: rgba(250, 250, 250, 0.82);
	font-size: 0.95rem;
	line-height: 1.6;
}

.contact-band__secondary:hover,
.contact-band__secondary:focus-visible {
	color: #ffffff;
}

.results-section {
	display: grid;
	gap: 56px;
}

.results-intro {
	display: grid;
	grid-template-columns: minmax(50vw, 1fr) minmax(0, 1fr);
	gap: 40px;
	align-items: start;
}

.results-intro .section-heading {
	display: grid;
	gap: 18px;
	margin-bottom: 0;
}

.results-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 70px;
	align-items: end;
}

.metric {
	display: grid;
	align-content: end;
	gap: 14px;
	align-self: end;
	min-height: auto;
	padding: 20px;
	border-top: 1px solid var(--line-strong);
}

.metric__value {
	display: block;
	flex: 0 0 14rem;
	color: var(--text);
	font-size: clamp(2.4rem, 4vw, 3.75rem);
	line-height: 0.9;
	letter-spacing: -0.07em;
	font-weight: 800;
}

.metric p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.65;
}

.metric__note {
	display: block;
	margin: 0;
	font-style: italic;
}

.metric--featured {
	padding: 20px;
	border: 0;
	border-radius: var(--radius);
	min-height: 25rem;
	max-height: 25rem;
	background: #e74c3c;
}

.metric--featured .metric__value,
.metric--featured p {
	color: #fafafa;
}

.metric--featured p {
	color: rgba(250, 250, 250, 0.82);
}

.work-grid {
	display: grid;
	gap: 0;
	margin-top: 28px;
}

.case-study {
	position: relative;
	padding: 0;
	border-top: 1px solid var(--line-strong);
	transition: z-index 180ms ease;
}

.case-study:last-child {
	border-bottom: 1px solid var(--line-strong);
}

.case-study:hover,
.case-study:focus-within {
	z-index: 5;
}

.case-study__link {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: end;
	padding: 24px 20px;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.case-study__content {
	display: grid;
	gap: 12px;
}

.case-study h3 {
	margin: 0;
	font-family: "Newsreader", Georgia, serif;
	font-size: clamp(2rem, 3vw, 2.1875rem);
	line-height: 1.05;
	letter-spacing: -0.05em;
	font-weight: 500;
}

.case-study__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.96rem;
}

.case-study__summary {
	margin: 0;
	max-width: 44rem;
	font-size: 1rem;
	line-height: 1.7;
}

.case-study__arrow {
	color: var(--text);
	font-size: 1.7em;
	line-height: 1;
	width: 1em;
	height: 1em;
	flex: 0 0 auto;
	transition: color 180ms ease;
}

.case-study__arrow svg {
	display: block;
	width: 100%;
	height: 100%;
}

.case-study__arrow img,
.contact-band__arrow img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.case-study__link:hover .case-study__arrow,
.case-study__link:focus-visible .case-study__arrow {
	color: var(--accent);
}

.case-study:hover .case-study__link,
.case-study:focus-within .case-study__link {
	background: #e74c3c;
	color: #fafafa;
	transform: scale(1.01);
}

.case-study:hover h3,
.case-study:hover .case-study__cta,
.case-study:hover .case-study__summary,
.case-study:hover .case-study__arrow,
.case-study:focus-within h3,
.case-study:focus-within .case-study__cta,
.case-study:focus-within .case-study__summary,
.case-study:focus-within .case-study__arrow {
	color: #fafafa;
}

.case-study:hover .case-study__meta span,
.case-study:focus-within .case-study__meta span {
	border-color: rgba(250, 250, 250, 0.42);
	color: #fafafa;
}

.case-study__link--muted:hover .case-study__arrow,
.case-study__link--muted:focus-visible .case-study__arrow,
.case-study__link--muted:hover h3,
.case-study__link--muted:hover .case-study__cta,
.case-study__link--muted:hover .case-study__summary,
.case-study__link--muted:hover .case-study__arrow,
.case-study__link--muted:focus-within h3,
.case-study__link--muted:focus-within .case-study__cta,
.case-study__link--muted:focus-within .case-study__summary,
.case-study__link--muted:focus-within .case-study__arrow  {
	color: var(--text);
}

.case-study__link--muted:hover .case-study__meta span,
.case-study__link--muted:focus-within .case-study__meta span {
	border-color: var(--text);
	color: var(--text);
}

.case-study:hover .case-study__link--muted,
.case-study:focus-within .case-study__link--muted {
	background: #eeeeee;
}

.case-study__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}

.case-study__meta span {
	padding: 4px 12px;
	border: 1px solid rgba(231, 76, 60, 0.22);
	border-radius: 999px;
	color: rgba(231, 76, 60, 0.9);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

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

.stack-column {
	padding-top: 10px;
	border-top: 1px solid var(--line-strong);
}

.stack-column h3 {
	margin: 0 0 14px;
	font-size: 1rem;
	letter-spacing: -0.02em;
}

.stack-column ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.stack-column li {
	padding: 8px 0;
	font-size: 0.96rem;
	line-height: 1.55;
}

.about-layout {
	display: grid;
}

.about-layout .section-heading {
	display: grid;
	gap: 10px;
	width: min(70%, 720px);
}

.about-layout .section-heading p {
	margin: 0;
	font-size: clamp(1.02rem, 1.8vw, 1.3rem);
	line-height: 1.75;
}

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

.about-copy p,
.about-note p,
.about-column p,
.cta p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.7;
}

.about-copy p + p,
.about-column p + p {
	margin-top: 18px;
}

.about-copy,
.about-column {
	min-width: 0;
}

.about-column--tools {
	display: grid;
	gap: 18px;
	position: relative;
	padding-left: 34px;
}

.about-column--tools::before {
	content: "";
	position: absolute;
	left: 50px;
	top: 10px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--accent);
}

.about-column--tools::after {
	content: "";
	position: absolute;
	left: 54px;
	top: 10px;
	width: 1px;
	height: calc(100% - 1.45em);
	background: var(--accent);
}

.about-column__tools {
	padding-left: 40px;
}

.about-column__highlight {
	padding: 20px;
	border-radius: var(--radius);
	background: var(--accent);
	color: #fafafa;
}

.about-column__highlight,
.about-column__highlight * {
	color: #fafafa;
}

.tools-list {
	margin: 0;
	padding: 10px 20px 20px;
}

.tools-list li {
	line-height: 1.6;
}

.cta {
	padding-block-end: 0;
}

.cta__panel {
	display: grid;
	gap: 22px;
	max-width: 52rem;
}

.cta h2 {
	margin: 0;
	font-family: "Newsreader", Georgia, serif;
	font-size: clamp(2.4rem, 5vw, 4.8rem);
	line-height: 0.98;
	letter-spacing: -0.05em;
	font-weight: 500;
}

.cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	padding-top: 8px;
}

.cta__button,
.cta__secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 16px 30px;
	border-radius: var(--radius);
	border: 1px solid transparent;
	font-size: 0.95rem;
	font-weight: 700;
	transform: translateY(0);
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		color 160ms ease,
		transform 160ms ease;
}

.cta__button {
	background: var(--text);
	color: #fafafa;
}

.cta__button:hover,
.cta__button:focus-visible {
	background: #e74c3c;
	transform: translateY(-4px);
}

.cta__secondary {
	border-color: var(--line-strong);
	color: var(--text);
	background: transparent;
}

.cta__secondary:hover,
.cta__secondary:focus-visible {
	border-color: rgba(231, 76, 60, 0.34);
	background: var(--accent-soft);
	transform: translateY(-4px);
}

a:focus-visible {
	outline: 2px solid rgba(231, 76, 60, 0.48);
	outline-offset: 3px;
}

.site-footer {
	width: 100vw;
	margin-top: 0;
	margin-inline: calc(50% - 50vw);
	background: #111111;
	color: rgba(250, 250, 250, 0.82);
}

.site-footer__inner {
	width: min(100% - (var(--page-gutter) * 2), var(--content-width));
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 24px 0 28px;
}

.site-footer p,
.site-footer a {
	margin: 0;
	color: #fafafa;
	font-size: 0.9rem;
	line-height: 1.6;
}

.site-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.site-footer a {
	color: rgba(250, 250, 250, 0.9);
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: #ffffff;
}

.closing-panel {
	position: sticky;
	bottom: 0;
	z-index: 0;
	width: 100vw;
	margin-top: 0;
	background: #111111;
	color: #fafafa;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.contact {
	position: relative;
	display: block;
	width: 100%;
	height: 1px;
	scroll-margin-top: 0;
}

.contact-band {
	position: relative;
	z-index: 1;
	min-height: calc(100vh - 88px);
	display: flex;
	align-items: center;
	padding: 96px 0 72px;
	scroll-margin-top: 0;
}

.contact-band__inner {
	width: min(100% - (var(--page-gutter) * 2), var(--content-width));
	margin-inline: auto;
	display: grid;
	gap: 28px;
}

.contact-band .section-label {
	color: #fafafa;
}

.contact-band__intro {
	max-width: 40rem;
	margin: 0;
	color: #fafafa;
	font-size: 1rem;
	line-height: 1.85;
}

.contact-band__cta {
	display: grid;
	grid-template-columns: minmax(0, 0.7fr) auto;
	align-items: end;
	gap: 24px;
	padding-top: 12px;
}

.contact-band__link {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 20px;
	color: #fafafa;
}

.contact-band__text {
	margin: 0;
	font-family: "Newsreader", Georgia, serif;
	font-size: clamp(3rem, 13vw, 7rem);
	letter-spacing: -0.06em;
	font-weight: 500;
	color: #fafafa;
	transition: color 180ms ease;
}

.contact-band__arrow {
	transform: translateY(-8px);
	color: #fafafa;
}

.i__arrow_up_right {
	width: 44px;
	height: 54px;
	fill: #fafafa;
	transition: color 180ms ease;
}
.contact-band__link:hover .i__arrow_up_right {
	fill: rgba(231, 76, 60, 0.92);
}

.contact-band__link:hover .contact-band__text,
.contact-band__link:focus-visible .contact-band__text,
.contact-band__link:hover .contact-band__arrow,
.contact-band__link:focus-visible .contact-band__arrow {
	color: rgba(231, 76, 60, 0.92);
}

.contact-band__link:hover .contact-band__text,
.contact-band__link:focus-visible .contact-band__text {
	color: rgba(231, 76, 60, 0.92);
}

.bib-timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

.bib-timeline::before {
	content: "";
	position: absolute;
	top: 28px;
	left: 0;
	width: 75%;
	height: 1px;
	background: var(--line-strong);
	z-index: 0;
}

.bib-step {
	position: relative;
	display: grid;
	align-content: start;
	gap: 20px;
	padding-right: 32px;
}

.bib-step:last-child {
	padding-right: 0;
}

.bib-step__marker {
	position: relative;
	z-index: 1;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 1px solid var(--line-strong);
	background: var(--bg);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--muted);
	transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.bib-step:last-child .bib-step__marker {
	background: var(--accent);
	border-color: var(--accent);
	color: #fafafa;
}

.bib-step__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--text);
	line-height: 1.3;
}

.bib-step:last-child .bib-step__title {
	color: var(--accent);
}

.bib-step__body {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--muted);
}

.bib-footer {
	margin-top: 56px;
	padding-top: 28px;
	border-top: 1px solid var(--line);
	max-width: 640px;
	font-size: 1rem;
	line-height: 1.75;
	color: var(--muted);
}

.bib-footer strong {
	color: var(--text);
	font-weight: 700;
}

@media (max-width: 1330px) {
	.rail {
		display: none;
	}
}

@media (max-width: 1100px) {
	:root {
		--page-gutter: 20px;
	}

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

	.results-intro {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.results-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.metric {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 12px;
		padding: 20px;
	}

	.metric__value {
		align-self: start;
	}

	.metric p {
		align-self: start;
	}

	.metric--featured {
		min-height: auto;
		max-height: none;
	}

	.metric--featured .metric__note {
		grid-column: 2;
	}
}

@media (max-width: 820px) {
	:root {
		--page-gutter: 20px;
	}

	.site-header__inner {
		min-height: 72px;
	}

	.site-header {
		z-index: 80;
	}

	.nav-burger {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border: 0;
		border-radius: 0;
		z-index: 90;
	}

	.site-nav {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 90;
		width: min(75vw, 360px);
		height: 100dvh;
		padding: 96px 24px 32px;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 18px;
		background: rgba(250, 250, 250, 0.97);
		border-left: 1px solid var(--line);
		transform: translateX(100%);
		transition: transform 260ms ease;
	}

	.site-nav a {
		color: var(--text);
		font-size: 1.05rem;
	}

	.page-shell.is-nav-open .nav-overlay {
		z-index: 70;
		opacity: 1;
		pointer-events: auto;
	}

	.page-shell.is-nav-open .site-nav {
		transform: translateX(0);
	}

	.page-shell.is-nav-open .nav-burger span:nth-child(1) {
		top: 22px;
		transform: rotate(45deg);
	}

	.page-shell.is-nav-open .nav-burger span:nth-child(2) {
		opacity: 0;
	}

	.page-shell.is-nav-open .nav-burger span:nth-child(3) {
		top: 22px;
		transform: rotate(-45deg);
	}

	.main {
		padding-block: 24px 70px;
	}

	.hero {
		min-height: auto;
		padding-block: 30px 24px;
	}

	.results-grid,
	.stack-grid,
	.about-grid {
		grid-template-columns: 1fr;
	}

	.case-study__link {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.case-study h3 {
		font-size: 24px;
	}

	section {
		padding-block: 32px 52px;
	}

	.contact-band {
		min-height: auto;
		padding: 140px 0;
	}

	.contact-band__cta,
	.contact-band__link {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: end;
	}

	.contact-band__text,
	.contact-band__arrow {
		align-self: end;
	}

	.i__arrow_up_right {
		width: 35px;
  		height: 40px;
	}

	.about-column--tools {
		padding-left: 0;
	}

	.about-column--tools::before {
		left: 14px;
	}

	.about-column--tools::after {
		left: 18px;
	}

	.about-columns {
		display: flex;
		flex-direction: column;
	}

	.bib-timeline {
		grid-template-columns: 1fr 1fr;
		gap: 40px 24px;
	}

	.bib-timeline::before {
		display: none;
	}

	.bib-step {
		padding-right: 0;
	}
}

@media (max-width: 540px) {
	:root {
		--page-gutter: 20px;
	}

	.hero__meta {
		gap: 8px 14px;
	}

	.cta__actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.about-columns {
		grid-template-columns: 1fr;
	}

	.site-footer__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.bib-timeline {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}