:root {
	--font-body: 'Inter', system-ui, sans-serif;
	--font-heading: 'Josefin Sans', system-ui, sans-serif;
	--font-display: 'Oswald', sans-serif;
	--font-sans: 'Inter', system-ui, sans-serif;
	--accent-color: #e10600;
	--accent-footer: #ff0000;
	--accent-dark: #000000;
	--accent-light: #e1060073;
	--accent-hover: #c10000;
	--accent-wash-1: #e106001a;
	--accent-wash-2: #e1060026;
	--badge-bg: #eee;
	--badge-color: #aa0000;
	--bg-color: #f7f7f7;
	--border-color: #d6d6d6;
	--border-on-dark: #3a3a3a;
	--border-strong: #b5b5b5;
	--container-width: 1200px;
	--gutter: 1.5rem;
	--heading-color: #111111;
	--page-bg: #ededed;
	--row-even: #f3f3f3;
	--row-hover: #e106001a;
	--row-odd: #fafafa;
	--shadow: 0 6px 18px #0000001f;
	--shadow-accent: #e1060066;
	--shadow-medium: #0000001f;
	--shadow-soft: #00000012;
	--shadow-strong: #00000033;
	--shadow-xstrong: #00000066;
	--surface-disabled: #f2f2f2;
	--surface-glass-soft: #fffc;
	--surface-glass-strong: #fffffff2;
	--surface-subtle: #f3f3f3;
	--text-color: #222222;
	--text-muted-light: #777777;
	--text-muted: #222222;
	--text-on-dark: #eee;
	--video-bg: #111111;
	--white-color: #fff;
	--white-wash-1: #FFFFFF1A;
	--white-wash-2: #FFFFFF80;
	--white-wash-3: #FFFFFFB3;
	--container: 1200px;
	--header-height: 80px;
	--radius: 3px;
	--space-1: .5rem;
	--space-2: 1rem;
	--space-3: 1.5rem;
	--space-4: 2rem;
	--space-6: 3rem;
	--space-8: 4rem;
}
@font-face {
	font-family: Inter;
	src: url(/Inter.ttf) format('truetype');
	font-weight: 400 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Josefin Sans';
	src: url(/JosefinSans.ttf) format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: Oswald;
	src: url(/Oswald.ttf) format('truetype');
	font-weight: 500 700;
	font-style: normal;
	font-display: swap;
}
*,
*::before,
*::after
{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
::selection {
	background: var(--accent-color);
	color: var(--text-color);
}
a {
	color: var(--accent-color);
	text-decoration: none;
}
body {
	background-color: var(--bg-color);
	color: var(--text-color);
	font-family: var(--font-body);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
body.no-scroll {
	overflow: hidden;
}
fieldset {
	border: none;
	margin: 0;
	min-width: 0;
	padding: 0;
}
h1 {
	font-size: clamp(2.5rem, 6vw, 4rem);
}
h1,
h2,
h3,
h4
{
	color: var(--heading-color);
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.2;
}
h2 {
	font-size: clamp(2rem, 5vw, 2.75rem);
}
h3 {
	font-size: clamp(1.25rem, 4vw, 1.5rem);
}
html {
	scroll-padding-top: var(--header-height);
	scroll-behavior: smooth;
}
img,
.img-placeholder
{
	display: block;
	max-width: 100%;
}
input:not([type="checkbox"]):not([type="radio"]),
textarea,
select
{
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	font-family: var(--font-body);
	margin-bottom: var(--space-3);
	padding: var(--space-2);
	width: 100%;
}
label {
	display: block;
	font-weight: 600;
	margin-bottom: var(--space-1);
}
p {
	margin-bottom: var(--space-2);
}
section:not(.document-section):not(.invoice-parties):not(.invoice-lines):not(.invoice-summary):not(.offer-section):not(.contract-section):not(.client-info):not(.signature-section) {
	padding: var(--space-8) 0;
	scroll-margin-top: 73px;
}
textarea {
	min-height: 150px;
	resize: vertical;
}
ul {
	list-style: none;
}
.block ul {
	list-style: initial;
	margin-left: 1rem;
}
#background h2 {
	margin-bottom: var(--space-4);
}
#bio .img-placeholder {
	aspect-ratio: 1 / 1;
	border-radius: 50%;
}
#bio .tools__grid {
	justify-content: flex-start;
}
.bio-photo {
	border: 4px solid var(--accent-color);
	border-radius: var(--radius);
	margin-left: auto;
	margin-right: auto;
	max-width: 220px;
	overflow: hidden;
}
.bio-photo img {
	display: block;
	filter: grayscale(100%);
	height: auto;
	width: 100%;
}
#service-warranty {
	background-color: var(--white-color);
	border-top: 1px solid var(--border-color);
	padding: var(--space-8) 0;
}
.align-center {
	align-items: center;
}
.article-card__cta,
.portfolio-item__cta
{
	font-weight: 600;
	margin-top: auto;
	padding-top: var(--space-3);
}
.article-card__meta,
.portfolio-item__meta
{
	color: var(--text-color);
	font-size: .9rem;
	margin-bottom: var(--space-2);
}
.badge {
	background-color: var(--badge-bg);
	border-radius: 99px;
	color: var(--badge-color);
	display: inline-block;
	font-size: .8rem;
	font-weight: 600;
	padding: var(--space-1) var(--space-2);
}
.bg-white {
	background-color: var(--white-color);
}
.blog-grid,
.portfolio-grid
{
	display: grid;
	gap: var(--space-4);
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.portfolio-grid {
	align-items: start;
}
.portfolio__card {
	align-self: start;
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
}
.btn {
	border: 2px solid transparent;
	border-radius: var(--radius);
	cursor: pointer;
	display: inline-block;
	font-weight: 600;
	padding: var(--space-2) var(--space-4);
	text-align: center;
	transition: all .3s ease;
}
.btn--primary {
	background-color: var(--accent-color);
	color: var(--white-color);
}
.btn--primary:hover,
.btn--primary:focus-visible
{
	background-color: var(--accent-hover);
	box-shadow: 0 4px 12px var(--shadow-accent);
	transform: translateY(-2px);
}
.btn--secondary {
	background-color: transparent;
	border-color: var(--accent-color);
	color: var(--accent-dark);
}
.btn--secondary:hover,
.btn--secondary.active,
.btn--secondary:focus-visible
{
	background-color: var(--accent-wash-1);
	color: var(--accent-dark);
	border-color: var(--accent-color);
}
.btn--secondary:hover {
	transform: translateY(-2px);
}
.btn.btn--small {
	padding: .5rem 1rem;
}
.card,
.proposal-form
{
	background-color: var(--white-color);
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: var(--space-4);
	transition: all .3s ease;
}
.card:hover {
	box-shadow: 0 12px 32px var(--shadow-medium);
	transform: translateY(-5px);
}
.checkbox-grid {
	display: grid;
	gap: var(--space-2);
}
.checkbox-item {
	align-items: center;
	display: flex;
}
.checkbox-item input {
	accent-color: var(--accent-color);
	cursor: pointer;
	height: 1.2em;
	margin-bottom: 0;
	width: 1.2em;
}
.checkbox-item label {
	cursor: pointer;
	font-weight: 400;
	margin-bottom: 0;
	padding-left: var(--space-2);
}
.container {
	margin: 0 auto;
	max-width: var(--container);
	padding: 0 var(--space-3);
}
.cta-slot {
	border-top: 1px solid var(--border-color);
	padding-top: var(--space-6);
	text-align: center;
}
.cta-slot h2 {
	margin-bottom: var(--space-2);
}
.cta-slot p,
.section-header p
{
	margin-left: auto;
	margin-right: auto;
	max-width: 60ch;
}
.cta-slot--bordered {
	background-color: var(--white-color);
}
.cta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
}
.deliverables li,
.process li,
.story__grid li
{
	margin-bottom: var(--space-2);
	padding-left: var(--space-3);
	position: relative;
}
.deliverables li::before,
.story__grid li::before
{
	color: var(--accent-color);
	content: '✓';
	font-weight: 700;
	left: 0;
	position: absolute;
}
.document-container ul {
	list-style: disc;
	padding-left: 2rem;
}
.faq .faq-list {
	margin-top: var(--space-3);
}
.faq h4 {
	margin-top: var(--space-3);
}
.faq summary {
	cursor: pointer;
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
}
.faq,
.deliverables,
.process,
.mini-cases
{
	margin-bottom: var(--space-6);
}
.footer {
	background-color: var(--heading-color);
	color: var(--text-on-dark);
	font-size: .9rem;
	padding: var(--space-6) 0;
	text-align: center;
	border-top: 3px solid var(--accent-color);
}
.footer a {
	color: var(--text-on-dark);
}
.footer a:hover {
	color: var(--accent-color);
}
.footer li {
	margin-left: 0;
	padding-left: 0;
}
.footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer__about {
	margin: 0 auto var(--space-6);
	max-width: 65ch;
}
.footer__about h2 {
	color: var(--white-color);
	font-family: var(--font-heading);
	font-size: 1.2rem;
	margin-bottom: var(--space-2);
}
.footer__bottom p {
	margin-bottom: 0;
	margin-top: var(--space-1);
	opacity: .8;
}
.footer__columns {
	border-bottom: 1px solid var(--accent-color);
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-8);
	justify-content: center;
	margin-bottom: var(--space-6);
	padding-bottom: var(--space-6);
	text-align: left;
}
.footer__legal a {
	margin: 0 var(--space-2);
}
.footer__nav h2 {
	color: var(--accent-footer);
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: var(--space-2);
	letter-spacing: .3px;
}
.footer__nav li {
	margin-bottom: var(--space-1);
}
.footer__socials a {
	display: inline-block;
	margin-right: var(--space-2);
}
.grid {
	display: grid;
	gap: var(--space-4);
}
.hamburger {
	display: block;
	height: 18px;
	position: relative;
	width: 24px;
}
.hamburger span {
	background: var(--heading-color);
	border-radius: 3px;
	display: block;
	height: 3px;
	left: 0;
	opacity: 1;
	position: absolute;
	transition: .25s ease-in-out;
	width: 100%;
}
.hamburger span:nth-child(1) {
	top: 0px;
}
.hamburger span:nth-child(2) {
	top: 7px;
}
.hamburger span:nth-child(3) {
	top: 14px;
}
.header {
	backdrop-filter: blur(10px);
	background-color: var(--surface-glass-soft);
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 1000;
	-webkit-backdrop-filter: blur(10px);
}
.header__logo {
	color: var(--heading-color);
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	position: relative;
	text-decoration: none;
	z-index: 1002;
}
.header__logo img {
	max-width: min(120px, 28vw);
}
.header__mobile-toggle {
	background: none;
	border: none;
	cursor: pointer;
	display: none;
	padding: var(--space-1);
	z-index: 1001;
}
.header__mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
	top: 7px;
	transform: rotate(135deg);
}
.header__mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
	left: -24px;
	opacity: 0;
}
.header__mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
	top: 7px;
	transform: rotate(-135deg);
}
.header__nav a {
	color: var(--text-color);
	font-weight: 600;
	padding: var(--space-1) 0;
	position: relative;
}
.header__nav a:not(.btn):hover::after {
	width: 100%;
}
.header__nav a:not(.btn).active::after {
	width: 100%;
}
.header__nav a:not(.btn)::after {
	background-color: var(--accent-color);
	bottom: 0;
	content: '';
	height: 2px;
	left: 0;
	position: absolute;
	transition: width .3s ease;
	width: 0;
}
.header__nav ul {
	align-items: center;
	display: flex;
	gap: var(--space-4);
}
.header__nav-container {
	align-items: center;
	display: flex;
	height: var(--header-height);
	justify-content: space-between;
}
.lang-current {
	color: var(--text);
	font-family: var(--font-body);
	font-weight: 700;
	letter-spacing: .5px;
	padding: 0 .75rem;
	text-transform: uppercase;
}
.lang-current,
.search-toggle,
.search-submit
{
	align-items: center;
	background: var(--surface-glass-strong);
	border: 1px solid #ffffff22;
	border-radius: 6px;
	display: inline-flex;
	height: 36px;
	justify-content: center;
	line-height: 1;
	user-select: none;
}
.header__nav ul.lang-menu {
	background: var(--surface-glass-strong);
	border: 1px solid #ffffff22;
	border-radius: 8px;
	box-shadow: var(--shadow);
	display: none;
	min-width: 180px;
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	z-index: 120;
}
.header__nav ul.lang-menu:dir(rtl) {
	left: 0;
	right: initial;
}
.lang-menu a {
	color: var(--text);
	display: block;
	font-family: var(--font-body);
	padding: .6rem .8rem;
}
.lang-menu a:hover {
	background: #ffffff10;
}
.lang-menu li {
	border-bottom: 1px solid #ffffff12;
}
.lang-menu li:last-child {
	border-bottom: 0;
}
.lang-switch {
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	position: relative;
}
.lang-switch.active .lang-menu {
	display: block;
}
.header__nav__mobile {
	line-height: 1;
}
.header__nav__mobile .lang-current {
	display: none;
}
.header__nav__mobile .lang-menu {
	display: inline !important;
}
.header__nav__mobile .lang-menu li {
	margin-bottom: 0;
}
.header__nav__mobile .lang-menu a {
	font-size: 1em;
	display: inline;
}
.header__nav__mobile .lang-menu a.active {
	color: var(--accent-color);
}
.hero {
	overflow: hidden;
	padding: var(--space-8) 0;
	position: relative;
	text-align: center;
}
.hero-home {
	background-color: var(--accent-dark);
	color: var(--white-color);
	display: flex;
	flex-direction: column;
	height: calc(100vh - var(--header-height));
	justify-content: center;
	margin-top: -var(--header-height);
	min-height: 600px;
	overflow: hidden;
	padding-top: var(--header-height);
	position: relative;
	width: 100%;
}
.hero__actions-home {
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
}
.hero .container {
	max-width: 800px;
}
.hero h1 {
	margin-bottom: var(--space-3);
}
.hero--video {
	padding-bottom: var(--space-4);
}
.hero-video-container {
	align-items: center;
	aspect-ratio: 16 / 9;
	background-color: var(--video-bg);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	display: flex;
	justify-content: center;
	overflow: hidden;
	position: relative;
	width: 100%;
}
.hero-video-container:hover .hero-video-play-btn {
	background: var(--accent-color);
	border-color: var(--accent-color);
	transform: scale(1.1);
}
.hero-video-content {
	align-items: center;
	display: flex;
	flex-direction: column;
}
.hero-video-placeholder {
	color: var(--white-wash-3);
	font-family: var(--font-heading);
	font-size: 1.5rem;
	text-align: center;
}
.hero-video-play-btn {
	align-items: center;
	backdrop-filter: blur(10px);
	background: var(--white-wash-1);
	border: 2px solid var(--white-wash-2);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	height: 80px;
	justify-content: center;
	margin-bottom: var(--space-2);
	transition: all .3s ease;
	width: 80px;
}
.hero-video-play-btn::after {
	border-bottom: 15px solid transparent;
	border-left: 25px solid var(--white-color);
	border-top: 15px solid transparent;
	content: '';
	display: block;
	height: 0;
	margin-left: 5px;
	width: 0;
}
.hero-video-wrapper {
	margin: 0 auto var(--space-6);
	max-width: 1000px;
}
.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
	justify-content: center;
}
.hero__actions.center {
	justify-content: center;
}
.hero__subheading {
	font-size: 1.25rem;
	margin-bottom: var(--space-6);
}
.hero__bg-img {
	height: 100%;
	object-fit: cover;
	opacity: .6;
	transform: none;
	width: 100%;
	display: block;
}
.hero__bg-wrapper {
	inset: 0;
	position: absolute;
	z-index: 0;
	overflow: hidden;
	transform: scale(1.1);
	transform-origin: center;
}
.hero__content {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 10;
}
.hero__line-mask {
	display: block;
}
.hero__overlay {
	background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
	inset: 0;
	position: absolute;
}
.hero__subtitle {
	color: #e5e5e5;
	font-size: 1.125rem;
	font-weight: 300;
	line-height: .7;
	margin-bottom: 1.25rem;
}
.hero__proof {
	align-items: center;
	color: rgba(255,255,255,0.78);
	display: inline-flex;
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .22em;
	margin-top: -1.25rem;
	margin-bottom: 2.5rem;
	text-transform: uppercase;
	opacity: .7;
}
.hero__proof::before {
	background: var(--accent-color);
	content: '';
	height: 1px;
	margin-right: 14px;
	width: 48px;
}
.hero__title {
	font-family: var(--font-display);
	color: var(--white-color);
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 2rem;
	text-transform: uppercase;
}
.icon-placeholder {
	border-radius: 50%;
	height: 48px;
	margin-bottom: var(--space-3);
	width: 48px;
	color: var(--accent-color);
	font: var(--font-heading);
	font-size: 1.8rem;
	font-weight: 700;
}
.img-placeholder {
	align-items: center;
	aspect-ratio: 16 / 9;
	background-color: var(--surface-subtle);
	border-radius: var(--radius);
	color: var(--text-muted-light);
	display: flex;
	justify-content: center;
}
.img-placeholder img {
	border-radius: inherit;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}
.img-round {
	aspect-ratio: 1/1;
	border-radius: 50%;
}
.maintenance-upsell {
	align-items: center;
	background-color: var(--white-color);
	border: 1px solid var(--border-color);
	border-left: 3px solid var(--accent-color);
	border-radius: 4px;
	box-shadow: 0 2px 8px var(--shadow-soft);
	display: flex;
	gap: var(--space-3);
	margin-bottom: var(--space-6);
	max-width: 800px;
	padding: var(--space-3);
}
.maintenance-upsell__content h4 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: .2rem;
}
.maintenance-upsell__content p {
	color: var(--text-color);
	font-size: .9rem;
	line-height: 1.5;
	margin-bottom: 0;
}
.mb-0 {
	margin-bottom: 0;
}
.mb-2 {
	margin-bottom: var(--space-2);
}
.mb-3 {
	margin-bottom: var(--space-3);
}
.mini-cases h4 {
	margin: var(--space-2) 0 var(--space-1);
}
.mini-cases p.meta {
	color: var(--text-color);
	font-size: .9rem;
}
.mobile-nav-overlay {
	align-items: center;
	background-color: var(--bg-color);
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	left: 0;
	right: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	transform: translateY(-20px);
	transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
	visibility: hidden;
	width: 100vw;
	max-width: 100vw;
	box-sizing: border-box;
	z-index: 999;
}
.mobile-nav-overlay * {
	max-width: 100%;
}
.mobile-nav-overlay a {
	color: var(--heading-color);
	font-family: var(--font-heading);
	font-size: 2rem;
}
.mobile-nav-overlay li {
	margin-bottom: var(--space-4);
}
.mobile-nav-overlay ul {
	text-align: center;
}
.mobile-nav-overlay.is-open {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}
.mt-1 {
	margin-top: var(--space-1);
}
.mt-2 {
	margin-top: var(--space-2);
}
.mt-4 {
	margin-top: var(--space-4);
}
.mt-6 {
	margin-top: var(--space-6);
}
.mw-900 {
	max-width: 900px;
}
.mx-auto {
	margin-left: auto;
}
.page-header {
	padding: var(--space-6) 0;
	text-align: center;
}
.page-header h1 {
	margin-bottom: var(--space-2);
}
.page-header p {
	font-size: 1.25rem;
	margin: 0 auto;
	max-width: 60ch;
}
.form-grid,
.service-asides,
.mini-cases .cards
{
	display: grid;
	gap: var(--space-4);
}
.request-success.is-hidden {
	display: none;
}
.portfolio__card h3,
.portfolio__card p
{
	padding: 0 .5rem;
}
.portfolio__card .img-placeholder {
	margin-bottom: var(--space-3);
}
.portfolio__card h3,
.blog__card h3
{
	margin-bottom: var(--space-1);
}
.portfolio__tags .badge,
.article-card__tags .badge,
.portfolio-item__tags .badge
{
	background-color: var(--surface-subtle);
	color: var(--text-color);
}
.portfolio__tags,
.article-card__tags,
.portfolio-item__tags
{
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-1);
	margin: var(--space-3) 0;
}
.process li span {
	display: block;
	font-size: .9rem;
	font-weight: 400;
}
.process__card .icon-placeholder {
	position: relative;
}
.process__card .step-number {
	align-items: center;
	background: var(--accent-color);
	border: 2px solid var(--white-color);
	border-radius: 50%;
	color: var(--white-color);
	display: flex;
	font-size: .9rem;
	font-weight: 700;
	height: 28px;
	justify-content: center;
	position: absolute;
	right: -10px;
	top: -10px;
	width: 28px;
}
.process__card:hover {
	border-color: var(--accent-color);
}
.proposal-form .form-hint {
	color: var(--text-color);
	font-size: .9rem;
	margin-bottom: var(--space-3);
	margin-top: calc(-1 * var(--space-2));
}
.proposal-form fieldset {
	margin-bottom: var(--space-6);
}
.proposal-form legend {
	border-bottom: 1px solid var(--border-color);
	color: var(--heading-color);
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: var(--space-2);
	padding-bottom: var(--space-2);
	width: 100%;
}
.proposal-form {
	padding: var(--space-6);
}
.pt-0 {
	padding-top: 0;
}
.pt-6 {
	padding-top: var(--space-6);
}
.section-header {
	margin-bottom: var(--space-6);
	text-align: center;
}
.service-asides {
	margin-bottom: var(--space-6);
}
.service-asides li {
	margin-bottom: var(--space-1);
}
.service-asides ul {
	margin-top: var(--space-2);
	padding-left: 0;
}
.service-warranty__card {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.service-warranty__card .check-list {
	margin-bottom: var(--space-3);
	padding: 0;
}
.service-warranty__card .icon-placeholder {
	margin-left: auto;
	margin-right: auto;
}
.service-warranty__card p {
	flex-grow: 1;
}
.service-section {
	border-bottom: 1px solid var(--border-color);
	padding: var(--space-6) 0;
}
.service-section h2 {
	margin-bottom: var(--space-2);
}
.service-section p.lead {
	font-size: 1.15rem;
	margin-bottom: var(--space-6);
	max-width: 65ch;
}
.service-section:last-of-type {
	border-bottom: none;
}
.services__card .icon-placeholder,
.values__card .icon-placeholder,
.process__card .icon-placeholder
{
	margin-left: auto;
	margin-right: auto;
}
.services__card h3,
.values__card h3
{
	margin-bottom: var(--space-2);
}
.services__card,
.values__card,
.process__card
{
	color: inherit;
	text-align: center;
	text-decoration: none;
}
.services__price {
	color: var(--heading-color);
	display: block;
	font-weight: 600;
	margin: var(--space-3) 0;
}
.subnav a {
	border: 1px solid var(--accent-color);
	color: var(--text-color);
	cursor: pointer;
	font-size: .9rem;
	font-weight: 600;
	padding: var(--space-1) var(--space-2);
	transition: all .2s ease;
	white-space: nowrap;
}
.subnav a:hover {
	border-color: var(--accent-color);
	background-color: var(--accent-color);
	color: var(--white-color);
}
.subnav a.is-active {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--white-color);
}
.subnav {
	backdrop-filter: blur(5px);
	background-color: var(--surface-glass-strong);
	border-bottom: 1px solid var(--border-color);
	padding: var(--space-2) 0;
	position: sticky;
	top: var(--header-height);
	z-index: 900;
	-webkit-backdrop-filter: blur(5px);
}
.subnav__container {
	display: flex;
	gap: var(--space-2);
	overflow-x: auto;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.tools__grid .badge {
	background-color: var(--surface-subtle);
	color: var(--text-color);
}
.tools__grid,
.bio__badges
{
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
	justify-content: center;
	margin-top: var(--space-3);
}
.visually-hidden {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.w-100 {
	width: 100%;
}
.zoom-clone {
	background-color: var(--white-color);
	border: 1px solid var(--white-color);
	border-radius: 10px;
	box-shadow: 0 10px 40px var(--shadow-strong);
	box-sizing: border-box;
	cursor: pointer;
	object-fit: cover;
	pointer-events: none;
	position: fixed;
	transform-origin: center center;
	transition: all .5s cubic-bezier(0.2, .8, .2, 1), transform .3s ease;
	z-index: 2000;
}
.zoom-clone.is-active {
	border: 4px solid var(--white-color);
	box-shadow: 0 25px 80px var(--shadow-xstrong);
	cursor: zoom-out;
	z-index: 2001;
	pointer-events: auto;
}
.story__grid .story-block {
	background-color: var(--white-color);
	border: 1px solid var(--border-color);
	border-left: 3px solid var(--accent-color);
	border-radius: var(--radius);
	height: 100%;
	padding: var(--space-4);
}
.story__grid .story-block h3 {
	margin-bottom: var(--space-2);
}
.story__grid .story-block p,
.story__grid .story-block ul
{
	margin-bottom: var(--space-2);
}
.portfolio-item__intro {
	color: var(--text-color);
	font-size: .95rem;
	margin-bottom: var(--space-2);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.portfolio__content {
	padding: 0 var(--space-3) var(--space-3);
	padding-top: var(--space-3);
}
.portfolio__details {
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	display: block;
	flex-direction: column;
	min-height: 440px;
	overflow: hidden;
}
.portfolio__details[open] .portfolio__summary-cta::after {
	transform: rotate(90deg);
}
.portfolio__details[open] {
	border-color: var(--accent-color);
}
.portfolio__summary {
	cursor: pointer;
	list-style: none;
	outline: none;
	display: flex;
	flex-direction: column;
	min-height: 440px;
	padding: var(--space-3);
}
.portfolio__summary h3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.portfolio__summary .img-placeholder {
	margin-bottom: var(--space-3);
}
.portfolio__summary-cta {
	color: var(--accent-color);
	display: inline-block;
	font-weight: 600;
	margin-top: auto;
	padding-top: var(--space-1);
	position: relative;
}
.portfolio__summary-cta::after {
	content: '›';
	display: inline-block;
	margin-left: .4rem;
	transition: transform .2s ease;
}
.portfolio__summary::-webkit-details-marker {
	display: none;
}
.portfolio__card.is-open {
	border-color: var(--accent-color);
	box-shadow: 0 12px 32px var(--shadow-medium);
	transform: translateY(-5px);
}
.portfolio__card.is-open .portfolio__summary-cta::after {
	transform: rotate(90deg);
}
.experience__grid {
	display: grid;
	gap: 3rem;
}
.experience__label {
	color: var(--accent-color);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: .1em;
	margin-bottom: 3rem;
	text-transform: uppercase;
}
.experience__stats {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.experience__years {
	background: linear-gradient(to bottom right, #000, #333);
	background-clip: text;
	color: transparent;
	font-family: var(--font-heading);
	font-size: 4rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 1rem;
	-webkit-background-clip: text;
	-webkit-text-stroke: 2px black;
}
.foundation {
	position: relative;
}
.foundation-card {
	border: 1px solid rgba(255,255,255,0.2);
	cursor: pointer;
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: .1em;
	padding: 2rem;
	text-align: center;
	transition: all .3s;
}
.foundation-card:hover {
	background: var(--white-color);
	color: var(--accent-dark);
}
.foundation__content {
	position: relative;
	z-index: 10;
}
.foundation__cta {
	text-align: center;
	margin-top: 100px;
}
.foundation__grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr 1fr;
	margin: 0 auto 5rem;
	max-width: 900px;
}
.foundation__heading {
	font-size: clamp(2rem, 8vw, 4.5rem);
	line-height: 1.1;
	margin-bottom: 3rem;
	color: var(--accent-color);
}
.foundation__heading span {
	display: inline-block;
	transition: color .3s;
}
.foundation__headline {
	letter-spacing: .02em;
}
.foundation__subline {
	color: var(--white-color);
	font-family: var(--font-sans);
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding-bottom: 0;
	line-height: 1.3;
	margin-top: -0.5rem;
}
.btn--black-shadow {
	background-color: var(--accent-dark);
	box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
	color: var(--white-color);
}
.btn--black-shadow:hover {
	background-color: var(--white-color);
	color: var(--accent-color);
	transform: translateY(-4px);
}
.btn--box {
	background: transparent;
	border: 2px solid var(--accent-dark);
	color: var(--accent-dark);
	overflow: hidden;
	position: relative;
}
.btn--box::before {
	background: var(--accent-dark);
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: translateY(100%);
	transition: transform .3s ease;
	width: 100%;
	z-index: -1;
}
.btn--box:hover {
	color: var(--white-color);
}
.btn--box:hover::before {
	transform: translateY(0);
}
.btn--nav {
	background-color: var(--white-color);
	color: var(--accent-dark);
	border: 2px solid var(--accent-color);
	padding: .75rem 2rem;
}
.btn--nav:hover {
	background-color: var(--accent-color);
	color: var(--white-color);
}
.btn--outline {
	background: transparent;
	border: 2px solid var(--white-color);
	color: var(--white-color);
}
.btn--outline-red {
	background: transparent;
	border: 2px solid var(--accent-color);
	color: var(--white-color);
}
.btn--outline-red:hover {
	background-color: var(--accent-color);
	color: var(--white-color);
	transform: translateY(-4px);
}
.btn--outline:hover {
	background: var(--white-color);
	color: var(--accent-dark);
}
.btn--white {
	background: var(--white-color);
	color: var(--accent-dark);
}
.btn--white:hover {
	background: var(--accent-color);
	color: var(--white-color);
	transform: scale(1.05);
}
.link-underline {
	border-bottom: 2px solid var(--accent-dark);
	color: var(--accent-dark);
	font-weight: 700;
	letter-spacing: .1em;
	padding-bottom: .25rem;
	text-decoration: none;
	text-transform: uppercase;
	transition: all .3s;
}
.link-underline:hover {
	border-color: var(--accent-color);
	color: var(--accent-color);
}
.main-footer {
	background: var(--accent-color);
	color: var(--white-color);
	overflow: hidden;
	padding: 6rem 0;
	position: relative;
}
.main-footer__actions {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	justify-content: center;
}
.main-footer__bg-stripes {
	background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, #000 10px, #000 20px);
	inset: 0;
	opacity: .1;
	position: absolute;
}
.main-footer__bottom {
	align-items: center;
	border-top: 1px solid rgba(255,255,255,0.2);
	display: flex;
	flex-direction: column;
	font-size: .75rem;
	letter-spacing: .1em;
	margin-top: 6rem;
	opacity: .8;
	padding-top: 2rem;
	text-transform: uppercase;
}
.main-footer__content {
	position: relative;
	text-align: center;
	z-index: 10;
}
.main-footer__links {
	display: flex;
	gap: 1.5rem;
	margin-top: 1rem;
}
.main-footer__links a {
	color: inherit;
	text-decoration: none;
	transition: color .3s;
}
.main-footer__links a:hover {
	color: var(--accent-dark);
}
.main-footer__title {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 3rem;
	text-transform: uppercase;
}
.manifesto-card {
	background: var(--accent-dark);
	color: var(--white-color);
	cursor: pointer;
	overflow: hidden;
	padding: 3rem;
	position: relative;
	transition: background .5s;
}
.manifesto-card:hover {
	background: var(--accent-color);
}
.manifesto-card:hover .manifesto-card__glow {
	background: rgba(0,0,0,0.2);
}
.manifesto-card__glow {
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	bottom: -2.5rem;
	filter: blur(40px);
	height: 10rem;
	position: absolute;
	right: -2.5rem;
	transition: all .5s;
	width: 10rem;
}
.manifesto-card__line {
	background: var(--accent-color);
	height: 4px;
	margin-bottom: 1rem;
	position: relative;
	width: 3rem;
	z-index: 2;
}
.manifesto-card__text {
	opacity: .7;
	position: relative;
	z-index: 2;
}
.manifesto-card__title {
	font-family: var(--font-heading);
	color: var(--white-color);
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
	position: relative;
	text-transform: uppercase;
	z-index: 2;
}
.nav-link {
	color: var(--accent-dark);
	position: relative;
	text-decoration: none;
	transition: color .3s;
}
.nav-link:hover {
	color: var(--accent-color);
}
.section {
	padding: 6rem 0;
}
.section--dark {
	background-color: var(--accent-dark);
	color: var(--white-color);
}
.section--red {
	background-color: var(--accent-color);
}
.section--gray {
	background-color: var(--bg-color);
}
.section--light {
	background-color: var(--white-color);
}
.section__title {
	font-family: var(--font-heading);
	font-weight: 700;
	text-transform: uppercase;
}
.section__title--bordered {
	border-left: 4px solid var(--accent-color);
	font-size: 2.5rem;
	margin-bottom: 3rem;
	padding-left: 1.5rem;
}
.section__title--center {
	text-align: center;
}
.speed__link-wrapper {
	margin-top: 4rem;
}
.speed__ticker {
	display: flex;
	flex-wrap: wrap;
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	gap: 2rem 3rem;
	margin-bottom: 4rem;
	text-transform: uppercase;
	perspective: 900px;
	position: relative;
	transform-style: preserve-3d;
}
.ticker-item {
	color: var(--text-muted);
	cursor: crosshair;
	display: inline-block;
	filter: blur(0);
	opacity: .5;
	position: relative;
	transform: translate3d(var(--tx, 0px), var(--ty, 0px), 0px) scale(var(--s, 1));
	transition: transform .22s ease, color .22s ease, opacity .22s ease, filter .22s ease;
	will-change: transform;
}
.ticker-item:hover {
	color: var(--accent-color);
	filter: none;
	opacity: 1;
	z-index: 2;
	--s: 1.12;
}
.speed__title {
	border-left: 4px solid var(--accent-dark);
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 4rem;
	padding-left: 2rem;
	text-transform: uppercase;
}
.stat-item__desc {
	color: #666;
	font-size: .875rem;
	letter-spacing: .05em;
	text-transform: uppercase;
}
.stat-item__value {
	display: block;
	font-size: 2.5rem;
	font-weight: 700;
}
.text-accent {
	color: var(--accent-color);
}
.transformation__arrow {
	color: var(--accent-color);
	padding: 0 1rem;
}
.transformation__cta {
	text-align: center;
}
.transformation__from {
	color: #ccc;
}
.transformation__list {
	display: grid;
	gap: 3rem;
	margin-bottom: 6rem;
}
.transformation__quote {
	font-size: 1.25rem;
	font-weight: 300;
	margin-bottom: 3rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 800px;
}
.transformation__row {
	align-items: center;
	border-bottom: 1px solid #eee;
	display: flex;
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	justify-content: space-between;
	padding-bottom: 2rem;
	text-transform: uppercase;
}
.transformation__to {
	color: var(--accent-dark);
}
.action-block {
	justify-content: flex-start;
}
.action-link {
	border-bottom: 2px solid #d93025;
	color: #d93025;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.4;
	padding-bottom: 2px;
	text-decoration: none;
	transition: opacity .2s ease;
}
.action-link:hover {
	opacity: .8;
}
.grid-container {
	display: grid;
	gap: 56px;
	grid-template-columns: 1fr;
	margin: 0 auto;
	max-width: 600px;
}
.number {
	color: var(--bg-color);
	font-size: .85rem;
	font-weight: 700;
	letter-spacing: .5px;
	margin-bottom: 8px;
}
.service-item {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	padding-left: 12px;
	position: relative;
}
.service-item::before {
	background: var(--accent-color);
	content: '';
	height: 14px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
}
.title {
	color: var(--white-color);
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0;
}
.title:hover {
	color: var(--accent-color);
}
.foundation__heading .foundation__headline {
	display: block;
}
.foundation__heading .foundation__subline {
	display: block;
	margin-top: 1rem;
	padding-bottom: 2.5rem;
}
.footer__since {
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: .22em;
	opacity: .65;
	text-transform: uppercase;
}
:root.waiting body {
	opacity: .1;
}
:root body {
	transition: opacity 500ms;
}
:root.forward::view-transition-old(root) {
	animation: 333ms ease-out wipe-out both;
}
:root.forward::view-transition-new(root) {
	animation: 333ms ease-out wipe-in both;
}
:root.back::view-transition-old(root) {
	animation: 333ms ease-out wipe-out-reverse both;
}
:root.back::view-transition-new(root) {
	animation: 333ms ease-out wipe-in-reverse both;
}
@media (max-width: 480px){
	.hero__title,
	.foundation__heading,
	.experience__label
	{
		letter-spacing: .02em;
	}
}
@media (min-width: 768px){
	.grid-container {
		gap: 56px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 600px;
	}
	.foundation .grid-container {
		justify-content: center;
		row-gap: 20px;
		column-gap: 48px;
		padding-left: 5rem;
	}
	.experience__grid {
		align-items: center;
		grid-template-columns: 1fr 1fr;
	}
	.experience__years {
		font-size: 6rem;
	}
	.foundation__grid {
		gap: 2rem;
		grid-template-columns: repeat(3, 1fr);
	}
	.foundation__heading {
		font-size: 4.5rem;
	}
	.hero__actions-home {
		flex-direction: row;
	}
	.main-footer__actions {
		flex-direction: row;
	}
	.main-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
	}
	.main-footer__links {
		margin-top: 0;
	}
	.main-footer__title {
		font-size: 4.5rem;
	}
	.main-nav__links {
		align-items: center;
		display: flex;
	}
	.section__title--bordered {
		font-size: 3.5rem;
	}
	.speed__ticker {
		font-size: 2.5rem;
	}
	.speed__title {
		font-size: 3.5rem;
	}
	.transformation__quote {
		font-size: 1.8rem;
	}
	.transformation__row {
		font-size: 3rem;
	}
	.checkbox-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.deliverables ul {
		display: grid;
		gap: var(--space-2);
		grid-template-columns: 1fr 1fr;
	}
	.grid-2,
	.form-grid,
	.mini-cases .cards,
	.service-asides
	{
		grid-template-columns: repeat(2, 1fr);
	}
	.grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}
	.grid-4,
	.process ol
	{
		grid-template-columns: repeat(4, 1fr);
	}
}
@media (min-width: 1024px){
	.hero__title {
		font-size: 6rem;
	}
}
@media (prefers-reduced-motion: reduce){
	.ticker-item {
		transform: none;
		transition: color .2s ease, opacity .2s ease;
	}
}
@media (max-width: 992px){
	.header__mobile-toggle {
		display: block;
	}
	.header__nav {
		display: none;
	}
}
@media (min-width: 576px){
	.checkbox-grid {
		gap: var(--space-3) var(--space-4);
		grid-template-columns: 1fr 1fr;
	}
}
@media (min-width: 992px){
	.case-content {
		grid-template-columns: 2fr 1fr;
	}
	.grid-6 {
		grid-template-columns: repeat(3, 1fr);
	}
}
@keyframes wipe-out{
	0% {
		clip-path: polygon(-10% 0%, 110% 0%, 100% 100%, -20% 100%);
	}
	100% {
		clip-path: polygon(110% 0%, 120% 0%, 110% 100%, 100% 100%);
	}
}
@keyframes wipe-in{
	0% {
		clip-path: polygon(-20% 0%, -10% 0%, -20% 100%, -30% 100%);
	}
	100% {
		clip-path: polygon(-10% 0%, 110% 0%, 100% 100%, -20% 100%);
	}
}
@keyframes wipe-out-reverse{
	0% {
		clip-path: polygon(-10% 0%, 110% 0%, 120% 100%, 0% 100%);
	}
	100% {
		clip-path: polygon(-20% 0%, -10% 0%, 0% 100%, -10% 100%);
	}
}
@keyframes wipe-in-reverse{
	0% {
		clip-path: polygon(110% 0%, 120% 0%, 130% 100%, 120% 100%);
	}
	100% {
		clip-path: polygon(-10% 0%, 110% 0%, 120% 100%, 0% 100%);
	}
}
