@font-face {
	font-family: "Bebas Neue Cyrillic";
	src: url("../fonts/BebasNeueCyrillic.ttf") format("truetype");
	font-display: swap;
	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Variable.ttf") format("truetype");
	font-display: swap;
	font-style: normal;
	font-weight: 100 900;
}

@font-face {
	font-family: "Manrope";
	src: url("../fonts/Manrope-Variable.ttf") format("truetype");
	font-display: swap;
	font-style: normal;
	font-weight: 200 800;
}

:root {
	--ink: #383838;
	--charcoal: #232323;
	--paper: #efefef;
	--mist: #e3e3e3;
	--card: #f6f6f6;
	--gold: #baa05d;
	--gold-dark: #9f8545;
	--white: #fff;
	--line: rgba(56, 56, 56, 0.25);
	--display: "Bebas Neue Cyrillic", "Arial Narrow", Impact, sans-serif;
	--body: "Inter", Arial, sans-serif;
	--hero-body: "Manrope", "Inter", Arial, sans-serif;
	--radius: 12px;
	--shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	max-width: 100%;
	overflow-x: clip;
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body {
	background: var(--paper);
	color: var(--ink);
	font-family: var(--body);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	margin: 0;
	max-width: 100%;
	overflow-x: clip;
}

body.menu-is-open,
body.dialog-is-open {
	overflow: hidden;
}

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

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

button,
input,
select,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

button {
	cursor: pointer;
}

h1,
h2,
h3,
p,
blockquote {
	margin-top: 0;
}

h1,
h2,
h3 {
	font-family: var(--display);
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 0.98;
	text-transform: uppercase;
}

h1 {
	font-size: clamp(3.25rem, 6.25vw, 5.625rem);
	margin-bottom: 30px;
}

h2 {
	font-size: clamp(3.25rem, 4.861vw, 4.375rem);
	margin-bottom: 52px;
}

h3 {
	font-size: 2rem;
	margin-bottom: 12px;
}

p {
	margin-bottom: 1.25em;
}

.shell {
	margin-inline: auto;
	max-width: 1440px;
	padding-inline: 40px;
	width: 100%;
}

.section {
	padding-block: 105px;
	position: relative;
}

.section--paper {
	background: var(--paper);
}

.section--mist {
	background: var(--mist);
}

.centered {
	text-align: center;
}

.sr-only {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.skip-link {
	background: var(--white);
	color: var(--ink);
	left: 12px;
	padding: 12px 18px;
	position: fixed;
	top: -100px;
	z-index: 1000;
}

.skip-link:focus {
	top: 12px;
}

:focus-visible {
	outline: 3px solid #f3c852;
	outline-offset: 3px;
}

.button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 8px;
	display: inline-flex;
	font-size: 16px;
	font-weight: 500;
	justify-content: center;
	min-height: 54px;
	padding: 14px 28px;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button--highlight {
	--button-highlight: rgba(186, 160, 93, 0.9);
	outline: 1px solid transparent;
	outline-offset: 0;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, outline-color 180ms ease, outline-offset 180ms ease, transform 180ms ease;
}

.button--highlight:hover,
.button--highlight:focus-visible {
	outline-color: var(--button-highlight);
	outline-offset: 3px;
}

.button--light.button--highlight {
	--button-highlight: rgba(56, 56, 56, 0.82);
}

.button--glass.button--highlight {
	--button-highlight: rgba(255, 255, 255, 0.88);
}

.button--outline-dark.button--highlight {
	--button-highlight: rgba(56, 56, 56, 0.78);
}

.button--gold {
	background: var(--gold);
	color: var(--white);
}

.button--gold:hover {
	background: var(--gold-dark);
}

.button--light {
	background: var(--white);
	color: var(--ink);
}

.button--glass {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.7);
	color: var(--white);
}

.button--outline {
	border-color: rgba(255, 255, 255, 0.72);
	color: var(--white);
	min-height: 42px;
}

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

.site-header {
	color: var(--white);
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 20;
}

.site-header__inner {
	align-items: center;
	display: grid;
	grid-template-columns: 170px 1fr auto auto;
	gap: 28px;
	height: 112px;
}

.brand {
	align-self: start;
	width: 118px;
}

.brand img {
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.28));
	width: 118px;
}

.desktop-nav {
	display: flex;
	gap: clamp(16px, 2vw, 36px);
	justify-content: flex-start;
}

.desktop-nav a,
.footer-nav a {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.desktop-nav a {
	border-bottom: 1px solid transparent;
	padding-block: 12px;
}

.desktop-nav a:hover {
	border-bottom-color: var(--white);
}

.header-contact {
	display: grid;
	gap: 1px;
	white-space: nowrap;
}

.header-contact__phone {
	font-family: var(--display);
	font-size: 25px;
}

.header-contact span {
	font-family: var(--hero-body);
	font-size: 12px;
	font-weight: 500;
}

.header-callback {
	font-size: 12px;
}

.menu-toggle,
.mobile-phone,
.mobile-menu {
	display: none;
}

.hero {
	background: #121212 var(--hero-image) center/cover no-repeat;
	color: var(--white);
	isolation: isolate;
	min-height: 770px;
	position: relative;
}

.hero__shade {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 48%, rgba(0, 0, 0, 0.28) 100%);
	inset: 0;
	position: absolute;
	z-index: -1;
}

.hero__inner {
	align-items: flex-end;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	min-height: 770px;
	padding-bottom: 62px;
	padding-top: 150px;
}

.hero__content {
	align-self: center;
	max-width: 730px;
	transform: translateY(-15px);
}

.hero__content .eyebrow {
	color: rgba(255, 255, 255, 0.74);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.11em;
	margin-bottom: 20px;
	text-transform: uppercase;
	display: none;
}

.hero__nowrap {
	white-space: nowrap;
}

.hero__lead {
	font-family: var(--hero-body);
	font-size: 16px;
	font-weight: 500;
	max-width: 660px;
}

.hero__actions {
	display: flex;
	gap: 16px;
	margin-top: 44px;
}

.hero__actions .button {
	min-width: 210px;
}

.hero-stats {
	align-items: center;
	backdrop-filter: blur(8px);
	background: rgba(65, 65, 65, 0.72);
	border-radius: var(--radius);
	display: grid;
	gap: 28px;
	grid-template-columns: 86px repeat(3, minmax(78px, 1fr));
	margin-bottom: -20px;
	min-height: 142px;
	padding: 28px 30px;
	width: 602px;
}

.hero-stats div {
	align-items: center;
	display: flex;
	flex-direction: column;
}

.hero-stats__orb {
	aspect-ratio: 1;
	border-radius: 50%;
	height: 86px;
	object-fit: cover;
	width: 86px;
}

.hero-stats strong,
.benefits__numbers strong {
	font-family: var(--display);
	font-size: 58px;
	font-weight: 400;
	line-height: 1;
}

.hero-stats span,
.benefits__numbers span {
	font-size: 13px;
}

.hero-stats span {
	font-family: var(--hero-body);
	font-size: 16px;
	font-weight: 500;
}

.estimate {
	min-height: 585px;
}

.estimate h2 {
	margin-bottom: 44px;
}

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

.estimate__media {
	border-radius: var(--radius);
	min-height: 385px;
	overflow: hidden;
	position: relative;
}

.estimate__media::after {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 50%);
	content: "";
	inset: 0;
	position: absolute;
}

.estimate__media > img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.estimate__media > strong {
	color: var(--white);
	font-family: var(--display);
	font-size: 42px;
	left: 26px;
	position: absolute;
	text-transform: uppercase;
	top: 24px;
	z-index: 1;
}

.estimate__tags {
	display: flex;
	gap: 2px;
	left: 26px;
	position: absolute;
	top: 78px;
	z-index: 1;
}

.estimate__tags span {
	background: rgba(61, 61, 61, 0.78);
	border-radius: 4px;
	color: var(--white);
	font-size: 12px;
	padding: 7px 22px;
}

.estimate-form {
	background: #e4e4e4;
	border-radius: var(--radius);
	display: flex;
	flex-direction: column;
	gap: 26px;
	justify-content: center;
	padding: 30px;
}

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

label {
	display: grid;
	font-size: 12px;
	font-weight: 600;
	gap: 8px;
}

input,
select,
textarea {
	background: transparent;
	border: 1px solid rgba(56, 56, 56, 0.42);
	border-radius: 10px;
	color: inherit;
	min-height: 55px;
	padding: 14px 16px;
	width: 100%;
}

textarea {
	resize: vertical;
}

.field--phone {
	display: block;
	position: relative;
}

.field--phone::before {
	background: linear-gradient(#fff 0 33.333%, #1156c8 33.333% 66.666%, #ef3131 66.666%);
	border-radius: 50%;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
	content: "";
	height: 30px;
	left: 14px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	z-index: 1;
}

.field--phone input {
	padding-left: 55px;
}

.field--phone-dark::before {
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.range-label input {
	accent-color: var(--ink);
	min-height: auto;
	padding: 0;
}

.range-values {
	display: flex;
	font-size: 12px;
	font-weight: 500;
	justify-content: space-between;
}

.estimate-form__total {
	font-family: var(--display);
	font-size: 30px;
	text-transform: uppercase;
}

.estimate-form .button {
	width: 100%;
}

.form-status {
	font-size: 12px;
	margin: -12px 0 0;
	min-height: 17px;
}

.benefits {
	min-height: 683px;
	padding-block: 0 150px;
}

.benefits__intro {
	align-items: start;
	display: grid;
	gap: 96px;
	grid-template-columns: minmax(0, 690px) minmax(0, 1fr);
	margin-bottom: 59px;
}

.benefits__intro h2 {
	font-size: 70px;
	margin-bottom: 24px;
}

.benefits__intro p {
	max-width: 750px;
}

.benefits__numbers {
	align-items: center;
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 9px;
	padding: 0;
}

.benefits__numbers div {
	align-items: center;
	display: flex;
	flex-direction: column;
	position: relative;
}

.benefits__numbers div::before,
.benefits__numbers div::after {
	color: var(--gold);
	content: "〈";
	font-size: 70px;
	position: absolute;
	top: -4px;
}

.benefits__numbers div::before {
	left: 0;
}

.benefits__numbers div::after {
	content: "〉";
	right: 0;
}

.benefit-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(4, 1fr);
}

.benefit-card {
	background: #e4e4e4;
	border-radius: var(--radius);
	min-height: 270px;
	overflow: hidden;
	padding: 25px;
	position: relative;
}

.benefit-card h3 {
	font-size: 30px;
	max-width: 85%;
	position: relative;
	z-index: 1;
}

.benefit-card p {
	font-size: 14px;
	max-width: 213px;
	position: relative;
	z-index: 1;
}

.benefit-card img {
	bottom: -13px;
	height: 167px;
	object-fit: contain;
	object-position: right bottom;
	position: absolute;
	right: -13px;
	width: 167px;
}

.benefit-card:nth-child(1) img {
	bottom: -37px;
	height: 198px;
	right: -108px;
	width: 296px;
}

.benefit-card:nth-child(2) img {
	bottom: 0;
	height: 201px;
	right: 0;
	width: 159px;
}

.benefit-card:nth-child(3) img {
	bottom: -127px;
	height: 305px;
	right: -97px;
	width: 321px;
}

.services {
	padding-block: 0 150px;
}

.services > .shell > h2 {
	font-size: 70px;
	margin-bottom: 49px;
}

.tabs {
	background: var(--white);
	border-radius: 9px;
	display: grid;
	gap: 4px;
	margin: 0 auto 65px;
	max-width: 930px;
	overflow: hidden;
	padding: 4px;
}

.service-tabs {
	background: #d7d7d7;
	box-shadow: 0 0 0 4px #d7d7d7;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 45px;
	position: relative;
	--active-tab: 0;
}

.service-tabs::before {
	background:
		linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 34%),
		linear-gradient(135deg, #424242, #303030);
	border-radius: 7px;
	box-shadow: 0 8px 22px rgba(35, 35, 35, 0.2);
	content: "";
	inset: 4px auto 4px 4px;
	position: absolute;
	transform: translate3d(calc(var(--active-tab) * (100% + 4px)), 0, 0);
	transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 480ms ease;
	will-change: transform;
	width: calc((100% - 16px) / 3);
	z-index: 0;
}

.review-tabs {
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 41px;
	max-width: 615px;
}

.tabs button {
	background: #d2d2d2;
	border: 0;
	border-radius: 7px;
	color: var(--ink);
	font-weight: 600;
	min-height: 52px;
	position: relative;
	transition: color 260ms ease, text-shadow 260ms ease;
	z-index: 1;
}

.tabs button.is-active {
	background: var(--ink);
	color: var(--white);
}

.service-tabs button.is-active {
	background: transparent;
	text-shadow: 0 1px 12px rgba(255, 255, 255, 0.16);
}

.service-tabs button {
	background: transparent;
	box-shadow: none;
}

.service-grid {
	contain: inline-size layout paint;
	overflow: hidden;
}

.service-track {
	display: grid;
	gap: 40px 20px;
	grid-template-columns: repeat(3, 1fr);
}

.service-card {
	background: var(--card);
	border-radius: var(--radius);
	display: flex;
	flex-direction: column;
	height: 458px;
	overflow: hidden;
	position: relative;
}

.service-card > img:not(.service-card__logo) {
	aspect-ratio: 2.05 / 1;
	object-fit: cover;
	transition: filter 550ms ease, transform 550ms cubic-bezier(0.2, 0.72, 0.2, 1);
	width: 100%;
}

.service-card:not(.service-card--contact)::after {
	background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.2) 48%, transparent 66%);
	content: "";
	height: 209px;
	left: -70%;
	pointer-events: none;
	position: absolute;
	top: 0;
	transform: skewX(-12deg);
	transition: left 650ms ease;
	width: 48%;
}

.service-card:not(.service-card--contact):hover > img {
	filter: saturate(1.08) contrast(1.03);
	transform: scale(1.045);
}

.service-card:not(.service-card--contact):hover::after {
	left: 130%;
}

.service-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 16px 20px 18px;
}

.service-card h3 {
	font-size: 30px;
}

.service-card p {
	font-size: 14px;
}

.service-card__body > strong {
	font-family: var(--display);
	font-size: 30px;
	margin-top: auto;
	text-transform: uppercase;
}

.service-card__actions {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr 1fr;
	margin-top: 14px;
}

.service-card__actions .button {
	min-height: 46px;
	padding-inline: 10px;
}

.service-card--contact {
	align-items: center;
	background: var(--ink);
	color: var(--white);
	justify-content: center;
	padding: 30px;
	text-align: center;
}

.service-card--contact .service-card__logo {
	height: auto;
	margin: 8px auto 18px;
	width: 190px;
}

.service-card--contact form {
	display: grid;
	gap: 12px;
	margin-top: 10px;
	width: 100%;
}

.service-card--contact input {
	border-color: rgba(255, 255, 255, 0.35);
	color: var(--white);
}

.carousel-controls {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: center;
	margin-top: 34px;
}

.carousel-controls button {
	background: transparent;
	border: 1px solid var(--gold);
	border-radius: 50%;
	color: var(--gold-dark);
	height: 44px;
	width: 44px;
}

.mobile-only {
	display: none;
}

.company {
	padding-block: 0 75px;
}

.company__grid {
	display: grid;
	grid-template-columns: minmax(0, 690px) minmax(0, 555px);
	justify-content: space-between;
	min-height: 712px;
}

.company__copy h2 {
	font-size: 70px;
	margin-bottom: 48px;
}

.company__copy > p {
	line-height: 1.4;
	max-width: 682px;
}

.company__note {
	align-items: center;
	background: rgba(255, 255, 255, 0.65);
	border-radius: var(--radius);
	display: grid;
	gap: 30px;
	grid-template-columns: 225px 1fr;
	margin-top: 160px;
	max-width: 670px;
	min-height: 191px;
	padding: 5px;
}

.company__note img {
	aspect-ratio: 225 / 181;
	border-radius: 8px;
	height: 100%;
	object-fit: cover;
}

.company__note p {
	font-size: 16px;
	margin: 0;
	padding-right: 18px;
}

.company__visual {
	align-self: stretch;
	display: flex;
	flex-direction: column;
}

.company__visual > img {
	border-radius: var(--radius);
	height: 516px;
	object-fit: cover;
	width: 555px;
}

.chips {
	display: grid;
	gap: 10px 8px;
	grid-template-columns: 205px 123px 173px;
	margin: 19px 0 55px;
	width: 517px;
}

.chips span:nth-child(1) {
	grid-column: 1 / 3;
}

.chips span:nth-child(2) {
	grid-column: 3;
}

.chips span:nth-child(3) {
	grid-column: 1;
}

.chips span:nth-child(4) {
	grid-column: 2 / 4;
	justify-self: start;
	width: 259px;
}

.chips span {
	align-items: center;
	backface-visibility: hidden;
	background: var(--white);
	border-radius: 999px;
	contain: paint;
	display: flex;
	font-size: 16px;
	min-height: 50px;
	padding: 10px 18px;
	transform: translateZ(0);
	white-space: nowrap;
}

.chips span::before {
	color: var(--gold);
	content: "♥";
	font-size: 27px;
	line-height: 1;
	margin-right: 10px;
}

.founder {
	background: var(--ink);
	color: var(--white);
	padding-block: 50px 78px;
}

.founder__grid {
	display: grid;
	gap: 76px;
	grid-template-columns: 543px minmax(0, 1fr);
}

.founder__portrait {
	background: #2d2d2d var(--founder-bg) center/cover no-repeat;
	border-radius: var(--radius);
	height: 521px;
	overflow: hidden;
}

.founder__portrait img {
	height: 503px;
	margin: 18px auto 0;
	object-fit: contain;
	object-position: center top;
	width: 451px;
}

.founder__copy {
	min-height: 521px;
	position: relative;
	z-index: 0;
}

.founder__copy::before,
.founder__copy::after {
	background: url("../images/founder-quote-bg.webp") center/cover no-repeat;
	border-radius: 7px;
	content: "";
	height: 215px;
	position: absolute;
	width: 369px;
	z-index: -1;
}

.founder__copy::before {
	left: 257px;
	opacity: 0.32;
	top: 256px;
}

.founder__copy::after {
	left: 418px;
	opacity: 0.11;
	top: 150px;
}

.founder__copy h2 {
	font-size: 70px;
	margin: 10px 0 30px;
}

.founder__copy > p {
	line-height: 1.4;
	max-width: 578px;
}


.founder__copy blockquote {
	background: rgba(74, 74, 74, 0.92);
	border-radius: var(--radius);
	font-size: 16px;
	font-style: italic;
	margin: 145px 0 0;
	max-width: 524px;
	min-height: 201px;
	padding: 38px 26px 26px;
	position: relative;
}

.founder__copy blockquote::before {
	color: var(--gold);
	content: "”";
	font-family: Georgia, serif;
	font-size: 68px;
	font-style: normal;
	left: 24px;
	line-height: 0.5;
	position: absolute;
	top: 15px;
}

.founder__copy blockquote p {
	margin: 0;
}

.founder__copy blockquote strong {
	display: block;
	font-family: var(--display);
	font-size: 28px;
	font-style: normal;
	margin-top: 18px;
	text-align: right;
	text-transform: uppercase;
}

.callback-panel {
	background: var(--charcoal);
	border-radius: var(--radius);
	display: grid;
	gap: 45px;
	grid-template-columns: 515px minmax(0, 649px);
	justify-content: space-between;
	margin-top: 22px;
	min-height: 308px;
	padding: 54px 60px;
}

.callback-panel h2 {
	font-size: 55px;
	margin-bottom: 18px;
}

.callback-panel p {
	font-size: 14px;
}

.callback-panel form {
	display: grid;
	gap: 12px;
}

.callback-panel input,
.callback-panel textarea {
	border-color: rgba(255, 255, 255, 0.35);
	color: var(--white);
}

.projects {
	padding-bottom: 0;
}

.project-carousel {
	contain: inline-size layout paint;
	margin-inline: auto;
	max-width: 1440px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.project-track {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
	background: #111 var(--project-image) center/cover no-repeat;
	color: var(--white);
	min-height: 623px;
	position: relative;
}

.project-card__shade {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent 48%, rgba(0, 0, 0, 0.35));
	inset: 0;
	position: absolute;
}

.project-card__content {
	display: flex;
	flex-direction: column;
	inset: 0;
	padding: 35px 30px 25px;
	position: absolute;
}

.project-card h3 {
	font-size: 40px;
}

.project-card__meta {
	border-bottom: 1px solid rgba(255, 255, 255, 0.65);
	border-top: 1px solid rgba(255, 255, 255, 0.65);
	display: flex;
	font-family: var(--display);
	font-size: 30px;
	justify-content: space-between;
	margin-top: 24px;
	padding-block: 14px;
	text-transform: uppercase;
}

.project-card__content > strong {
	font-family: var(--display);
	font-size: 80px;
	font-weight: 400;
	line-height: 1;
	margin-top: auto;
	opacity: 0.53;
	text-align: right;
	text-transform: uppercase;
}

.project-controls {
	display: none;
}

.pricing {
	padding-block: 135px;
}

.price-table-wrap {
	overflow-x: auto;
}

.price-table {
	border-collapse: collapse;
	min-width: 800px;
	width: 100%;
}

.price-table th,
.price-table td {
	border: 1px solid #888;
	padding: 18px;
	text-align: center;
}

.price-table thead th {
	background: var(--ink);
	color: var(--white);
	font-family: var(--display);
	font-size: 28px;
	font-weight: 400;
	text-transform: uppercase;
}

.price-table tbody th {
	font-size: 16px;
	font-weight: 500;
}

.price-table td strong {
	display: block;
	font-family: var(--display);
	font-size: 32px;
	font-weight: 400;
}

.price-table td span {
	display: block;
	font-size: 13px;
}

.price-cards-mobile {
	display: none;
}

.system {
	padding-block: 11px 0;
}

.system__intro {
	display: block;
	margin-bottom: 48px;
}

.system__intro > img {
	border-radius: var(--radius);
	display: none;
	max-height: 420px;
	object-fit: cover;
	width: 100%;
}

.system__intro h2 {
	font-size: 70px;
	margin-bottom: 24px;
	text-align: center;
}

.system__intro p {
	margin-inline: auto;
	max-width: 760px;
	text-align: center;
}

.system-grid {
	display: grid;
	gap: 23px;
	grid-template-columns: repeat(3, 1fr);
}

.system-card {
	background: #393939;
	border-radius: var(--radius);
	color: var(--white);
	height: 474px;
	overflow: hidden;
	padding: 30px 28px 0;
	text-align: center;
}

.system-card h3 {
	font-size: 42px;
	margin-inline: auto;
	max-width: 290px;
}

.system-card p {
	font-size: 14px;
	min-height: 84px;
}

.system-card img {
	height: 259px;
	margin: 7px auto 0;
	object-fit: fill;
	width: 276px;
}

.process {
	padding-block: 125px;
}

.process-grid {
	display: grid;
	column-gap: 120px;
	grid-auto-rows: 158px;
	grid-template-columns: repeat(3, 398px);
	row-gap: 65px;
	list-style: none;
	margin: 0;
	overflow: hidden;
	padding: 0 0 20px;
}

.process-grid li {
	display: block;
	height: 158px;
	position: relative;
}

.process-grid li::after {
	background: var(--gold);
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	right: -120px;
	top: 31px;
	z-index: 0;
}

.process h2 {
	font-size: 70px;
	margin-bottom: 29px;
}

.process-grid li > span {
	align-items: center;
	background: var(--gold);
	border-radius: 50%;
	color: var(--white);
	display: flex;
	font-family: var(--display);
	font-size: 40px;
	font-weight: 400;
	height: 63px;
	justify-content: center;
	position: relative;
	width: 63px;
	z-index: 1;
}

.process-grid h3 {
	font-size: 30px;
	margin: 29px 0 7px;
}

.process-grid p {
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: 0;
	max-width: 419px;
}

.media {
	padding-block: 132px 3px;
}

.reviews {
	padding-block: 154px 4px;
}

.media h2,
.reviews h2 {
	font-size: 70px;
}

.reviews h2 {
	margin-bottom: 27px;
}

.section-heading p {
	margin: -34px auto 53px;
	max-width: 620px;
}

.video-carousel {
	contain: inline-size layout paint;
	overflow: hidden;
	position: relative;
}

.video-track {
	align-items: center;
	display: flex;
	gap: 33px;
	margin-left: 0;
	touch-action: pan-y;
	transform: translate3d(0, 0, 0);
	transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
	width: max-content;
	will-change: transform;
}

.video-card {
	background: var(--card);
	border-radius: var(--radius);
	flex: 0 0 min(62.5vw, 900px);
	overflow: hidden;
	opacity: 0.52;
	transform: scale(0.91);
	transition: opacity 480ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.video-card.is-active {
	opacity: 1;
	transform: scale(1);
}

.video-track.is-jumping .video-card {
	transition: none;
}

.video-card__image {
	position: relative;
}

.video-card__image img {
	aspect-ratio: 1.9 / 1;
	object-fit: cover;
	object-position: center 48%;
	width: 100%;
}

.video-card__image button {
	align-items: center;
	background: rgba(40, 40, 40, 0.78);
	border: 0;
	border-radius: 50%;
	color: var(--white);
	display: flex;
	font-size: 24px;
	height: 70px;
	justify-content: center;
	left: 50%;
	padding-left: 5px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 70px;
}

.video-card h3 {
	padding: 18px 22px;
}

.video-carousel > .carousel-controls {
	align-items: center;
	display: grid;
	gap: 12px;
	grid-template-columns: 44px 44px minmax(80px, 1fr) auto;
	margin-top: 38px;
}

.video-carousel > .carousel-controls::before {
	background: linear-gradient(90deg, var(--gold) 0 11%, rgba(56, 56, 56, 0.22) 11% 100%);
	content: "";
	grid-column: 3;
	grid-row: 1;
	height: 1px;
}

.video-carousel > .carousel-controls button {
	border: 0;
	font-size: 31px;
	grid-row: 1;
	height: 44px;
	line-height: 1;
	width: 44px;
}

.video-carousel > .carousel-controls [data-video-prev] {
	grid-column: 1;
}

.video-carousel > .carousel-controls [data-video-next] {
	grid-column: 2;
}

.video-carousel > .carousel-controls span {
	color: rgba(56, 56, 56, 0.62);
	font-size: 12px;
	grid-column: 4;
	grid-row: 1;
}

.rating-panel {
	align-items: center;
	background: rgba(255, 255, 255, 0.65);
	border-radius: var(--radius);
	display: grid;
	gap: 8px 6px;
	grid-template-columns: max-content max-content max-content max-content 1fr auto;
	height: 118px;
	margin-bottom: 41px;
	padding: 15px;
}

.rating-panel span,
.rating-panel strong {
	font-size: 13px;
}

.rating-panel span {
	padding: 14px 10px;
}

.rating-panel span:first-child {
	background: #e3e3e3;
	border-radius: 5px;
}

.rating-panel strong {
	grid-column: 1 / 5;
	padding-left: 0;
}

.rating-panel .button {
	grid-column: 6;
	grid-row: 2;
	min-height: 40px;
	padding-block: 8px;
}

.review-carousel {
	contain: inline-size layout paint;
}

.review-track[hidden] {
	display: none;
}

.review-viewport {
	overflow: hidden;
}

.review-track {
	display: flex;
	gap: 20px;
	transition: transform 420ms cubic-bezier(0.2, 0.72, 0.2, 1);
	will-change: transform;
}

.review-card {
	background: rgba(255, 255, 255, 0.65);
	border-radius: var(--radius);
	flex: 0 0 calc((100% - 40px) / 3);
	min-height: 327px;
	padding: 28px;
}

.review-card__header {
	align-items: center;
	display: flex;
	gap: 18px;
	margin-bottom: 24px;
}

.review-card__header h3 {
	font-size: 28px;
	margin: 0;
}

.avatar {
	background: #ddd;
	border-radius: 50%;
	display: block;
	height: 72px;
	position: relative;
	width: 72px;
}

.avatar::before,
.avatar::after {
	background: #bbb;
	border-radius: 50%;
	content: "";
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}

.avatar::before {
	height: 22px;
	top: 14px;
	width: 22px;
}

.avatar::after {
	border-radius: 18px 18px 0 0;
	bottom: 12px;
	height: 20px;
	width: 40px;
}

.stars {
	color: var(--gold);
	font-size: 15px;
}

.review-card p {
	font-size: 14px;
}

.review-card--video {
	overflow: hidden;
	padding: 0 0 20px;
}

.review-card--video h3 {
	padding: 18px 22px 0;
}

.review-card__video {
	position: relative;
}

.review-card__video img {
	aspect-ratio: 1.55 / 1;
	object-fit: cover;
	width: 100%;
}

.review-card__video button {
	align-items: center;
	background: rgba(40, 40, 40, 0.78);
	border: 0;
	border-radius: 50%;
	color: var(--white);
	display: flex;
	font-size: 20px;
	height: 58px;
	justify-content: center;
	left: 50%;
	padding-left: 4px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 58px;
}

.review-carousel__nav {
	align-items: center;
	display: grid;
	gap: 12px;
	grid-template-columns: 88px 1fr;
	margin-top: 23px;
}

.review-carousel__arrows {
	display: flex;
	gap: 1px;
}

.review-carousel__arrows button {
	background: transparent;
	border: 0;
	color: var(--gold);
	font-size: 39px;
	height: 43px;
	line-height: 1;
	padding: 0;
	width: 43px;
}

.review-carousel__progress {
	background: #c9c9c9;
	height: 2px;
	overflow: hidden;
}

.review-carousel__progress span {
	background: var(--gold);
	display: block;
	height: 100%;
	transform: scaleX(0.25);
	transform-origin: left center;
	transition: transform 420ms ease;
	width: 100%;
}

.promo {
	background: #121212 var(--promo-image) center/cover no-repeat;
	color: var(--white);
	isolation: isolate;
	margin-top: 75px;
	min-height: 592px;
	position: relative;
}

.promo__shade {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.3));
	inset: 0;
	position: absolute;
	z-index: -1;
}

.promo__content {
	display: grid;
	gap: 40px;
	grid-template-columns: minmax(0, 1fr) 555px;
	min-height: 592px;
	padding-block: 87px 45px;
}

.promo h2 {
	font-size: 70px;
	margin-bottom: 20px;
}

.promo p {
	margin-bottom: 48px;
	max-width: 480px;
}

.promo__content .button {
	min-width: 281px;
}

.promo__images {
	align-self: end;
	align-items: end;
	display: grid;
	gap: 23px;
	grid-template-columns: 1fr 1fr;
}

.promo__images img {
	aspect-ratio: 266 / 251;
	border-radius: var(--radius);
	object-fit: cover;
}

.site-footer {
	background: var(--ink);
	color: var(--white);
	margin-top: 75px;
	min-height: 591px;
	padding-block: 0 23px;
	position: relative;
}

.site-footer::before {
	background: var(--mist);
	bottom: 100%;
	content: "";
	height: 75px;
	left: 0;
	position: absolute;
	width: 100%;
}

.footer-top {
	align-items: start;
	display: grid;
	grid-template-columns: auto 550px;
	justify-content: space-between;
}

.footer-logo {
	height: 148px;
	object-fit: contain;
	width: 194px;
}

.footer-form {
	display: grid;
	grid-template-columns: 1fr auto;
	margin-top: 71px;
}

.footer-form input {
	border-color: rgba(255, 255, 255, 0.35);
	border-radius: 8px 0 0 8px;
	color: var(--white);
}

.footer-form .button {
	border-radius: 0 8px 8px 0;
}

.footer-form .form-status {
	grid-column: 1 / -1;
}

.footer-grid {
	display: grid;
	gap: 32px;
	grid-template-columns: 260px 140px 220px minmax(0, 550px);
	justify-content: space-between;
	margin-top: 32px;
}

.footer-grid p,
.footer-grid a {
	font-size: 13px;
}

.footer-grid .footer-nav a {
	font-size: 14px;
}

.footer-nav,
.footer-grid address {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.footer-grid address {
	font-style: normal;
}

.socials {
	display: flex;
	gap: 12px;
	margin-top: 32px;
}

.socials a {
	align-items: center;
	background: var(--charcoal);
	border-radius: 4px;
	display: flex;
	height: 38px;
	justify-content: center;
	width: 38px;
}

.footer-map {
	border-radius: var(--radius);
	height: 348px;
	object-fit: cover;
	width: 100%;
}

.footer-bottom {
	display: flex;
	font-size: 11px;
	gap: 252px;
	margin-top: -18px;
	opacity: 0.58;
	text-transform: uppercase;
}

.dialog {
	inset: 0;
	position: fixed;
	z-index: 100;
}

.dialog__backdrop {
	background: rgba(0, 0, 0, 0.72);
	inset: 0;
	position: absolute;
}

.dialog__panel {
	background: var(--white);
	border-radius: var(--radius);
	left: 50%;
	max-width: 560px;
	padding: 50px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 32px);
}

.dialog__panel h2 {
	font-size: 42px;
	margin-bottom: 24px;
}

.dialog__close {
	background: transparent;
	border: 0;
	font-size: 36px;
	position: absolute;
	right: 18px;
	top: 10px;
}

@media (max-width: 1199px) {
	.site-header__inner {
		grid-template-columns: 135px 1fr auto;
	}

	.desktop-nav {
		gap: 14px;
	}

	.header-callback {
		display: none;
	}

	.hero-stats {
		gap: 14px;
		grid-template-columns: 70px repeat(3, minmax(64px, 1fr));
		padding-inline: 22px;
		width: 490px;
	}

	.hero-stats__orb {
		height: 70px;
		width: 70px;
	}

	.benefit-card h3 {
		font-size: 26px;
	}

	.company__grid,
	.founder__grid {
		gap: 40px;
	}

	.process-grid {
		column-gap: 55px;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.process-grid li::after {
		right: -55px;
	}
}

@media (max-width: 991px) {
	html {
		scroll-padding-top: 88px;
	}

	.shell {
		padding-inline: 28px;
	}

	.section {
		padding-block: 82px;
	}

	.site-header__inner {
		display: flex;
		height: 88px;
		justify-content: space-between;
		padding-inline: 28px;
	}

	.site-header {
		backdrop-filter: blur(10px);
		background: linear-gradient(180deg, rgba(29, 29, 29, 0.94), rgba(29, 29, 29, 0.78));
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
		position: fixed;
	}

	.brand,
	.brand img {
		width: 84px;
	}

	.desktop-nav {
		display: none;
	}

	.header-contact {
		display: none;
	}

	.mobile-phone,
	.menu-toggle {
		align-items: center;
		border: 1px solid rgba(255, 255, 255, 0.6);
		border-radius: 5px;
		color: var(--white);
		height: 44px;
		justify-content: center;
		width: 44px;
	}

	.mobile-phone {
		background: var(--gold);
		border-color: var(--gold);
		display: flex;
		font-size: 18px;
		margin-left: auto;
	}

	.menu-toggle {
		background: rgba(0, 0, 0, 0.18);
		display: grid;
		gap: 5px;
		padding: 11px;
	}

	.menu-toggle__line {
		background: currentColor;
		display: block;
		height: 1px;
		width: 20px;
	}

	.mobile-menu {
		background: rgba(35, 35, 35, 0.98);
		box-shadow: -18px 24px 44px rgba(0, 0, 0, 0.3);
		height: calc(100vh - 88px);
		height: calc(100dvh - 88px);
		inset: 88px 0 auto auto;
		overflow-y: auto;
		padding: 30px 28px 36px;
		position: fixed;
		width: min(72vw, 420px);
	}

	.mobile-menu:not([hidden]) {
		animation: mobile-menu-in 280ms cubic-bezier(0.22, 1, 0.36, 1);
		display: block;
	}

	@keyframes mobile-menu-in {
		from {
			opacity: 0;
			transform: translateX(100%);
		}

		to {
			opacity: 1;
			transform: translateX(0);
		}
	}

	.mobile-menu nav {
		display: grid;
	}

	.mobile-menu nav a {
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		font-family: var(--display);
		font-size: 32px;
		padding: 16px 4px;
		text-transform: uppercase;
	}

	.mobile-menu .button {
		margin-top: 28px;
		width: 100%;
	}

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

	.hero-stats {
		justify-self: end;
	}

	.benefits__intro {
		gap: 48px;
		grid-template-columns: minmax(0, 1fr);
	}

	.benefits__numbers {
		column-gap: clamp(10px, 2vw, 16px);
		justify-self: center;
		margin-top: 0;
		width: min(100%, 480px);
	}

	.benefits__numbers div {
		min-width: 0;
		padding-inline: clamp(34px, 7vw, 54px);
	}

	.benefits__numbers div::before,
	.benefits__numbers div::after {
		background:
			linear-gradient(to bottom right, transparent 47%, var(--gold) 48% 53%, transparent 54%) top / 100% 50% no-repeat,
			linear-gradient(to top right, transparent 47%, var(--gold) 48% 53%, transparent 54%) bottom / 100% 50% no-repeat;
		content: "";
		font-size: 0;
		height: clamp(52px, 9vw, 70px);
		top: 50%;
		transform: translateY(-50%);
		width: clamp(22px, 4vw, 32px);
	}

	.benefits__numbers div::after {
		transform: translateY(-50%) scaleX(-1);
	}

	.benefit-grid,
	.service-track {
		grid-template-columns: repeat(2, 1fr);
	}

	.company__grid,
	.founder__grid,
	.callback-panel,
	.system__intro {
		grid-template-columns: 1fr;
	}

	.founder__grid {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.founder__copy {
		display: contents;
	}

	.founder__copy h2 {
		margin: 0 0 30px;
		order: 1;
	}

	.founder__copy > p {
		margin: 0 0 36px;
		max-width: 640px;
		order: 2;
	}

	.founder__portrait {
		order: 3;
	}

	.founder__copy blockquote {
		margin: 24px 0 0;
		max-width: none;
		order: 4;
	}

	.founder__copy::before,
	.founder__copy::after {
		display: none;
	}

	.callback-panel {
		margin-top: 48px;
	}

	.company__note {
		margin-top: 70px;
	}

	.system__intro > img {
		display: block;
	}

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

	.system-card {
		min-height: 440px;
	}

	.system-card img {
		margin-bottom: -24%;
	}

	.price-table-wrap {
		display: none;
	}

	.price-cards-mobile {
		display: grid;
		gap: 18px;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.price-card-mobile {
		background: rgba(255, 255, 255, 0.45);
		border: 1px solid #888;
		border-radius: 8px;
		overflow: hidden;
	}

	.price-card-mobile header {
		background: var(--ink);
		color: var(--white);
		display: grid;
		padding: 12px 14px 10px;
	}

	.price-card-mobile header strong {
		font-family: var(--display);
		font-size: 28px;
		font-weight: 400;
		line-height: 1;
		text-transform: uppercase;
	}

	.price-card-mobile header span {
		font-size: 10px;
		line-height: 1.2;
		text-transform: uppercase;
	}

	.price-card-mobile__row {
		align-items: center;
		border-bottom: 1px solid #a1a1a1;
		display: grid;
		gap: 7px;
		grid-template-columns: 1fr 0.68fr 0.58fr;
		min-height: 58px;
		padding: 10px 12px;
	}

	.price-card-mobile__row:last-child {
		border-bottom: 0;
	}

	.price-card-mobile__row span {
		font-size: 12px;
	}

	.price-card-mobile__row strong {
		font-family: var(--display);
		font-size: 25px;
		font-weight: 400;
		text-align: right;
	}

	.process-grid {
		display: grid;
		gap: 0;
		grid-auto-rows: auto;
		grid-template-columns: 1fr;
		overflow: visible;
		padding-bottom: 0;
	}

	.process h2 {
		font-size: 56px;
		margin-bottom: 36px;
	}

	.process-grid li {
		column-gap: 36px;
		display: grid;
		grid-template-columns: 63px minmax(0, 1fr);
		height: auto;
		min-height: 150px;
		padding-bottom: 30px;
	}

	.process-grid li::after,
	.process-grid li:nth-child(2n)::after,
	.process-grid li:nth-child(3n)::after {
		bottom: 0;
		display: block;
		height: auto;
		left: 31px;
		right: auto;
		top: 63px;
		width: 2px;
	}

	.process-grid li:last-child::after {
		display: none;
	}

	.process-grid h3 {
		margin: 0 0 8px;
	}

	.promo {
		background-position: center;
		min-height: 820px;
	}

	.promo__shade {
		background: rgba(0, 0, 0, 0.58);
	}

	.promo__content {
		align-content: center;
		gap: 32px;
		grid-template-columns: minmax(0, 1fr);
		min-height: 820px;
		padding-block: 72px 40px;
	}

	.promo__content > div:first-child {
		max-width: 680px;
	}

	.promo h2 {
		font-size: 56px;
	}

	.promo p {
		margin-bottom: 32px;
		max-width: 640px;
	}

	.promo__images {
		gap: 16px;
		justify-self: start;
		width: min(100%, 640px);
	}

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

	.video-track {
		transition-duration: 300ms;
	}

	.video-card {
		transition-duration: 220ms, 300ms;
	}

	.review-track {
		transition-duration: 260ms;
	}

	.video-track.is-dragging,
	.review-track.is-dragging {
		transition: none;
	}

	.video-track.is-dragging .video-card {
		transition: none;
	}
}

@media (max-width: 767px) {
	body {
		font-size: 14px;
	}

	html {
		scroll-padding-top: 64px;
	}

	h1 {
		font-size: 52px;
		line-height: 1;
	}

	h2 {
		font-size: 42px;
		line-height: 1;
		margin-bottom: 32px;
	}

	.services > .shell > h2,
	.company__copy h2,
	.founder__copy h2,
	.callback-panel h2,
	.media h2,
	.reviews h2,
	.promo h2 {
		font-size: 42px;
		line-height: 1;
	}

	h3 {
		font-size: 1.85rem;
	}

	.shell {
		padding-inline: 20px;
	}

	.section {
		padding-block: 70px;
	}

	.site-header__inner {
		display: flex;
		height: 74px;
		justify-content: space-between;
		padding-inline: 16px;
	}

	.site-header {
		backdrop-filter: blur(10px);
		background: linear-gradient(180deg, rgba(29, 29, 29, 0.92), rgba(29, 29, 29, 0.72));
		position: fixed;
	}

	.brand {
		width: 72px;
	}

	.brand img {
		width: 72px;
	}

	.header-contact {
		display: none;
	}

	.mobile-phone,
	.menu-toggle {
		align-items: center;
		border: 1px solid rgba(255, 255, 255, 0.6);
		border-radius: 5px;
		color: var(--white);
		height: 40px;
		justify-content: center;
		width: 40px;
	}

	.mobile-phone {
		background: var(--gold);
		border-color: var(--gold);
		display: flex;
		font-size: 17px;
		margin-left: auto;
	}

	.menu-toggle {
		background: rgba(0, 0, 0, 0.18);
		display: grid;
		gap: 5px;
		padding: 10px;
	}

	.menu-toggle__line {
		background: currentColor;
		display: block;
		height: 1px;
		width: 18px;
	}

	.mobile-menu {
		background: rgba(35, 35, 35, 0.98);
		box-shadow: -18px 24px 44px rgba(0, 0, 0, 0.3);
		height: calc(100vh - 74px);
		height: calc(100dvh - 74px);
		inset: 74px 0 auto auto;
		overflow-y: auto;
		padding: 24px 20px 30px;
		position: fixed;
		width: min(90vw, 360px);
	}

	.mobile-menu:not([hidden]) {
		animation: mobile-menu-in 280ms cubic-bezier(0.22, 1, 0.36, 1);
		display: block;
	}

	@keyframes mobile-menu-in {
		from {
			opacity: 0;
			transform: translateX(100%);
		}

		to {
			opacity: 1;
			transform: translateX(0);
		}
	}

	.mobile-menu nav {
		display: grid;
	}

	.mobile-menu nav a {
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		font-family: var(--display);
		font-size: 28px;
		padding: 14px 4px;
		text-transform: uppercase;
	}

	.mobile-menu .button {
		margin-top: 24px;
		width: 100%;
	}

	.hero {
		background-position: 56% center;
		min-height: 852px;
	}

	.hero__shade {
		background:
			linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 82%),
			linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.48) 52%, rgba(0, 0, 0, 0.68));
	}

	.hero__inner {
		align-content: start;
		display: flex;
		flex-direction: column;
		min-height: 852px;
		padding-bottom: 30px;
		padding-top: 135px;
	}

	.hero__content {
		max-width: 100%;
		transform: none;
	}

	.hero__content .eyebrow {
		display: none;
	}

	.hero__lead {
		font-size: 14px;
		line-height: 1.4;
	}

	.hero__actions {
		display: grid;
		gap: 12px;
		margin-top: 26px;
	}

	.hero__actions .button {
		font-size: 14px;
		min-width: 0;
	}

	.hero-stats {
		backdrop-filter: blur(5px);
		gap: 0;
		grid-template-columns: repeat(3, 1fr);
		margin: auto 0 0;
		min-height: 108px;
		padding: 18px 8px;
		width: 100%;
	}

	.hero-stats__orb {
		display: none;
	}

	.hero-stats strong,
	.benefits__numbers strong {
		font-size: 45px;
	}

	.hero-stats span,
	.benefits__numbers span {
		font-size: 10px;
	}

	.hero-stats span {
		font-size: 14px;
	}

	.estimate {
		padding: 70px 0 0;
	}

	.estimate__grid {
		display: flex;
		flex-direction: column;
	}

	.estimate__media {
		aspect-ratio: 1.45 / 1;
		min-height: 0;
		order: 2;
	}

	.estimate__media > img {
		display: block;
	}

	.estimate__media > strong {
		font-size: 34px;
	}

	.estimate__tags span {
		padding-inline: 13px;
	}

	.estimate-form {
		gap: 20px;
		order: 1;
		padding: 20px;
	}

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

	.benefits__intro {
		gap: 38px;
		grid-template-columns: 1fr;
		margin-bottom: 32px;
	}

	.benefits__intro h2 {
		margin-bottom: 20px;
	}

	.benefits__intro p,
	.company__copy > p,
	.system__intro p,
	.section-heading p {
		font-size: 14px;
	}

	.benefits__numbers {
		padding: 6px 0 28px;
	}

	.benefits__numbers div::before,
	.benefits__numbers div::after {
		height: clamp(52px, 15vw, 62px);
		width: clamp(22px, 7vw, 28px);
	}

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

	.benefit-card {
		min-height: 270px;
	}

	.benefit-card h3 {
		font-size: 30px;
	}

	.benefit-card p {
		font-size: 14px;
		max-width: 62%;
	}

	.benefit-card img {
		bottom: -13px;
		height: 167px;
		right: -13px;
		width: 167px;
	}

	.services {
		padding-block: 70px;
	}

	.service-tabs,
	.review-tabs {
		box-shadow: none;
		display: block;
		margin-bottom: 24px;
		position: relative;
	}

	.service-tabs::before {
		display: none;
	}

	.service-tabs button,
	.review-tabs button {
		display: none;
		text-align: left;
		width: 100%;
	}

	.service-tabs button.is-active,
	.review-tabs button.is-active {
		background: var(--ink);
		display: block;
	}

	.service-tabs.is-open button,
	.review-tabs.is-open button {
		display: block;
	}

	.service-tabs::after,
	.review-tabs::after {
		background: var(--white);
		clip-path: polygon(50% 100%, 0 0, 100% 0);
		content: "";
		height: 11px;
		pointer-events: none;
		position: absolute;
		right: 24px;
		top: 22px;
		transition: transform 180ms ease;
		width: 11px;
		z-index: 2;
	}

	.service-tabs.is-open::after,
	.review-tabs.is-open::after {
		transform: rotate(180deg);
	}

	.service-grid {
		overflow: hidden;
	}

	.service-track {
		display: flex;
		gap: 14px;
		overflow-x: auto;
		scroll-behavior: smooth;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.service-track::-webkit-scrollbar,
	.project-track::-webkit-scrollbar,
	.video-track::-webkit-scrollbar,
	.review-track::-webkit-scrollbar {
		display: none;
	}

	.service-card {
		flex: 0 0 100%;
		height: auto;
		min-height: 570px;
		scroll-snap-align: start;
	}

	.service-card > img:not(.service-card__logo) {
		aspect-ratio: 1.7 / 1;
	}

	.service-card__body {
		padding: 18px;
	}

	.service-card__actions {
		grid-template-columns: 1fr;
	}

	.service-card--contact {
		min-height: 430px;
	}

	.service-card--contact-carousel {
		display: none;
	}

	.mobile-only {
		display: flex;
	}

	select {
		appearance: none;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 11 11'%3E%3Cpath d='M5.5 11 0 0h11L5.5 11Z' fill='%23666666'/%3E%3C/svg%3E");
		background-position: right 20px center;
		background-repeat: no-repeat;
		padding-right: 48px;
	}

	.service-contact-mobile {
		align-items: center;
		background: var(--ink);
		color: var(--white);
		flex-direction: column;
		min-height: 458px;
		padding: 26px 20px 50px;
		text-align: center;
	}

	.service-contact-mobile__logo {
		height: 111px;
		object-fit: cover;
		object-position: center;
		width: 146px;
	}

	.service-contact-mobile h2 {
		font-size: 30px;
		line-height: 1;
		margin: 31px 0 7px;
	}

	.service-contact-mobile > p {
		font-size: 14px;
		line-height: 1.4;
		margin: 0;
		max-width: 353px;
	}

	.service-contact-mobile form {
		display: grid;
		gap: 11px;
		margin-top: 43px;
		max-width: 353px;
		width: 100%;
	}

	.service-contact-mobile input {
		border-color: rgba(255, 255, 255, 0.35);
		color: var(--white);
	}

	.service-contact-mobile .form-status {
		margin: 0;
	}

	.service-contact-mobile .form-status:empty {
		display: none;
	}

	.company {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.company__grid {
		display: flex;
		flex-direction: column;
		gap: 0;
		min-height: 0;
	}

	.company__copy {
		display: contents;
	}

	.company__copy h2,
	.company__copy > p {
		order: 1;
	}

	.company__copy h2 {
		margin: 0 0 17px;
	}

	.company__copy > p {
		font-size: 14px;
		line-height: 1.4;
		margin-bottom: 30px;
	}

	.company__visual {
		display: contents;
	}

	.chips {
		display: grid;
		gap: 8px;
		grid-template-columns: 135px 185px;
		margin: 0 0 36px;
		order: 2;
		width: 328px;
	}

	.chips span:nth-child(1) {
		grid-column: 1 / 3;
		width: 310px;
	}

	.chips span:nth-child(2) {
		grid-column: 1;
	}

	.chips span:nth-child(3) {
		grid-column: 2;
	}

	.chips span:nth-child(4) {
		grid-column: 1 / 3;
		width: 228px;
	}

	.chips span {
		font-size: 14px;
		padding: 9px 12px;
	}

	.company__visual > img {
		display: none;
	}

	.company__note {
		display: grid;
		flex-direction: column;
		gap: 0;
		grid-template-columns: 1fr;
		margin: 0;
		min-height: 412px;
		order: 3;
		padding: 5px 5px 24px;
	}

	.company__note img {
		aspect-ratio: 343 / 248;
		width: 100%;
	}

	.company__note p {
		font-size: 14px;
		line-height: 1.4;
		margin: 15px 18px 0 10px;
		padding: 0;
	}

	.founder {
		padding-block: clamp(44px, 12vw, 50px) 70px;
	}

	.founder__grid {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.founder__copy {
		display: contents;
	}

	.founder__copy h2 {
		margin: 0 0 clamp(22px, 6vw, 28px);
		order: 1;
	}

	.founder__copy > p {
		font-size: 14px;
		line-height: 1.4;
		margin: 0 0 30px;
		order: 2;
	}

	.founder__portrait {
		height: 356px;
		order: 3;
	}

	.founder__portrait img {
		height: 339px;
		margin: 17px auto 0;
		width: 303px;
	}

	.founder__copy blockquote {
		font-size: 14px;
		line-height: 1.4;
		margin: clamp(20px, 5vw, 24px) 0 15px;
		max-width: none;
		min-height: 212px;
		order: 4;
		padding: 37px 16px 12px;
	}

	.founder__copy::before,
	.founder__copy::after {
		display: none;
	}

	.callback-panel {
		gap: 28px;
		margin-top: 50px;
		min-height: 503px;
		padding: 28px 20px;
	}

	.callback-panel > div > p {
		margin-bottom: 0;
	}

	.callback-panel .form-status:empty {
		display: none;
	}

	.callback-panel textarea {
		height: 55px;
		min-height: 55px;
		resize: none;
	}

	.callback-panel h2 {
		font-size: 42px;
	}

	.projects {
		padding-top: 70px;
	}

	.project-track {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.project-card {
		flex: 0 0 88%;
		min-height: 710px;
		scroll-snap-align: start;
	}

	.project-card h3 {
		font-size: 37px;
	}

	.project-card__content > strong {
		font-size: 70px;
	}

	.project-controls {
		display: flex;
		padding-bottom: 28px;
	}

	.pricing {
		padding-block: 70px;
	}

	.price-table {
		display: none;
	}

	.price-cards-mobile {
		display: grid;
		gap: 14px;
		grid-template-columns: 1fr;
	}

	.price-card-mobile {
		background: rgba(255, 255, 255, 0.45);
		border: 1px solid #888;
		border-radius: 8px;
		overflow: hidden;
	}

	.price-card-mobile header {
		background: var(--ink);
		color: var(--white);
		display: grid;
		padding: 9px 12px 8px;
	}

	.price-card-mobile header strong {
		font-family: var(--display);
		font-size: 25px;
		font-weight: 400;
		line-height: 1;
		text-transform: uppercase;
	}

	.price-card-mobile header span {
		font-size: 10px;
		line-height: 1.2;
		text-transform: uppercase;
	}

	.price-card-mobile__row {
		align-items: center;
		border-bottom: 1px solid #a1a1a1;
		display: grid;
		gap: 8px;
		grid-template-columns: 1fr 0.68fr 0.58fr;
		min-height: 47px;
		padding: 8px 12px;
	}

	.price-card-mobile__row:last-child {
		border-bottom: 0;
	}

	.price-card-mobile__row span {
		font-size: 12px;
	}

	.price-card-mobile__row strong {
		font-family: var(--display);
		font-size: 25px;
		font-weight: 400;
		text-align: right;
	}

	.system {
		padding-block: 60px 80px;
	}

	.system__intro {
		display: flex;
		flex-direction: column;
		gap: 42px;
		margin-bottom: 34px;
	}

	.system__intro > img {
		display: block;
		order: 1;
	}

	.system__intro > div {
		order: 2;
	}

	.system__intro h2,
	.system__intro p {
		text-align: left;
	}

	.system-grid {
		gap: 14px;
	}

	.system-card {
		height: auto;
		min-height: 515px;
		padding: 28px 20px 0;
		text-align: left;
	}

	.system-card h3 {
		font-size: 39px;
	}

	.system-card p {
		font-size: 14px;
		line-height: 1.4;
		min-height: 72px;
	}

	.system-card img {
		margin-bottom: -38%;
	}

	.process {
		padding-block: 75px;
	}

	.process h2 {
		font-size: 42px;
		margin-bottom: 26px;
	}

	.process-grid {
		display: grid;
		gap: 0;
		grid-auto-rows: 146px;
		grid-template-columns: 1fr;
		overflow: visible;
		padding-bottom: 0;
	}

	.process-grid li {
		column-gap: 39px;
		display: grid;
		grid-template-columns: 53px 1fr;
		height: 146px;
	}

	.process-grid li::after,
	.process-grid li:nth-child(2n)::after,
	.process-grid li:nth-child(3n)::after {
		display: block;
		height: auto;
		left: 26px;
		right: auto;
		top: 53px;
		bottom: 0;
		width: 2px;
	}

	.process-grid li:last-child::after {
		display: none;
	}

	.process-grid li > span {
		font-size: 30px;
		height: 53px;
		width: 53px;
	}

	.process-grid h3 {
		font-size: 30px;
		margin: 0 0 9px;
	}

	.process-grid p {
		font-size: 14px;
	}

	.media,
	.reviews {
		padding-block: 75px;
	}

	.section-heading {
		text-align: left;
	}

	.section-heading p {
		font-size: 14px;
		margin: -15px 0 28px;
	}

	.review-track {
		display: flex;
		gap: 14px;
		margin-left: 0;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.video-card {
		flex-basis: 88vw;
	}

	.video-card__image img {
		aspect-ratio: 1.1 / 1;
	}

	.video-card__image button {
		height: 56px;
		width: 56px;
	}

	.rating-panel {
		gap: 10px 18px;
		padding: 16px;
	}

	.rating-panel .button {
		font-size: 10px;
		margin-left: 0;
		min-height: 34px;
		padding-inline: 12px;
	}

	.review-card {
		flex: 0 0 88%;
		min-height: 360px;
		scroll-snap-align: start;
	}

	.review-viewport {
		overflow: hidden;
		touch-action: pan-y;
	}

	.review-track {
		overflow: visible;
		scroll-snap-type: none;
	}

	.promo {
		background-position: center;
		min-height: 690px;
	}

	.promo__shade {
		background: rgba(0, 0, 0, 0.58);
	}

	.promo__content {
		align-content: center;
		grid-template-columns: 1fr;
		min-height: 690px;
		padding-block: 65px 28px;
	}

	.promo h2 {
		font-size: 42px;
	}

	.promo__content .button {
		width: 100%;
	}

	.promo__images {
		gap: 10px;
	}

	.site-footer {
		min-height: 1100px;
		padding-block: 65px 35px;
	}

	.footer-top {
		grid-template-columns: 1fr;
		justify-items: center;
	}

	.footer-logo {
		width: 190px;
	}

	.footer-form {
		grid-template-columns: 1fr;
		margin-top: 0;
		width: 100%;
	}

	.footer-form input,
	.footer-form .button {
		border-radius: 7px;
	}

	.footer-grid {
		gap: 40px;
		grid-template-columns: 1fr 1fr;
	}

	.footer-company {
		grid-column: 1 / -1;
		order: 3;
	}

	.footer-nav {
		order: 1;
	}

	.footer-grid address {
		order: 2;
	}

	.footer-map {
		grid-column: 1 / -1;
		height: 360px;
		order: 4;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 16px;
	}

	.dialog__panel {
		padding: 42px 24px 28px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
