@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/poppins-regular-latin.woff2") format("woff2");
}

@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/poppins-bold-latin.woff2") format("woff2");
}

@font-face {
	font-family: "Kaushan Script";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/kaushan-script-latin.woff2") format("woff2");
}

:root {
	color-scheme: light dark;
	--ink: #101015;
	--muted: #64646f;
	--paper: #ffffff;
	--soft: #f5f5f6;
	--line: #dedede;
	--pink: #e4124d;
	--pink-bright: #fa0f55;
	--purple: #6f0a79;
	--navy: #160055;
	--green: #9ee346;
	--gradient: linear-gradient(115deg, #f10852 0%, #ad0871 48%, #19005d 100%);
	--radius: 16px;
	--container: 1240px;
}

/* Homepage domain search */
.home-domain-search .wd-domain-search {
	background:
		linear-gradient(rgba(111, 10, 121, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(111, 10, 121, 0.03) 1px, transparent 1px),
		radial-gradient(circle at 10% 80%, rgba(228, 18, 77, 0.065), transparent 30%),
		#faf8fb;
	background-size: 82px 82px, 82px 82px, auto, auto;
}

.home-domain-search .wd-domain-search::after {
	border-color: rgba(111, 10, 121, 0.055);
}

.home-domain-search .wd-domain-search__check {
	border-color: transparent;
	background: var(--gradient);
	box-shadow: 0 12px 28px rgba(111, 10, 121, 0.2);
}

.home-domain-search .wd-domain-search__check:hover {
	box-shadow: 0 15px 34px rgba(111, 10, 121, 0.28);
	transform: translateY(-1px);
}

.home-domain-search .wd-domain-search__other-extension-icon {
	color: var(--pink);
}

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

html {
	background-color: #ffffff;
	color-scheme: light dark;
	scroll-behavior: smooth;
}

/*
 * Samsung Internet can ignore a light-only opt-out when Force Dark is active.
 * Advertising a dark scheme and supplying an explicit dark-preference branch
 * makes it prefer these author colours over its automatic transformations.
 */
@media (prefers-color-scheme: dark) {
	:root,
	html,
	body,
	body * {
		color-scheme: only light !important;
	}

	html,
	body {
		background-color: #ffffff !important;
		color: #101015;
	}
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: "Poppins", Arial, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", Arial, sans-serif;
}

h1,
h2,
h3 {
	margin-bottom: 0;
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 1.02;
}

.title-gradient {
	display: inline-block;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-family: "Kaushan Script", "Segoe Script", cursive;
	font-style: normal;
	font-weight: 400;
}

h1 {
	font-size: clamp(4rem, 9.7vw, 9rem);
}

h2 {
	font-size: clamp(2.15rem, 3.6vw, 3.8rem);
}

h3 {
	font-size: clamp(1.35rem, 2vw, 2rem);
}

.container {
	width: min(calc(100% - 64px), var(--container));
	margin-inline: auto;
}

.section {
	padding-block: clamp(100px, 12vw, 170px);
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 999;
	padding: 12px 18px;
	border-radius: 8px;
	background: var(--ink);
	color: #fff;
	transform: translateY(-150%);
}

.skip-link:focus {
	transform: translateY(0);
}

:focus-visible {
	outline: 3px solid var(--green);
	outline-offset: 4px;
}

.kicker {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
	color: var(--ink);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.3;
	text-transform: uppercase;
}

.kicker > span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--pink);
}

.kicker--light {
	color: rgba(255, 255, 255, 0.82);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	min-height: 58px;
	padding: 0 26px;
	border: 0;
	border-radius: 10px;
	background: var(--ink);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 750;
	transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
	background: var(--pink);
	box-shadow: 0 15px 36px rgb(from var(--pink) r g b / 0.2);
	transform: translateY(-2px);
}

.button--small {
	min-height: 46px;
	gap: 16px;
	padding-inline: 21px;
	background: var(--gradient);
	font-size: 0.74rem;
}

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

.button--white:hover {
	background: var(--ink);
	box-shadow: none;
}

.arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 5px;
	border-bottom: 1px solid currentColor;
	font-size: 0.78rem;
	font-weight: 750;
}

.arrow-link span {
	color: var(--pink);
	transition: transform 180ms ease;
}

.arrow-link:hover span {
	transform: translate(3px, -3px);
}

.brand-line {
	height: 4px;
	background: var(--gradient);
}

.site-header {
	--site-header-height: 88px;
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid transparent;
	background: rgba(255, 255, 255, 0);
	box-shadow: 0 10px 32px rgba(16, 16, 21, 0);
	-webkit-backdrop-filter: blur(0) saturate(100%);
	backdrop-filter: blur(0) saturate(100%);
	transition:
		background-color 360ms cubic-bezier(0.22, 1, 0.36, 1),
		border-color 360ms cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 360ms cubic-bezier(0.22, 1, 0.36, 1),
		-webkit-backdrop-filter 360ms cubic-bezier(0.22, 1, 0.36, 1),
		backdrop-filter 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled {
	border-bottom-color: rgba(16, 16, 21, 0.08);
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 12px 34px rgba(16, 16, 21, 0.08);
	-webkit-backdrop-filter: blur(20px) saturate(145%);
	backdrop-filter: blur(20px) saturate(145%);
}

body.menu-open .site-header {
	border-bottom-color: rgba(16, 16, 21, 0.08);
	background: #fff;
	box-shadow: none;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

.site-header__inner {
	display: grid;
	grid-template-columns: 120px 1fr auto;
	align-items: stretch;
	gap: 36px;
	min-height: 88px;
}

.site-header__inner > .brand,
.site-header__inner > .header-actions,
.site-header__inner > .menu-toggle {
	align-self: center;
}

.brand {
	display: inline-flex;
	align-items: center;
}

.brand img {
	width: 76px;
	height: auto;
}

.primary-nav {
	display: flex;
	align-items: stretch;
	justify-self: center;
	align-self: stretch;
}

.mobile-drawer {
	display: none;
}

.site-menu,
.footer-menu,
.mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-menu {
	display: flex;
	align-items: stretch;
	align-self: stretch;
	height: 100%;
	gap: clamp(22px, 2.8vw, 42px);
}

.site-menu a {
	position: relative;
	padding-block: 12px;
	font-size: 0.78rem;
	font-weight: 700;
}

.site-menu a::after {
	position: absolute;
	right: 0;
	bottom: 6px;
	left: 0;
	height: 2px;
	background: var(--pink);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.site-menu a:hover::after,
.site-menu a:focus-visible::after,
.site-menu .current-menu-item > a::after,
.site-menu .current_page_item > a::after,
.site-menu .current-menu-ancestor > a::after,
.site-menu .current-menu-parent > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.site-menu .current-menu-item > a,
.site-menu .current_page_item > a,
.site-menu .current-menu-ancestor > a,
.site-menu .current-menu-parent > a {
	color: var(--pink);
}

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

/* Services mega menu — panel centered on the header/viewport */
.site-menu .menu-item--services,
.site-menu .has-mega-menu {
	/* static so the panel can use fixed viewport positioning */
	position: static;
	display: inline-grid;
	grid-template-columns: auto auto;
	align-items: center;
	/* Full header height so hover continues into the flush panel */
	align-self: stretch;
	column-gap: 2px;
}

.site-menu > li:not(.menu-item--services):not(.has-mega-menu) {
	display: flex;
	align-items: center;
}

.site-menu .menu-item--services > a,
.site-menu .has-mega-menu > a {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	/* Don't stretch full header height — keeps the active/hover underline
	   level with other nav items (li still stretches for mega-menu hover). */
	align-self: center;
	gap: 6px;
}

.site-menu .menu-item--services > a::after,
.site-menu .has-mega-menu > a::after {
	/* Match non-services items: line sits just under the label, not the header. */
	bottom: 6px;
}

.mega-menu__toggle {
	position: relative;
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

.mega-menu__toggle-icon {
	display: block;
	width: 8px;
	height: 8px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
	transition: transform 200ms ease;
}

.menu-item--services:hover .mega-menu__toggle-icon,
.menu-item--services:focus-within .mega-menu__toggle-icon,
.menu-item--services.is-mega-open .mega-menu__toggle-icon,
.has-mega-menu:hover .mega-menu__toggle-icon,
.has-mega-menu:focus-within .mega-menu__toggle-icon,
.has-mega-menu.is-mega-open .mega-menu__toggle-icon {
	transform: rotate(225deg) translateY(-1px);
}

.mega-menu {
	/* Fixed to the viewport: full container width, centred horizontally */
	position: fixed;
	top: var(--site-header-height, 88px);
	left: 50%;
	z-index: 80;
	box-sizing: border-box;
	width: min(var(--container), calc(100vw - 48px));
	max-width: calc(100vw - 48px);
	margin: 0;
	/* Flush under the header — no gap, no hover bridge over other nav items */
	padding: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(-50%, 0, 0);
	transition:
		opacity 160ms ease,
		visibility 0s linear 160ms;
}

.mega-menu__panel {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	padding: 28px;
	/* Slight top radius soften so it still reads as a card under the bar */
	border: 1px solid rgba(16, 16, 21, 0.08);
	border-radius: 0 0 18px 18px;
	background:
		radial-gradient(circle at 100% 0%, rgb(from var(--pink-bright) r g b / 0.07), transparent 38%),
		radial-gradient(circle at 0% 100%, rgb(from var(--purple) r g b / 0.05), transparent 40%),
		#fff;
	box-shadow:
		0 28px 64px rgba(16, 16, 21, 0.14),
		0 2px 0 rgba(255, 255, 255, 0.8) inset;
}

.menu-item--services:hover > .mega-menu,
.menu-item--services:focus-within > .mega-menu,
.menu-item--services.is-mega-open > .mega-menu,
.has-mega-menu:hover > .mega-menu,
.has-mega-menu:focus-within > .mega-menu,
.has-mega-menu.is-mega-open > .mega-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate3d(-50%, 0, 0);
	transition:
		opacity 160ms ease,
		visibility 0s linear 0s;
}

.mega-menu__intro {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	justify-content: space-between;
	gap: 12px 28px;
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(16, 16, 21, 0.08);
}

.mega-menu__kicker {
	margin: 0 0 6px;
	color: var(--pink);
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.mega-menu__heading {
	margin: 0;
	max-width: 28ch;
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.25;
}

.mega-menu__all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--pink) 8%, #fff);
	color: var(--pink);
	font-size: 0.78rem;
	font-weight: 700;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.mega-menu__all:hover {
	background: var(--pink);
	color: #fff;
	transform: translateY(-1px);
}

.mega-menu__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.mega-menu__item {
	--service-accent: var(--pink);
	--service-wash: #fff0f5;
	--service-icon: url("../icons/code-xml.svg");
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	min-height: 100%;
	padding: 16px 16px 18px;
	border: 1px solid #ebe8e5;
	border-radius: 12px;
	background: linear-gradient(155deg, #fff 48%, var(--service-wash) 130%);
	transition:
		transform 220ms ease,
		border-color 180ms ease,
		box-shadow 220ms ease;
}

.mega-menu__item:hover,
.mega-menu__item:focus-visible {
	transform: translateY(-3px);
	border-color: color-mix(in srgb, var(--service-accent) 55%, #ebe8e5);
	box-shadow: 0 14px 28px rgba(22, 0, 85, 0.08);
	outline: none;
}

.mega-menu__item-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 10px;
}

.mega-menu__icon {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: color-mix(in srgb, var(--service-accent) 12%, #fff);
	color: var(--service-accent);
}

.mega-menu__icon::before {
	width: 20px;
	height: 20px;
	background: currentColor;
	content: "";
	-webkit-mask: var(--service-icon) center / contain no-repeat;
	mask: var(--service-icon) center / contain no-repeat;
}

.mega-menu__arrow {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid color-mix(in srgb, var(--service-accent) 38%, transparent);
	border-radius: 50%;
	color: var(--service-accent);
	font-size: 0.95rem;
	line-height: 1;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.mega-menu__item:hover .mega-menu__arrow,
.mega-menu__item:focus-visible .mega-menu__arrow {
	background: var(--service-accent);
	color: #fff;
	transform: translate(2px, -2px);
}

.mega-menu__number {
	color: color-mix(in srgb, var(--service-accent) 75%, var(--muted));
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.mega-menu__label {
	color: var(--service-accent);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.mega-menu__title {
	display: block;
	margin-top: 2px;
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.25;
}

.mega-menu__desc {
	display: block;
	margin-top: 6px;
	color: var(--muted);
	font-size: 0.74rem;
	line-height: 1.45;
}

.mega-menu__item--web {
	--service-accent: #e4124d;
	--service-wash: #fff0f5;
	--service-icon: url("../icons/code-xml.svg");
}

.mega-menu__item--commerce {
	--service-accent: #64a800;
	--service-wash: #eef8e2;
	--service-icon: url("../icons/shopping-cart.svg");
}

.mega-menu__item--search {
	--service-accent: #f1600f;
	--service-wash: #fff0e8;
	--service-icon: url("../icons/search-check.svg");
}

.mega-menu__item--ads {
	--service-accent: #1877f2;
	--service-wash: #eef5ff;
	--service-icon: url("../icons/megaphone.svg");
}

.mega-menu__item--development {
	--service-accent: #6934ce;
	--service-wash: #f2edff;
	--service-icon: url("../icons/blocks.svg");
}

.mega-menu__item--hosting {
	--service-accent: #e5232e;
	--service-wash: #fff0f1;
	--service-icon: url("../icons/server.svg");
}

.mega-menu__item--domain {
	--service-accent: #f2b705;
	--service-wash: #fff8d6;
	--service-icon: url("../icons/search-check.svg");
}

.mega-menu__item--domain .mega-menu__label {
	color: #7b5700;
}

.mega-menu__item--domain:hover .mega-menu__arrow,
.mega-menu__item--domain:focus-visible .mega-menu__arrow {
	color: var(--ink);
}

.mega-menu__item--brand {
	--service-accent: #f718be;
	--service-wash: #fff0fa;
	--service-icon: url("../icons/megaphone.svg");
}

/* Don't draw the pink underline on mega card links */
.site-menu .mega-menu a::after {
	display: none;
}

/* Prefer the mega panel over any WP submenu under Services */
.site-menu .menu-item--services > .sub-menu,
.site-menu .has-mega-menu > .sub-menu {
	display: none;
}

@media (max-width: 1100px) and (min-width: 901px) {
	.mega-menu {
		width: min(900px, calc(100vw - 40px));
	}

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

.header-actions {
	display: flex;
	align-items: center;
	gap: 18px;
}

.review-badge {
	position: relative;
	display: inline-flex;
	align-items: center;
	color: var(--ink);
}

.review-badge__score {
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.review-badge__stars {
	color: #f2b600;
	font-size: 0.58rem;
	letter-spacing: 0.07em;
	line-height: 1;
}

.review-badge__copy {
	display: grid;
	gap: 3px;
	line-height: 1;
}

.review-badge__copy small {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--muted);
	font-size: 0.54rem;
	font-weight: 650;
	letter-spacing: 0.02em;
}

.review-badge__verified,
.review-verified {
	display: grid;
	place-items: center;
	background: #4285f4;
	box-shadow: 0 5px 12px rgba(38, 98, 190, 0.25);
	color: #fff;
	clip-path: polygon(50% 0%, 61% 11%, 76% 5%, 82% 20%, 100% 24%, 94% 41%, 100% 52%, 88% 64%, 94% 82%, 76% 84%, 68% 100%, 51% 91%, 35% 100%, 27% 84%, 8% 81%, 13% 63%, 0% 50%, 12% 38%, 5% 21%, 23% 18%, 31% 4%);
	transform: rotate(-8deg);
	transition: transform 180ms ease;
}

.review-badge__verified b,
.review-verified b {
	font-size: inherit;
	line-height: 1;
	transform: rotate(8deg);
}

.review-badge:hover .review-badge__verified {
	transform: rotate(0deg) scale(1.06);
}

.review-badge--header {
	gap: 8px;
	padding-right: 18px;
	border-right: 1px solid var(--line);
}

.review-badge--header .review-badge__verified {
	position: absolute;
	top: -5px;
	right: 11px;
	width: 14px;
	height: 14px;
	font-size: 0.38rem;
}

.review-badge--header:hover small {
	color: var(--pink);
}

.header-phone {
	display: grid;
	font-size: 0.75rem;
	font-weight: 750;
	line-height: 1.3;
}

.header-phone span {
	color: var(--muted);
	font-size: 0.58rem;
	font-weight: 650;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 12px;
	border: 0;
	background: transparent;
	color: var(--ink);
	font-size: 0.74rem;
	font-weight: 800;
	cursor: pointer;
}

.menu-toggle__icon {
	display: grid;
	gap: 6px;
	width: 24px;
}

.menu-toggle__icon i {
	display: block;
	height: 2px;
	background: currentColor;
	transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
	transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
	transform: translateY(-4px) rotate(-45deg);
}

.hero {
	position: relative;
	isolation: isolate;
	padding: clamp(48px, 5.5vw, 82px) 0 clamp(50px, 6vw, 78px);
	overflow: hidden;
	border-bottom: 1px solid rgba(16, 16, 21, 0.09);
	background:
		radial-gradient(circle at 12% 14%, rgb(from var(--pink) r g b / 0.07), transparent 27%),
		radial-gradient(circle at 88% 78%, rgba(22, 0, 85, 0.055), transparent 30%),
		linear-gradient(180deg, #fff 0%, #faf9f7 100%);
}

.hero::before {
	position: absolute;
	top: -54%;
	left: 50%;
	z-index: 0;
	width: min(920px, 82vw);
	aspect-ratio: 1;
	border-radius: 50%;
	background: conic-gradient(from 115deg, rgb(from var(--pink) r g b / 0.14), rgb(from var(--purple) r g b / 0.08), transparent 42%, rgba(158, 227, 70, 0.045), rgb(from var(--pink) r g b / 0.1));
	content: "";
	filter: blur(76px);
	opacity: 0.72;
	pointer-events: none;
	transform: translateX(-50%) rotate(-7deg);
}

.hero::after {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: radial-gradient(circle, rgb(from var(--purple) r g b / 0.18) 0.8px, transparent 0.9px);
	background-size: 25px 25px;
	content: "";
	-webkit-mask-image: radial-gradient(ellipse 58% 65% at 50% 32%, #000, transparent 72%);
	mask-image: radial-gradient(ellipse 58% 65% at 50% 32%, #000, transparent 72%);
	opacity: 0.32;
	pointer-events: none;
}

.hero__background-words {
	position: absolute;
	inset: 8% 0 0;
	z-index: 0;
	display: grid;
	align-content: center;
	gap: clamp(10px, 1.4vw, 22px);
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.36) 24%, #000 50%, rgba(0, 0, 0, 0.48) 76%, transparent 100%);
	mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.36) 24%, #000 50%, rgba(0, 0, 0, 0.48) 76%, transparent 100%);
	opacity: 0.085;
	contain: paint;
	pointer-events: none;
	user-select: none;
}

.hero__word-row {
	width: max-content;
	color: #929299;
	font-size: clamp(2.55rem, 5vw, 5.35rem);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 0.92;
	white-space: nowrap;
}

.hero__portraits {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.hero__portraits::before,
.hero__portraits::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	content: "";
	pointer-events: none;
}

.hero__portraits::before {
	top: auto;
	height: 24%;
	background: linear-gradient(to bottom, transparent 0%, rgba(250, 249, 247, 0.25) 55%, rgba(250, 249, 247, 0.94) 100%);
}

.hero__portraits::after {
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(252, 250, 250, 0.04) 17%,
		rgba(252, 250, 250, 0.35) 29%,
		rgba(252, 250, 250, 0.82) 39%,
		rgba(252, 250, 250, 0.82) 61%,
		rgba(252, 250, 250, 0.35) 71%,
		rgba(252, 250, 250, 0.04) 83%,
		transparent 100%
	);
}

.hero__portrait {
	position: absolute;
	bottom: 0;
	display: block;
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: contain;
	filter:
		grayscale(1)
		contrast(0.98);
	opacity: 0.96;
	-webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 84%, rgba(0, 0, 0, 0.78) 90%, rgba(0, 0, 0, 0.35) 96%, transparent 100%);
	mask-image: linear-gradient(to bottom, #000 0%, #000 84%, rgba(0, 0, 0, 0.78) 90%, rgba(0, 0, 0, 0.35) 96%, transparent 100%);
}

.hero__portrait--brandon {
	right: max(65px, calc(50% - 775px));
	bottom: -106px;
	width: clamp(361px, 30.3vw, 463px);
	aspect-ratio: 1097 / 1600;
	background-image: url("../images/hero-brandon-photographic-rim-v8.webp");
	background-position: bottom right;
}

.hero__portrait--timothy {
	left: max(16px, calc(50% - 825px));
	width: clamp(347px, 30.5vw, 473px);
	aspect-ratio: 1175 / 1600;
	background-image: url("../images/hero-timothy-photographic-rim-v8.webp");
	background-position: bottom left;
}

.hero__intro {
	position: relative;
	z-index: 1;
	text-align: center;
}

.hero__intro .kicker {
	justify-content: center;
}

.hero__kicker > strong {
	font: inherit;
	letter-spacing: inherit;
}

.hero h1 {
	max-width: 100%;
	margin-bottom: 38px;
	padding-bottom: 0.1em;
	overflow: visible;
	font-size: clamp(3.4rem, 7.2vw, 6.9rem);
	line-height: 1.04;
}

.hero h1 .title-gradient {
	display: inline;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-family: "Kaushan Script", "Segoe Script", cursive;
	font-size: 1.08em;
	font-style: normal;
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 0.92;
	overflow-wrap: break-word;
}

.hero__lead {
	display: flex;
	align-items: center;
	max-width: 720px;
	flex-direction: column;
	gap: 24px;
	margin: 0 auto;
	text-align: center;
}

.hero__lead > p {
	max-width: 620px;
	margin-bottom: 0;
	color: var(--muted);
	font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.hero__pricing {
	display: grid;
	gap: 11px;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	text-align: center;
}

.hero__pricing-head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.hero__pricing-label {
	background: var(--gradient);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.2;
	text-transform: uppercase;
	white-space: nowrap;
}

.hero__pricing-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: rgba(78, 78, 91, 0.5);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1;
	transition: color 0.18s ease;
	white-space: nowrap;
}

.hero__pricing-link:hover {
	color: var(--pink);
}

.hero__pricing-body {
	display: flex;
	align-items: baseline;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px 18px;
}

.hero__pricing-tier {
	display: inline-flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 6px 8px;
	min-width: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.hero__pricing-tier--monthly {
	padding-left: 18px;
	border-left: 1px solid rgba(16, 16, 21, 0.1);
}

.hero__pricing-tier-label {
	color: rgba(78, 78, 91, 0.48);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.hero__pricing-tier--monthly .hero__pricing-tier-label {
	color: rgba(78, 78, 91, 0.48);
}

.hero__pricing-tier strong {
	display: inline-flex;
	align-items: baseline;
	gap: 1px;
	color: rgba(16, 16, 21, 0.82);
	font-size: 1.32rem;
	font-weight: 750;
	letter-spacing: -0.04em;
	line-height: 1;
	white-space: nowrap;
}

.hero__pricing-tier strong sup {
	margin-right: 1px;
	font-size: 0.62em;
	font-weight: 700;
	letter-spacing: -0.02em;
	opacity: 0.72;
}

.hero__pricing-tier-meta {
	color: rgba(78, 78, 91, 0.55);
	font-size: 0.88rem;
	font-weight: 500;
	letter-spacing: -0.01em;
	line-height: 1.2;
}

.hero__pricing-or {
	display: none;
}

.hero__stats {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin-top: clamp(34px, 4vw, 52px);
	padding-top: clamp(16px, 2vw, 22px);
}

.hero__stat {
	display: flex;
	align-items: baseline;
	justify-content: center;
	min-width: 0;
	gap: 9px;
	padding-inline: clamp(12px, 2vw, 28px);
}

.hero__stat + .hero__stat {
	border-left: 1px solid rgba(16, 16, 21, 0.08);
}

.hero__stat strong {
	display: inline-flex;
	align-items: flex-start;
	flex: 0 0 auto;
	color: rgba(16, 16, 21, 0.76);
	font-size: clamp(1rem, 1.45vw, 1.28rem);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 1;
}

.hero__stat sup {
	margin: 0.04em 0 0 0.12em;
	background: var(--gradient);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	font-size: 0.68em;
	letter-spacing: 0;
	line-height: 1;
}

.hero__stat > span {
	overflow: hidden;
	color: rgba(78, 78, 91, 0.68);
	font-size: clamp(0.55rem, 0.72vw, 0.66rem);
	font-weight: 600;
	letter-spacing: 0.085em;
	line-height: 1.35;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.review-badge--hero {
	display: flex;
	width: max-content;
	gap: 10px;
	margin: 0 auto 24px;
	padding: 10px 14px;
	border: 1px solid rgba(16, 16, 21, 0.1);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 10px 28px rgba(22, 0, 85, 0.055);
	backdrop-filter: blur(8px);
	transition: border-color 180ms ease, transform 180ms ease;
}

.review-badge--hero:hover {
	border-color: var(--pink);
	transform: translateY(-2px);
}

.review-badge__google-mark {
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
}

.review-badge__google-mark img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.review-badge--hero .review-badge__google-mark {
	width: 22px;
	height: 22px;
}

.review-badge--hero .review-badge__verified {
	position: absolute;
	top: -7px;
	right: -7px;
	width: 18px;
	height: 18px;
	font-size: 0.5rem;
}

.hero-stage {
	position: relative;
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	min-height: 590px;
	overflow: hidden;
	border-radius: 18px;
	background: var(--gradient);
	color: #fff;
}

.hero-stage::before {
	position: absolute;
	top: -65%;
	right: 18%;
	width: 720px;
	height: 720px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	content: "";
}

.hero-stage::after {
	position: absolute;
	right: -140px;
	bottom: -240px;
	width: 520px;
	height: 520px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	content: "";
}

.hero-stage__copy {
	position: relative;
	z-index: 2;
	align-self: center;
	padding: 65px 55px 125px 70px;
}

.hero-stage__copy h2 {
	margin-bottom: 28px;
	font-size: clamp(2.8rem, 4.8vw, 4.8rem);
}

.hero-stage__copy h2 span {
	color: var(--green);
}

.hero-stage__copy > p:last-child {
	max-width: 300px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.9rem;
}

.hero-stage__panel {
	position: relative;
	z-index: 3;
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-self: stretch;
	margin: 34px 34px 34px 0;
	padding: 34px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 28px 70px rgba(18, 0, 60, 0.2);
	color: var(--ink);
	backdrop-filter: blur(18px);
}

.hero-stage__panel-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--line);
}

.hero-stage__panel-heading p,
.hero-stage__panel-heading span {
	margin-bottom: 0;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero-stage__panel-heading p {
	color: var(--pink);
}

.hero-stage__panel-heading span {
	color: var(--muted);
}

.hero-stage__panel ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hero-stage__panel li {
	display: grid;
	grid-template-columns: 34px 1fr 30px;
	align-items: center;
	gap: 16px;
	min-height: 82px;
	border-bottom: 1px solid var(--line);
}

.hero-stage__panel li > span {
	color: var(--pink);
	font-size: 0.61rem;
	font-weight: 800;
}

.hero-stage__panel li strong {
	font-size: clamp(0.96rem, 1.3vw, 1.18rem);
	font-weight: 650;
	letter-spacing: -0.025em;
}

.hero-stage__panel li em {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--soft);
	color: var(--pink);
	font-size: 0.72rem;
	font-style: normal;
}

.hero-stage__panel-footer {
	display: grid;
	gap: 3px;
	margin-top: auto;
	padding-top: 25px;
}

.hero-stage__panel-footer span {
	color: var(--muted);
	font-size: 0.59rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.hero-stage__panel-footer strong {
	font-size: 1.05rem;
	letter-spacing: -0.03em;
}

.hero-stage__stats {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 4;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: 50%;
	padding: 24px 34px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(22, 0, 85, 0.36);
	backdrop-filter: blur(15px);
}

.hero-stage__stats div {
	display: grid;
	gap: 2px;
	padding-inline: 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stage__stats div:first-child {
	padding-left: 0;
}

.hero-stage__stats div:last-child {
	border-right: 0;
}

.hero-stage__stats strong {
	font-size: 1.35rem;
	letter-spacing: -0.05em;
}

.hero-stage__stats span {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.57rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.logo-carousel {
	overflow: hidden;
	padding-block: 44px 48px;
	border-bottom: 1px solid var(--line);
	background: var(--soft);
}

.logo-carousel__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 26px;
}

.logo-carousel__heading .kicker {
	margin-bottom: 0;
	color: var(--ink);
}

.logo-carousel__heading > span {
	color: var(--muted);
	font-size: 0.66rem;
	font-weight: 650;
}

.logo-carousel__viewport {
	overflow: hidden;
}

.logo-carousel__track {
	display: flex;
	width: max-content;
	animation: logo-carousel-scroll 58s linear infinite;
	will-change: transform;
}

.logo-carousel__set {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: clamp(18px, 2vw, 30px);
	padding-right: clamp(18px, 2vw, 30px);
}

.logo-carousel figure {
	display: grid;
	place-items: center;
	width: clamp(112px, 10vw, 148px);
	height: 84px;
	flex: 0 0 auto;
	margin: 0;
}

.logo-carousel figure a {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
}

.logo-carousel img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: grayscale(1) contrast(1.08);
	opacity: 0.72;
	transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.logo-carousel figure:hover img {
	filter: grayscale(0) contrast(1);
	opacity: 1;
	transform: scale(1.04);
}

@keyframes logo-carousel-scroll {
	to {
		transform: translateX(-50%);
	}
}

.section-intro {
	margin-bottom: clamp(60px, 8vw, 100px);
}

.section-intro h2 {
	margin-bottom: 26px;
}

.section-intro > p:last-child,
.section-intro > div > p:not(.kicker) {
	color: var(--muted);
}

.section-intro--center {
	text-align: left;
}

.section-intro--center .kicker {
	justify-content: flex-start;
}

.section-intro--center > p:last-child {
	margin-bottom: 0;
}

.section-intro--split {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	align-items: end;
	gap: 100px;
}

.section-intro--split h2 {
	margin-bottom: 0;
}

.section-intro--split > div:last-child > p,
.section-intro--split > p {
	max-width: 460px;
	margin-bottom: 26px;
	color: var(--muted);
}

.services {
	padding-block: clamp(78px, 9vw, 124px);
	background: #fff;
}

.services .section-intro {
	margin-bottom: clamp(42px, 5vw, 68px);
}

.services__intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: clamp(32px, 5vw, 80px);
}

.services__intro h2 {
	color: var(--ink);
	font-weight: 800;
	letter-spacing: -0.06em;
}

.services__intro h2 .title-gradient {
	font-size: 1.04em;
	font-family: "Kaushan Script", "Segoe Script", cursive;
	font-weight: 400;
	letter-spacing: -0.045em;
	-webkit-text-fill-color: transparent;
}

.services__intro-copy > p:last-child {
	margin-bottom: 0;
	color: var(--muted);
}

.services__contact {
	margin-bottom: 3px;
	white-space: nowrap;
}

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

.service-tile {
	--service-accent: var(--pink);
	--service-wash: #fff0f5;
	--service-hover-duration: 460ms;
	--service-hover-ease: cubic-bezier(0.22, 1, 0.36, 1);
	position: relative;
	isolation: isolate;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 330px;
	padding: 30px;
	overflow: hidden;
	border: 1px solid #e7e4e1;
	border-radius: 8px;
	background: linear-gradient(145deg, #fff 42%, var(--service-wash) 135%);
	box-shadow: 0 12px 34px rgba(22, 0, 85, 0.055);
	transform: translate3d(0, 0, 0);
	transition:
		transform var(--service-hover-duration) var(--service-hover-ease),
		border-color var(--service-hover-duration) ease,
		box-shadow var(--service-hover-duration) var(--service-hover-ease);
}

.service-tile::before {
	position: absolute;
	top: 0;
	left: 30px;
	width: 58px;
	height: 4px;
	border-radius: 0 0 4px 4px;
	background: var(--service-accent);
	content: "";
	transform-origin: left center;
	transition: transform var(--service-hover-duration) var(--service-hover-ease);
}

.service-tile::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: radial-gradient(circle at 86% 16%, color-mix(in srgb, var(--service-accent) 13%, transparent), transparent 42%);
	content: "";
	opacity: 0;
	transform: translate3d(18px, -12px, 0) scale(0.92);
	transition:
		opacity var(--service-hover-duration) ease,
		transform var(--service-hover-duration) var(--service-hover-ease);
}

.service-tile:hover {
	transform: translate3d(0, -7px, 0);
	border-color: var(--service-accent);
	box-shadow: 0 25px 52px rgba(22, 0, 85, 0.12);
}

.service-tile:hover::before {
	transform: scaleX(1.18);
}

.service-tile:hover::after {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
}

.service-tile:focus-visible {
	outline: 3px solid var(--service-accent);
	outline-offset: 4px;
}

.service-tile__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}

.service-tile__content {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	transform: translate3d(0, 0, 0);
	transition: transform var(--service-hover-duration) var(--service-hover-ease);
}

.service-tile__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: 18px;
	color: var(--service-accent);
	transform-origin: left center;
	transition: transform var(--service-hover-duration) var(--service-hover-ease);
}

.service-tile__icon::before {
	width: 36px;
	height: 36px;
	background: currentColor;
	content: "";
	-webkit-mask: var(--service-icon) center / contain no-repeat;
	mask: var(--service-icon) center / contain no-repeat;
	transition: transform var(--service-hover-duration) var(--service-hover-ease);
}

.service-tile:hover .service-tile__content {
	transform: translate3d(0, -2px, 0);
}

.service-tile:hover .service-tile__icon {
	transform: translateY(-4px) scale(1.08);
}

.service-tile:hover .service-tile__icon::before {
	transform: rotate(-4deg);
}

.service-tile__number,
.service-tile__label {
	color: var(--service-accent);
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.service-tile__arrow {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid color-mix(in srgb, var(--service-accent) 38%, transparent);
	border-radius: 50%;
	color: var(--service-accent);
	font-size: 1rem;
	transition:
		background-color var(--service-hover-duration) ease,
		border-color var(--service-hover-duration) ease,
		color var(--service-hover-duration) ease,
		transform var(--service-hover-duration) var(--service-hover-ease);
}

.service-tile:hover .service-tile__arrow {
	background: var(--service-accent);
	color: #fff;
	transform: translate(2px, -2px) rotate(45deg);
}

.service-tile h3 {
	margin-top: 11px;
	font-size: clamp(1.65rem, 2.2vw, 2.25rem);
}

.service-tile p {
	max-width: 34ch;
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 0.84rem;
}

.service-tile--web {
	--service-accent: #fff;
	--service-icon: url("../icons/code-xml.svg");
	background: var(--gradient);
	color: #fff;
	border-color: transparent;
	box-shadow: 0 18px 44px rgba(66, 0, 87, 0.2);
}

.service-tile--web p {
	color: rgba(255, 255, 255, 0.78);
}

.service-tile--web .service-tile__arrow {
	border-color: rgba(255, 255, 255, 0.42);
}

.service-tile--web:hover .service-tile__arrow {
	color: var(--pink);
}

.service-tile--commerce {
	--service-accent: #64a800;
	--service-wash: #eef8e2;
	--service-icon: url("../icons/shopping-cart.svg");
}

.service-tile--search {
	--service-accent: #f1600f;
	--service-wash: #fff0e8;
	--service-icon: url("../icons/search-check.svg");
}

.service-tile--ads {
	--service-accent: #1877f2;
	--service-wash: #eef5ff;
	--service-icon: url("../icons/megaphone.svg");
}

.service-tile--development {
	--service-accent: #6934ce;
	--service-wash: #f2edff;
	--service-icon: url("../icons/blocks.svg");
}

.service-tile--hosting {
	--service-accent: #e5232e;
	--service-wash: #fff0f1;
	--service-icon: url("../icons/server.svg");
}

.service-tile--domain {
	--service-accent: #f2b705;
	--service-wash: #fff8d6;
	--service-icon: url("../icons/search-check.svg");
}

.service-tile--domain .service-tile__number,
.service-tile--domain .service-tile__label {
	color: #7b5700;
}

.service-tile--domain:hover .service-tile__arrow {
	color: var(--ink);
}

.service-tile--brand {
	--service-accent: #f718be;
	--service-wash: #fff0fa;
	--service-icon: url("../icons/megaphone.svg");
}

.intro-video {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	border-block: 1px solid #d9d7d2;
	background: #fff;
	color: var(--ink);
}

.intro-video::before,
.intro-video::after {
	position: absolute;
	border: 1px solid rgba(16, 16, 21, 0.075);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.intro-video::before {
	top: -330px;
	right: -130px;
	width: 650px;
	height: 650px;
	animation: intro-orbit 14s ease-in-out infinite;
}

.intro-video::after {
	bottom: -250px;
	left: 34%;
	width: 480px;
	height: 480px;
	animation: intro-orbit 18s ease-in-out -5s infinite reverse;
}

.intro-video__words {
	position: absolute;
	inset: 0;
	z-index: -1;
	display: grid;
	align-content: space-around;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent, #000 18%, #000 82%, transparent);
	mask-image: linear-gradient(to right, transparent, #000 18%, #000 82%, transparent);
	opacity: 0.04;
	pointer-events: none;
	user-select: none;
}

.intro-video__words span {
	width: max-content;
	color: #1c1720;
	font-size: clamp(3.4rem, 7vw, 7.2rem);
	font-weight: 700;
	letter-spacing: -0.055em;
	line-height: 0.9;
	white-space: nowrap;
	animation: intro-word-drift 24s ease-in-out infinite;
}

.intro-video__words span:last-child {
	animation-direction: reverse;
	animation-duration: 29s;
}

@keyframes intro-word-drift {
	0%,
	100% {
		transform: translateX(-3%);
	}

	50% {
		transform: translateX(1%);
	}
}

@keyframes intro-orbit {
	0%,
	100% {
		translate: 0 0;
	}

	50% {
		translate: 14px -10px;
	}
}

.intro-video__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
	align-items: center;
	gap: clamp(58px, 7vw, 100px);
}

.intro-video__content {
	max-width: 600px;
}

.intro-video__content .kicker {
	color: var(--ink);
}

.intro-video__content h2 {
	margin-bottom: 30px;
	font-size: clamp(2.35rem, 3.7vw, 3.8rem);
}

.intro-video__lead {
	max-width: 52ch;
	margin-bottom: 30px;
	color: var(--muted);
	font-size: clamp(0.98rem, 1.35vw, 1.12rem);
}

.intro-video__pillars {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 38px;
}

.intro-video__pillars span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 11px;
	border: 1px solid rgba(16, 16, 21, 0.1);
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.58);
	color: #4f4e57;
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.035em;
}

.intro-video__pillars b {
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--pink);
	box-shadow: 0 0 0 4px rgb(from var(--pink) r g b / 0.08);
}

.intro-video__actions {
	display: flex;
	align-items: center;
	gap: 26px;
}

.intro-video__actions .arrow-link {
	color: var(--ink);
}

.intro-video__media {
	width: min(100%, 650px);
	margin: 0;
	justify-self: end;
}

.intro-video__review {
	display: flex;
	justify-content: flex-end;
	margin: 0 5px 12px 0;
}

.review-badge--intro {
	gap: 7px;
	padding: 7px 10px;
	border: 1px solid rgba(16, 16, 21, 0.09);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 8px 24px rgba(35, 26, 44, 0.08);
	backdrop-filter: blur(8px);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.review-badge--intro:hover {
	border-color: rgb(from var(--pink) r g b / 0.28);
	box-shadow: 0 10px 28px rgba(35, 26, 44, 0.12);
	transform: translateY(-1px);
}

.review-badge--intro .review-badge__google-mark {
	width: 18px;
	height: 18px;
}

.review-badge--intro .review-badge__score {
	font-size: 0.76rem;
}

.review-badge--intro .review-badge__stars {
	font-size: 0.5rem;
}

.review-badge--intro .review-badge__copy small {
	font-size: 0.48rem;
}

.review-badge--intro .review-badge__verified {
	position: absolute;
	top: -5px;
	right: -5px;
	width: 15px;
	height: 15px;
	font-size: 0.4rem;
}

.intro-video__frame {
	position: relative;
	isolation: isolate;
	padding: 9px;
	border: 1px solid rgba(16, 16, 21, 0.1);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 28px 72px rgba(35, 26, 44, 0.15);
	backdrop-filter: blur(10px);
}

.intro-video__frame::before {
	position: absolute;
	inset: 18px -16px -16px 18px;
	z-index: -1;
	border: 1px solid rgb(from var(--pink) r g b / 0.22);
	border-radius: 8px;
	content: "";
}

.video-facade {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border: 0;
	border-radius: 5px;
	background: #08031d;
	color: #fff;
	cursor: pointer;
}

.video-facade__thumbnail {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: filter 420ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.video-facade:hover .video-facade__thumbnail {
	filter: saturate(1.06) brightness(1.03);
	transform: scale(1.025);
}

.video-facade::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top, rgba(5, 1, 24, 0.82), transparent 62%),
		linear-gradient(90deg, rgba(5, 3, 24, 0.32), transparent 58%);
	content: "";
	pointer-events: none;
}

.video-facade__topline {
	position: absolute;
	top: 25px;
	right: 27px;
	left: 27px;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.video-facade__label {
	position: absolute;
	right: 27px;
	bottom: 27px;
	left: 27px;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 15px;
	text-align: left;
}

.video-facade__label > span:last-child {
	display: grid;
	gap: 2px;
}

.video-facade__label strong {
	font-size: clamp(0.88rem, 1.3vw, 1.1rem);
	letter-spacing: -0.01em;
}

.video-facade__label small {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.66rem;
}

.video-facade__play {
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	flex: 0 0 auto;
	padding-left: 3px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
	color: #b10973;
	font-size: 1rem;
	transition: transform 220ms ease;
}

.video-facade:hover .video-facade__play {
	transform: scale(1.07);
}

.video-facade__iframe {
	display: block;
	width: 100%;
	border: 0;
	border-radius: 5px;
	aspect-ratio: 16 / 9;
	background: #0d0d12;
}

.intro-video__media figcaption {
	margin-top: 18px;
	color: var(--muted);
	font-size: 0.66rem;
	font-weight: 650;
	letter-spacing: 0.025em;
	text-align: right;
}

.intro-video__media figcaption span {
	padding-right: 5px;
	color: var(--pink);
	font-weight: 800;
	text-transform: uppercase;
}

.work {
	background: var(--soft);
}

.work .section-intro {
	margin-bottom: clamp(26px, 3vw, 40px);
}

.portfolio-carousel {
	position: relative;
}

.portfolio-carousel__controls {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 22px;
	margin-bottom: 24px;
}

.portfolio-carousel__count {
	display: flex;
	align-items: baseline;
	gap: 7px;
	min-width: 70px;
	color: #9d9da5;
	font-size: 0.7rem;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

.portfolio-carousel__count strong {
	color: var(--ink);
	font-size: 1.05rem;
}

.portfolio-carousel__count i {
	font-style: normal;
}

.portfolio-carousel__buttons {
	display: flex;
	gap: 8px;
}

.portfolio-carousel__buttons button {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid #d8d8dc;
	border-radius: 8px;
	background: #fff;
	color: var(--ink);
	font-size: 1.05rem;
	cursor: pointer;
	transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.portfolio-carousel__buttons button:hover {
	border-color: var(--pink);
	background: var(--pink);
	color: #fff;
	transform: translateY(-2px);
}

.portfolio-carousel.is-single .portfolio-carousel__buttons,
.portfolio-carousel.is-single .portfolio-carousel__count {
	display: none;
}

.portfolio-carousel__viewport {
	margin-inline: -2px;
	padding: 2px 2px 18px;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	cursor: grab;
	touch-action: pan-y;
	-webkit-overflow-scrolling: touch;
}

.portfolio-carousel__viewport.is-dragging {
	scroll-behavior: auto;
	scroll-snap-type: none;
	cursor: grabbing;
	user-select: none;
}

.portfolio-carousel__viewport.is-dragging a {
	pointer-events: none;
}

.portfolio-carousel__viewport::-webkit-scrollbar {
	display: none;
}

.portfolio-carousel__track {
	display: flex;
	gap: 22px;
	width: max-content;
}

.portfolio-card {
	width: clamp(340px, 42vw, 550px);
	flex: 0 0 auto;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.portfolio-card__visual {
	position: relative;
	aspect-ratio: 5 / 4;
	overflow: hidden;
	border-radius: 10px;
	background: #dedce2;
	box-shadow: 0 18px 46px rgba(20, 15, 33, 0.1);
}

.portfolio-card__visual::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top, rgba(8, 7, 16, 0.97) 0%, rgba(12, 10, 24, 0.76) 36%, rgba(12, 10, 24, 0.12) 72%),
		linear-gradient(120deg, rgba(11, 8, 28, 0.18), transparent 50%);
	content: "";
	pointer-events: none;
}

.portfolio-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 350ms ease;
}

.portfolio-card:hover img {
	filter: saturate(1.06);
	transform: scale(1.035);
}

.portfolio-card__overlay {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	padding: 30px;
	color: #fff;
}

.portfolio-card__overlay p {
	margin-bottom: 7px;
	color: var(--pink-bright);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.portfolio-card__overlay h2,
.portfolio-card__overlay h3 {
	font-size: clamp(1.75rem, 2.7vw, 2.75rem);
	letter-spacing: -0.055em;
}

.portfolio-card__arrow {
	display: inline-block;
	width: auto;
	height: auto;
	flex: 0 0 auto;
	border-bottom: 1px solid rgba(255, 255, 255, 0.72);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.7;
	transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.portfolio-card:hover .portfolio-card__arrow {
	border-color: var(--pink-bright);
	color: var(--pink-bright);
	transform: translateX(3px);
}

/* Portfolio page — reuses home `.hero` background treatment */
.hero.portfolio-hero {
	text-align: center;
	padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
}

.portfolio-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 820px;
	margin-inline: auto;
	text-align: center;
}

.portfolio-hero__kicker,
.portfolio-hero .kicker {
	display: inline-flex;
	justify-content: center;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.portfolio-hero h1 {
	max-width: 100%;
	margin: 0 0 22px;
	font-size: clamp(2.8rem, 6vw, 5.4rem);
	font-weight: 800;
	letter-spacing: -0.055em;
	line-height: 1.04;
}

.portfolio-hero__lead {
	max-width: 54ch;
	margin: 0 auto;
	color: var(--muted);
	font-size: clamp(1rem, 1.35vw, 1.12rem);
	line-height: 1.7;
}

.portfolio-archive {
	padding-block: clamp(48px, 6vw, 88px) clamp(80px, 10vw, 130px);
	background: var(--soft);
}

.portfolio-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 24px);
}

@media (max-width: 1100px) {
	.portfolio-archive__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.portfolio-archive__empty {
	margin: 0;
	padding: 48px 24px;
	text-align: center;
	color: var(--muted);
}

.portfolio-device-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: clamp(14px, 1.6vw, 20px);
	border: 1px solid rgba(16, 16, 21, 0.08);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 18px 40px rgba(16, 16, 21, 0.05);
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.portfolio-device-card:hover {
	transform: translateY(-4px);
	border-color: rgb(from var(--pink) r g b / 0.22);
	box-shadow: 0 28px 54px rgba(16, 16, 21, 0.09);
}

.portfolio-device-card__devices {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 12px;
	padding: 8px 4px 4px;
}

/* Desktop monitor */
.portfolio-device--desktop {
	margin: 0;
	min-width: 0;
}

.portfolio-device--desktop .portfolio-device__bezel {
	padding: 10px 10px 12px;
	border: 1px solid rgba(16, 16, 21, 0.12);
	border-radius: 14px 14px 8px 8px;
	background: linear-gradient(180deg, #2a2a30 0%, #1a1a1f 100%);
	box-shadow:
		0 18px 36px rgba(16, 16, 21, 0.14),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.portfolio-device__chrome {
	display: flex;
	gap: 5px;
	margin-bottom: 8px;
	padding-left: 2px;
}

.portfolio-device__chrome span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
}

.portfolio-device__chrome span:first-child {
	background: var(--pink);
}

.portfolio-device--desktop .portfolio-device__screen {
	position: relative;
	height: clamp(132px, 13.5vw, 172px);
	overflow: hidden;
	border-radius: 4px;
	background: #0f0f12;
}

.portfolio-device__stand {
	display: block;
	width: 56px;
	height: 18px;
	margin: 0 auto;
	background: linear-gradient(180deg, #c8c8ce, #a8a8b0);
	clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
}

.portfolio-device__base {
	display: block;
	width: 120px;
	height: 6px;
	margin: 0 auto;
	border-radius: 999px;
	background: linear-gradient(180deg, #b8b8c0, #8e8e96);
	box-shadow: 0 4px 10px rgba(16, 16, 21, 0.12);
}

/* Phone */
.portfolio-device--mobile {
	margin: 0 0 10px;
	width: clamp(52px, 6.4vw, 68px);
	flex-shrink: 0;
}

.portfolio-device--mobile .portfolio-device__bezel {
	position: relative;
	padding: 7px 4px 8px;
	border: 2px solid #1a1a1f;
	border-radius: 14px;
	background: linear-gradient(165deg, #2e2e34, #15151a);
	box-shadow:
		0 16px 28px rgba(16, 16, 21, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.portfolio-device__notch {
	display: block;
	width: 36%;
	height: 3px;
	margin: 0 auto 4px;
	border-radius: 999px;
	background: #0a0a0c;
}

.portfolio-device--mobile .portfolio-device__screen {
	position: relative;
	height: clamp(92px, 10.5vw, 124px);
	overflow: hidden;
	border-radius: 5px;
	background: #0f0f12;
}

.portfolio-device__home {
	display: block;
	width: 28%;
	height: 3px;
	margin: 7px auto 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.22);
}

/* Responsive homepage captures fill their matching device screens. */
.portfolio-device--desktop .portfolio-device__screen,
.portfolio-device--mobile .portfolio-device__screen {
	container-type: size;
}

.portfolio-device__scroll {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.portfolio-device__scroll img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: top center;
}

.portfolio-device-card__meta {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px 16px;
	padding-top: 4px;
	border-top: 1px solid rgba(16, 16, 21, 0.07);
}

.portfolio-device-card__logo {
	display: grid;
	place-items: center;
	width: 52px;
	height: 38px;
	padding: 5px;
	border: 1px solid rgba(16, 16, 21, 0.08);
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
	flex-shrink: 0;
}

.portfolio-device-card__logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.portfolio-device-card__logo--fallback {
	color: var(--pink);
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.portfolio-device-card__number {
	color: var(--pink);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.portfolio-device-card__type {
	margin: 0 0 4px;
	color: var(--muted);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.portfolio-device-card__title {
	margin: 0;
	font-size: clamp(0.98rem, 1.15vw, 1.18rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.2;
}

.portfolio-device-card__title a {
	color: inherit;
	text-decoration: none;
}

.portfolio-device-card__title a:hover {
	color: var(--pink);
}

.portfolio-device-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--pink) 8%, #fff);
	color: var(--pink);
	font-size: 0.7rem;
	font-weight: 800;
	white-space: nowrap;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.portfolio-device-card__link:hover {
	background: var(--pink);
	color: #fff;
	transform: translateY(-1px);
}

.numbers {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding-block: clamp(82px, 9vw, 132px);
	background: #101016;
	color: #fff;
}

.numbers::before {
	position: absolute;
	inset: -40% -15% auto 35%;
	z-index: -1;
	height: 150%;
	background:
		radial-gradient(circle at 54% 45%, rgb(from var(--pink) r g b / 0.2), transparent 38%),
		radial-gradient(circle at 78% 32%, rgba(71, 0, 137, 0.24), transparent 34%);
	content: "";
	pointer-events: none;
}

.numbers__layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.72fr) minmax(520px, 1.28fr);
	align-items: center;
	gap: clamp(70px, 10vw, 150px);
}

.numbers__intro {
	max-width: 440px;
}

.numbers__intro .kicker {
	margin-bottom: 22px;
	color: rgba(255, 255, 255, 0.82);
}

.numbers__intro h2 {
	margin-bottom: 24px;
	color: #fff;
	font-size: clamp(2.5rem, 4.2vw, 4.5rem);
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.numbers__intro > p:last-child {
	max-width: 38ch;
	color: #fff;
	font-size: clamp(0.9rem, 1.15vw, 1.03rem);
	line-height: 1.7;
}

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

.numbers__grid article {
	min-height: 215px;
	padding: 0 0 42px;
}

.numbers__grid article:nth-child(2n) {
	padding-left: clamp(30px, 4vw, 58px);
	border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.numbers__grid article:nth-child(n + 3) {
	padding-top: 42px;
	padding-bottom: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.numbers__grid strong {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
	color: #fff;
	font-size: clamp(3.8rem, 6vw, 6.5rem);
	font-weight: 700;
	letter-spacing: -0.085em;
	line-height: 0.82;
}

.numbers__grid sup {
	margin: 0.03em 0 0 0.12em;
	background: var(--gradient);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	font-size: 0.36em;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	text-transform: uppercase;
}

.numbers__grid h3 {
	margin-bottom: 8px;
	color: #fff;
	font-size: clamp(0.98rem, 1.25vw, 1.15rem);
	letter-spacing: -0.02em;
}

.numbers__grid p {
	max-width: 30ch;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.75rem;
	line-height: 1.6;
}

.studio__grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(70px, 11vw, 150px);
}

.studio__statement h2 {
	max-width: 780px;
	font-size: clamp(2.2rem, 3.7vw, 4rem);
}

.studio__copy > p {
	margin-bottom: 54px;
	color: var(--muted);
	font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.studio__principles {
	border-top: 1px solid var(--line);
}

.studio__principles article {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 24px;
	padding-block: 27px;
	border-bottom: 1px solid var(--line);
}

.studio__principles article > span {
	color: var(--pink);
	font-size: 0.65rem;
	font-weight: 800;
}

.studio__principles h3 {
	margin-bottom: 7px;
	font-size: 1.3rem;
}

.studio__principles p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 0.85rem;
}

.process {
	border-top: 1px solid var(--line);
	background: var(--soft);
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--line);
	list-style: none;
}

.process-gradient-defs {
	position: absolute;
	overflow: hidden;
	pointer-events: none;
}

.process-grid li {
	position: relative;
	min-height: 230px;
	padding: 30px;
	border-right: 1px solid var(--line);
}

.process-grid li:first-child {
	padding-left: 0;
}

.process-grid li:last-child {
	border-right: 0;
}

.process-grid li > span {
	position: absolute;
	top: 30px;
	right: 30px;
	display: inline-flex;
	padding: 7px 11px;
	border-radius: 7px;
	background: #fff;
	color: var(--pink);
	font-size: 0.64rem;
	font-weight: 800;
}

.process-grid__icon {
	display: block;
	width: 46px;
	height: 46px;
	margin-top: 0;
	overflow: visible;
	color: var(--ink);
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-grid li:hover .process-grid__icon {
	stroke: url("#process-icon-gradient");
	transform: translateY(-4px);
}

.process-grid h3 {
	margin-top: 26px;
	margin-bottom: 12px;
}

.process-grid p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 0.85rem;
}

.review {
	background: #fff;
}

.review__inner {
	position: relative;
	max-width: 1050px;
	text-align: center;
}

.review__rating {
	display: grid;
	justify-content: center;
	justify-items: center;
	gap: 6px;
	margin-bottom: 58px;
}

.review__google-mark {
	width: 26px;
	height: 26px;
	margin-bottom: 4px;
}

.review__score-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.review__rating strong {
	font-size: 1.05rem;
	letter-spacing: -0.05em;
	line-height: 1;
}

.review__score-row > span {
	color: #f2b600;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	line-height: 1;
}

.review__rating small {
	color: var(--muted);
	font-size: 0.7rem;
	line-height: 1.2;
}

.review-slider {
	position: relative;
	display: grid;
}

.review-slide {
	grid-area: 1 / 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0;
	opacity: 0;
	pointer-events: none;
	transform: translateY(14px);
	visibility: hidden;
	transition:
		opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0s linear 520ms;
}

.review-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
	transition-delay: 0s;
}

.review-slider__arrow {
	position: absolute;
	top: 42%;
	z-index: 2;
	display: grid;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(15, 15, 21, 0.12);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.74);
	color: rgba(15, 15, 21, 0.48);
	font: inherit;
	font-size: 1.05rem;
	line-height: 1;
	place-items: center;
	transform: translateY(-50%);
	transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, background 180ms ease;
	cursor: pointer;
}

.review-slider__arrow:hover,
.review-slider__arrow:focus-visible {
	border-color: rgba(15, 15, 21, 0.3);
	background: #fff;
	color: var(--ink);
}

.review-slider__arrow:focus-visible {
	outline: 2px solid var(--pink);
	outline-offset: 3px;
}

.review-slider__arrow--prev {
	left: -66px;
}

.review-slider__arrow--next {
	right: -66px;
}

.review-slider__dots {
	grid-area: 2 / 1;
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: -24px 0 30px;
}

.review-slider__dot {
	width: 7px;
	height: 7px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(15, 15, 21, 0.2);
	transition: width 180ms ease, border-radius 180ms ease, background 180ms ease;
	cursor: pointer;
}

.review-slider__dot.is-active {
	width: 22px;
	border-radius: 999px;
	background: var(--pink);
}

.review-slider__dot:focus-visible {
	outline: 2px solid var(--pink);
	outline-offset: 3px;
}

.review-slider__arrow[hidden],
.review-slider__dots[hidden] {
	display: none;
}

@media (max-width: 1180px) {
	.review-slide {
		padding-inline: 54px;
	}

	.review-slider__arrow--prev {
		left: 4px;
	}

	.review-slider__arrow--next {
		right: 4px;
	}
}

@media (max-width: 640px) {
	.review-slide {
		padding-inline: 34px;
	}

	.review-slider__arrow {
		width: 34px;
		height: 34px;
		font-size: 0.9rem;
	}

	.review-slider__arrow--prev {
		left: -2px;
	}

	.review-slider__arrow--next {
		right: -2px;
	}
}

.review-verified {
	position: absolute;
	top: -48px;
	right: 0;
	width: 44px;
	height: 44px;
	font-size: 1.1rem;
}

.motion-ready .reveal-on-scroll {
	opacity: 0;
	translate: 0 18px;
	transition:
		opacity 620ms cubic-bezier(0.2, 0.75, 0.2, 1) var(--reveal-delay, 0ms),
		translate 620ms cubic-bezier(0.2, 0.75, 0.2, 1) var(--reveal-delay, 0ms);
	will-change: opacity, translate;
}

/* Keep the service-card hover motion intact when scroll reveals are enabled. */
.motion-ready .service-tile.reveal-on-scroll {
	transition:
		opacity 620ms cubic-bezier(0.2, 0.75, 0.2, 1) var(--reveal-delay, 0ms),
		translate 620ms cubic-bezier(0.2, 0.75, 0.2, 1) var(--reveal-delay, 0ms),
		transform var(--service-hover-duration) var(--service-hover-ease),
		border-color var(--service-hover-duration) ease,
		box-shadow var(--service-hover-duration) var(--service-hover-ease);
}

.motion-ready .reveal-on-scroll.is-visible {
	opacity: 1;
	translate: 0 0;
}

.review blockquote {
	max-width: 900px;
	margin-bottom: 40px;
	margin-inline: auto;
	font-size: clamp(2rem, 3.8vw, 3.8rem);
	font-weight: 700;
	letter-spacing: -0.048em;
	line-height: 1.14;
}

.review figcaption {
	display: grid;
	gap: 2px;
	margin-bottom: 45px;
}

.review figcaption strong {
	font-size: 0.78rem;
}

.review figcaption span {
	color: var(--muted);
	font-size: 0.66rem;
}

.footer-cta {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding-block: clamp(26px, 4vw, 52px);
	background: #101016;
	color: #fff;
}

.footer-cta::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(ellipse 34% 105% at 68% 54%, rgb(from var(--pink) r g b / 0.3) 0%, rgb(from var(--pink) r g b / 0.13) 42%, transparent 74%),
		radial-gradient(ellipse 44% 135% at 84% 50%, rgba(91, 0, 128, 0.58) 0%, rgba(62, 0, 98, 0.3) 42%, transparent 78%);
	content: "";
	pointer-events: none;
}

.footer-cta::after {
	position: absolute;
	top: -300px;
	right: -170px;
	z-index: 0;
	width: 640px;
	height: 640px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.footer-cta__inner {
	position: relative;
	z-index: 1;
	isolation: isolate;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
	align-items: center;
	gap: clamp(50px, 8vw, 120px);
	padding: clamp(38px, 5vw, 64px);
	background: transparent;
}

.footer-cta__copy,
.footer-cta__actions {
	position: relative;
	z-index: 1;
}

.footer-cta .kicker {
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.82);
}

.footer-cta h2 {
	max-width: 13ch;
	margin-bottom: 0;
	font-size: clamp(2.2rem, 3.65vw, 3.8rem);
	letter-spacing: -0.06em;
	line-height: 1;
}

.footer-cta h2 span {
	background: linear-gradient(100deg, #ff326d 0%, #ec1976 42%, #b75ad5 100%);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	font-family: "Kaushan Script", "Segoe Script", cursive;
	font-style: normal;
	font-weight: 400;
}

.footer-cta__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	padding-left: clamp(30px, 4vw, 58px);
	border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-cta__actions > span {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.57rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.footer-cta__actions .button {
	justify-content: space-between;
	width: 100%;
	min-width: 300px;
}

.footer-cta__actions p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.48);
	font-size: 0.69rem;
}

.footer-cta__phone {
	margin-left: 4px;
	color: #fff;
	font-size: inherit;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 5px;
}

.site-footer {
	border-top: 1px solid #dedde2;
	background: #f3f3f5;
	color: var(--ink);
}

.site-footer__top {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: clamp(70px, 9vw, 130px);
	padding-block: clamp(72px, 8vw, 105px);
}

.brand--footer {
	display: inline-flex;
	margin-bottom: 28px;
}

.brand--footer img {
	width: 112px;
}

.site-footer__brand p {
	max-width: 380px;
	margin-bottom: 28px;
	color: var(--muted);
	font-size: 0.86rem;
	line-height: 1.7;
}

.site-footer__location {
	display: flex;
	align-items: center;
	gap: 9px;
	color: #62616a;
	font-size: 0.63rem;
	font-weight: 650;
}

.site-footer__location i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--pink);
	box-shadow: 0 0 0 5px rgb(from var(--pink) r g b / 0.08);
}

.site-footer__nav {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(28px, 4vw, 55px);
}

.site-footer__nav > div {
	padding-left: clamp(20px, 2.5vw, 36px);
	border-left: 1px solid #d8d7dc;
}

.site-footer h3 {
	margin: 0 0 22px;
	color: #85838b;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.footer-menu {
	display: grid;
	gap: 11px;
}

.footer-menu a,
.site-footer__contact a,
.site-footer__contact address {
	color: #55545c;
	font-size: 0.78rem;
	font-style: normal;
}

.footer-menu a,
.site-footer__contact a {
	display: inline-block;
	transition: color 180ms ease, transform 180ms ease;
}

.footer-menu a:hover,
.site-footer__contact a:hover,
.footer-socials a:hover,
.footer-legal a:hover {
	color: var(--pink);
}

.footer-menu a:hover,
.site-footer__contact a:hover {
	transform: translateX(2px);
}

.site-footer__contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 11px;
}

.site-footer__contact address {
	margin-top: 8px;
	color: #85838b;
	line-height: 1.7;
}

.site-footer__bottom {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 30px;
	min-height: 78px;
	border-top: 1px solid #d8d7dc;
	color: #77757e;
	font-size: 0.64rem;
}

.site-footer__bottom p {
	margin-bottom: 0;
}

/* The utility line must remain visible at the physical end of the page. */
.site-footer__bottom > .reveal-on-scroll {
	opacity: 1;
	translate: 0 0;
}

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

.footer-socials,
.footer-legal {
	display: flex;
	gap: 20px;
}

.site-footer__credit {
	justify-self: end;
	padding-right: 76px;
}

.site-footer__credit span {
	color: var(--pink);
}

.site-footer__credit a {
	color: var(--ink);
	font-weight: 750;
}

.site-footer__credit a:hover {
	color: var(--pink);
}

.whatsapp-link {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 35;
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: #23c768;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
	color: #fff;
	font-size: 0.62rem;
	font-weight: 800;
	transition: transform 180ms ease;
}

.whatsapp-link svg {
	display: block;
	width: 28px;
	height: 28px;
}

.whatsapp-link:hover {
	transform: translateY(-4px);
}

.page-hero {
	padding-block: 130px 95px;
	background: linear-gradient(130deg, rgb(from var(--pink) r g b / 0.09), transparent 50%);
}

.page-hero h1 {
	font-size: clamp(3.5rem, 7vw, 7rem);
}

.page-content {
	background: #fff;
}

.prose {
	max-width: 820px;
}

.prose > * + * {
	margin-top: 1.3em;
}

.prose a {
	color: var(--pink);
	text-decoration: underline;
}

@media (max-width: 1100px) {
	.hero__portraits {
		display: none;
	}

	.site-header__inner {
		grid-template-columns: 105px 1fr auto;
	}

	.header-phone {
		display: none;
	}

	.hero-stage {
		grid-template-columns: 0.86fr 1.14fr;
		min-height: 560px;
	}

	.hero-stage__copy {
		padding-left: 52px;
	}

	.hero-stage__stats {
		width: 56%;
	}

	.service-tile {
		min-height: 305px;
		padding: 26px;
	}

	.intro-video__grid {
		grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
		gap: 54px;
	}

	.studio__grid {
		gap: 75px;
	}

	.site-footer__top {
		grid-template-columns: 0.6fr 1.4fr;
		gap: 60px;
	}
}

@media (max-width: 900px) {
	.site-header__inner {
		grid-template-columns: 1fr auto;
		min-height: 78px;
	}

	.header-actions {
		display: none;
	}

	.menu-toggle {
		display: flex;
		position: relative;
		z-index: 70;
	}

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

	.primary-nav {
		display: none;
	}

	/* —— Mobile side drawer —— */
	.mobile-drawer {
		--mobile-menu-duration: 360ms;
		--mobile-menu-ease: cubic-bezier(0.22, 1, 0.36, 1);
		position: fixed;
		inset: 0;
		z-index: 65;
		display: block;
		pointer-events: none;
		visibility: hidden;
		transition: visibility 0s linear var(--mobile-menu-duration);
	}

	.mobile-drawer.is-open {
		pointer-events: auto;
		visibility: visible;
		transition: visibility 0s linear 0s;
	}

	.mobile-drawer__backdrop {
		position: absolute;
		inset: 0;
		background: rgba(16, 16, 21, 0.42);
		opacity: 0;
		transition: opacity var(--mobile-menu-duration) var(--mobile-menu-ease);
	}

	.mobile-drawer.is-open .mobile-drawer__backdrop {
		opacity: 1;
	}

	.mobile-drawer__panel {
		position: absolute;
		top: 0;
		right: 0;
		display: flex;
		flex-direction: column;
		width: min(100%, 400px);
		height: 100%;
		max-height: 100dvh;
		overflow: hidden;
		background:
			radial-gradient(circle at 100% 0%, rgb(from var(--pink-bright) r g b / 0.07), transparent 42%),
			radial-gradient(circle at 0% 100%, rgb(from var(--purple) r g b / 0.05), transparent 40%),
			#ffffff;
		box-shadow: -18px 0 48px rgba(16, 16, 21, 0.14);
		transform: translate3d(100%, 0, 0);
		transition: transform var(--mobile-menu-duration) var(--mobile-menu-ease);
	}

	.mobile-drawer.is-open .mobile-drawer__panel {
		transform: translate3d(0, 0, 0);
	}

	.mobile-drawer__head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		flex-shrink: 0;
		padding: 18px 20px;
		border-bottom: 1px solid rgba(16, 16, 21, 0.08);
		background: rgba(255, 255, 255, 0.88);
	}

	.mobile-drawer__brand img {
		width: 78px;
		height: auto;
	}

	.mobile-drawer__close {
		display: grid;
		place-items: center;
		width: 42px;
		height: 42px;
		padding: 0;
		border: 1px solid rgba(16, 16, 21, 0.1);
		border-radius: 12px;
		background: #fff;
		color: var(--ink);
		font-size: 1.55rem;
		font-weight: 400;
		line-height: 1;
		cursor: pointer;
		transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
	}

	.mobile-drawer__close:hover,
	.mobile-drawer__close:focus-visible {
		border-color: rgb(from var(--pink) r g b / 0.35);
		background: rgb(from var(--pink) r g b / 0.06);
		color: var(--pink);
		outline: none;
	}

	.mobile-drawer__nav {
		flex: 1 1 auto;
		overflow-y: auto;
		overscroll-behavior: contain;
		padding: 8px 0 20px;
		-webkit-overflow-scrolling: touch;
	}

	.mobile-menu {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.mobile-menu > .menu-item {
		border-bottom: 1px solid rgba(16, 16, 21, 0.08);
	}

	.mobile-menu > .menu-item > a {
		display: block;
		padding: 18px 20px;
		font-size: 1.12rem;
		font-weight: 750;
		letter-spacing: -0.03em;
		line-height: 1.2;
	}

	.mobile-menu a::after {
		display: none;
	}

	.mobile-menu .current-menu-item > a,
	.mobile-menu .current_page_item > a,
	.mobile-menu .current-menu-ancestor > a,
	.mobile-menu .current-menu-parent > a {
		color: var(--pink);
	}

	.mobile-menu .menu-item--services,
	.mobile-menu .has-mega-menu {
		position: relative;
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
		column-gap: 0;
		width: 100%;
	}

	.mobile-menu .menu-item--services > a,
	.mobile-menu .has-mega-menu > a {
		display: block;
		padding-right: 8px;
	}

	.mobile-menu .mega-menu__toggle {
		position: relative;
		width: 44px;
		height: 44px;
		margin-right: 10px;
		border-radius: 10px;
		color: var(--ink);
	}

	.mobile-menu .mega-menu__toggle:hover,
	.mobile-menu .mega-menu__toggle:focus-visible {
		background: rgba(16, 16, 21, 0.05);
		outline: none;
	}

	.mobile-menu .mega-menu__toggle-icon {
		width: 10px;
		height: 10px;
		transform: rotate(45deg) translateY(-2px);
	}

	.mobile-menu .menu-item--services.is-mega-open .mega-menu__toggle-icon,
	.mobile-menu .has-mega-menu.is-mega-open .mega-menu__toggle-icon {
		transform: rotate(225deg) translateY(-1px);
	}

	.mobile-menu .mega-menu {
		position: static;
		top: auto;
		left: auto;
		display: block;
		width: 100%;
		max-width: none;
		grid-column: 1 / -1;
		padding: 0 16px;
		opacity: 1;
		visibility: visible;
		pointer-events: none;
		transform: none;
		max-height: 0;
		overflow: hidden;
		transition:
			max-height 340ms cubic-bezier(0.22, 1, 0.36, 1),
			padding 220ms ease;
	}

	.mobile-menu .menu-item--services.is-mega-open > .mega-menu,
	.mobile-menu .has-mega-menu.is-mega-open > .mega-menu {
		max-height: 1600px;
		pointer-events: auto;
		padding: 0 16px 16px;
	}

	.mobile-menu .menu-item--services:hover > .mega-menu,
	.mobile-menu .menu-item--services:focus-within > .mega-menu,
	.mobile-menu .has-mega-menu:hover > .mega-menu,
	.mobile-menu .has-mega-menu:focus-within > .mega-menu {
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.mobile-menu .menu-item--services:not(.is-mega-open) > .mega-menu,
	.mobile-menu .has-mega-menu:not(.is-mega-open) > .mega-menu {
		max-height: 0;
		pointer-events: none;
		padding-bottom: 0;
	}

	.mobile-menu .mega-menu__panel {
		display: grid;
		gap: 14px;
		width: 100%;
		padding: 14px;
		border: 1px solid rgba(16, 16, 21, 0.08);
		border-radius: 16px;
		background:
			radial-gradient(circle at 100% 0%, rgb(from var(--pink-bright) r g b / 0.06), transparent 40%),
			#fff;
		box-shadow: none;
	}

	.mobile-menu .mega-menu__intro {
		display: grid;
		gap: 6px;
		margin: 0;
		padding: 0 0 12px;
		border-bottom: 1px solid rgba(16, 16, 21, 0.08);
	}

	.mobile-menu .mega-menu__kicker {
		margin: 0;
		color: var(--pink);
		font-size: 0.62rem;
		font-weight: 800;
		letter-spacing: 0.12em;
		text-transform: uppercase;
	}

	.mobile-menu .mega-menu__heading {
		margin: 0;
		max-width: none;
		font-size: 1rem;
		font-weight: 800;
		letter-spacing: -0.035em;
		line-height: 1.25;
	}

	.mobile-menu .mega-menu__all {
		justify-self: start;
		margin-top: 4px;
		padding: 8px 12px;
		font-size: 0.72rem;
	}

	.mobile-menu .mega-menu__grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.mobile-menu .mega-menu__item {
		display: grid;
		grid-template-columns: auto 1fr auto;
		grid-template-areas:
			"icon label arrow"
			"icon title arrow"
			"icon desc arrow";
		column-gap: 12px;
		row-gap: 2px;
		align-items: start;
		min-height: 0;
		padding: 12px 12px 13px;
		border: 1px solid #ebe8e5;
		border-radius: 12px;
		background: linear-gradient(155deg, #fff 48%, var(--service-wash) 130%);
		transform: none;
	}

	.mobile-menu .mega-menu__item:hover,
	.mobile-menu .mega-menu__item:focus-visible {
		transform: none;
		border-color: color-mix(in srgb, var(--service-accent) 45%, #ebe8e5);
		box-shadow: 0 8px 18px rgba(22, 0, 85, 0.06);
	}

	.mobile-menu .mega-menu__item-top {
		display: contents;
	}

	.mobile-menu .mega-menu__icon {
		grid-area: icon;
		align-self: center;
		width: 34px;
		height: 34px;
		margin: 0;
		border-radius: 9px;
	}

	.mobile-menu .mega-menu__icon::before {
		width: 18px;
		height: 18px;
	}

	.mobile-menu .mega-menu__arrow {
		grid-area: arrow;
		align-self: center;
		width: 30px;
		height: 30px;
		font-size: 0.85rem;
	}

	.mobile-menu .mega-menu__label {
		grid-area: label;
		margin: 0;
		font-size: 0.58rem;
	}

	.mobile-menu .mega-menu__title {
		grid-area: title;
		margin: 0;
		font-size: 0.88rem;
	}

	.mobile-menu .mega-menu__desc {
		grid-area: desc;
		margin: 2px 0 0;
		font-size: 0.7rem;
		line-height: 1.4;
	}

	.mobile-menu .mega-menu a::after {
		display: none;
	}

	.mobile-menu .menu-item--services > .sub-menu,
	.mobile-menu .has-mega-menu > .sub-menu {
		display: none;
	}

	.mobile-drawer__foot {
		display: grid;
		gap: 12px;
		flex-shrink: 0;
		padding: 16px 20px calc(18px + env(safe-area-inset-bottom, 0px));
		border-top: 1px solid rgba(16, 16, 21, 0.08);
		background: rgba(255, 255, 255, 0.94);
	}

	.mobile-drawer__phone {
		display: grid;
		gap: 2px;
		color: var(--ink);
	}

	.mobile-drawer__phone span {
		color: var(--muted);
		font-size: 0.58rem;
		font-weight: 650;
		letter-spacing: 0.08em;
		text-transform: uppercase;
	}

	.mobile-drawer__phone strong {
		font-size: 1rem;
		font-weight: 750;
		letter-spacing: -0.03em;
	}

	.mobile-drawer__cta {
		justify-content: center;
		width: 100%;
	}

	.site-menu {
		height: auto;
		align-items: stretch;
	}

	.mega-menu__intro {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		margin-bottom: 14px;
		padding-bottom: 14px;
	}

	.mega-menu__heading {
		font-size: 1.05rem;
	}

	.mega-menu__all {
		padding: 9px 14px;
	}

	.mega-menu__grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.mega-menu__item {
		padding: 14px;
	}

	.mega-menu__title {
		font-size: 0.98rem;
	}

	.mega-menu__desc {
		font-size: 0.78rem;
	}

	@media (prefers-reduced-motion: reduce) {
		.mobile-drawer,
		.mobile-drawer__backdrop,
		.mobile-drawer__panel,
		.mobile-menu .mega-menu {
			transition: none;
		}

		.mobile-drawer__panel {
			transform: translate3d(100%, 0, 0);
		}

		.mobile-drawer.is-open .mobile-drawer__panel {
			transform: translate3d(0, 0, 0);
		}

		.mega-menu {
			transition: none;
		}
	}

	.hero__lead {
		grid-template-columns: 1fr;
		gap: 28px;
		max-width: 680px;
		text-align: center;
	}

	.hero__actions {
		justify-content: center;
	}

	.hero__stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 16px;
	}

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

	.hero__stat:last-child:nth-child(odd) {
		grid-column: 1 / -1;
		justify-self: center;
		width: 50%;
	}

	.hero-stage {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.hero-stage__copy {
		padding: 58px 58px 42px;
	}

	.hero-stage__panel {
		min-height: 460px;
		margin: 0 34px 34px;
	}

	.hero-stage__stats {
		position: static;
		width: 100%;
		border-right: 0;
	}

	.logo-carousel__heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.section-intro--split {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 34px;
	}

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

	.service-tile {
		min-height: 290px;
	}

	.intro-video__grid {
		grid-template-columns: 1fr;
		gap: 58px;
	}

	.intro-video__content {
		max-width: 680px;
	}

	.intro-video__media {
		width: min(100%, 620px);
		justify-self: start;
	}

	.portfolio-card {
		width: min(72vw, 530px);
	}

	.numbers__layout {
		grid-template-columns: 1fr;
		gap: 58px;
	}

	.numbers__intro {
		max-width: 620px;
	}

	.numbers__grid article {
		min-height: 195px;
	}

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

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

	.process-grid li:nth-child(2) {
		border-right: 0;
	}

	.process-grid li:nth-child(-n + 2) {
		border-bottom: 1px solid var(--line);
	}

	.process-grid li:nth-child(3) {
		padding-left: 0;
	}

	.footer-cta__inner {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 36px;
		padding: clamp(38px, 6vw, 54px);
	}

	.footer-cta .kicker {
		margin-bottom: 24px;
	}

	.footer-cta__actions {
		width: min(100%, 430px);
		padding-top: 30px;
		padding-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.13);
		border-left: 0;
	}

	.site-footer__top {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.site-footer__bottom {
		grid-template-columns: 1fr auto;
	}

	.site-footer__bottom-links {
		grid-column: 1 / -1;
		grid-row: 2;
		justify-self: center;
	}

	.site-footer__credit {
		grid-column: 2;
		grid-row: 1;
	}
}

@media (max-width: 640px) {
	.container {
		width: min(calc(100% - 32px), var(--container));
	}

	.section {
		padding-block: 86px;
	}

	h1 {
		font-size: clamp(3.5rem, 18vw, 5.6rem);
	}

	h2 {
		font-size: clamp(2rem, 9vw, 3rem);
	}

	.hero {
		padding-top: 65px;
	}

	.hero h1 {
		margin-bottom: 34px;
		font-size: clamp(2.65rem, 13.5vw, 4.2rem);
	}

	.hero__lead {
		margin-bottom: 0;
	}

	.hero__actions {
		align-items: stretch;
		flex-direction: column;
		gap: 15px;
	}

	.hero__actions .button,
	.hero__actions .arrow-link {
		align-self: center;
	}

	.hero__pricing {
		gap: 8px;
	}

	.hero__pricing-head {
		flex-wrap: wrap;
		gap: 5px 10px;
	}

	.hero__pricing-label {
		font-size: 0.7rem;
	}

	.hero__pricing-link {
		font-size: 0.74rem;
	}

	.hero__pricing-body {
		gap: 6px 0;
	}

	.hero__pricing-tier {
		justify-content: center;
	}

	.hero__pricing-tier-label {
		font-size: 0.62rem;
	}

	.hero__pricing-tier--monthly {
		padding-left: 0;
		border-left: 0;
	}

	.hero__pricing-tier strong {
		font-size: 1.16rem;
	}

	.hero__pricing-tier-meta {
		font-size: 0.8rem;
	}

	.hero__pricing-or {
		display: inline;
		color: rgba(78, 78, 91, 0.4);
		font-size: 0.72rem;
		font-weight: 600;
		letter-spacing: 0.04em;
		text-transform: lowercase;
	}

	.hero__stats {
		margin-top: 30px;
		padding-top: 18px;
	}

	.hero__stat {
		justify-content: flex-start;
		gap: 7px;
		padding-inline: 10px;
	}

	.hero__stat:nth-child(odd) {
		padding-left: 0;
	}

	.hero__stat:nth-child(even) {
		padding-right: 0;
		padding-left: 16px;
	}

	.hero__stat:last-child:nth-child(odd) {
		justify-content: center;
		padding-inline: 0;
	}

	.hero__stat strong {
		font-size: 0.96rem;
	}

	.hero__stat > span {
		font-size: 0.48rem;
		letter-spacing: 0.07em;
	}

	.hero-stage {
		min-height: 0;
		border-radius: 14px;
	}

	.hero-stage__copy {
		padding: 42px 30px 34px;
	}

	.hero-stage__copy h2 {
		font-size: 3.65rem;
	}

	.hero-stage__panel {
		min-height: 430px;
		margin: 0 16px 16px;
		padding: 25px;
	}

	.hero-stage__panel li {
		grid-template-columns: 28px 1fr 28px;
		gap: 10px;
		min-height: 76px;
	}

	.hero-stage__panel li strong {
		font-size: 0.9rem;
	}

	.hero-stage__stats {
		padding: 18px 15px;
	}

	.hero-stage__stats div {
		padding-inline: 10px;
	}

	.hero-stage__stats strong {
		font-size: 1.1rem;
	}

	.hero-stage__stats span {
		font-size: 0.48rem;
	}

	.logo-carousel {
		padding-block: 34px 38px;
	}

	.logo-carousel__heading {
		margin-bottom: 20px;
	}

	.logo-carousel__set {
		gap: 18px;
		padding-right: 18px;
	}

	.logo-carousel figure {
		width: 106px;
		height: 72px;
	}

	.services {
		padding-block: 68px 78px;
	}

	.service-tiles {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.service-tile,
	.service-tile:hover {
		min-height: 250px;
		padding: 24px;
	}

	.service-tile__top {
		margin-bottom: 26px;
	}

	.service-tile h3 {
		font-size: 1.55rem;
	}

	.service-tile__arrow {
		width: 38px;
		height: 38px;
	}

	.intro-video__grid {
		gap: 46px;
	}

	.intro-video__content h2 {
		font-size: clamp(2.25rem, 11vw, 3.2rem);
	}

	.intro-video__actions {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
	}

	.intro-video__frame {
		padding: 6px;
		border-radius: 9px;
	}

	.intro-video__frame::before {
		inset: 14px -10px -10px 14px;
	}

	.video-facade__label {
		right: 18px;
		bottom: 18px;
		left: 18px;
	}

	.video-facade__topline {
		top: 17px;
		right: 18px;
		left: 18px;
		font-size: 0.5rem;
	}

	.video-facade__play {
		width: 50px;
		height: 50px;
	}

	.intro-video__media figcaption {
		text-align: left;
	}

	.portfolio-carousel__controls {
		justify-content: space-between;
	}

	.portfolio-card {
		width: min(86vw, 430px);
	}

	.portfolio-card__overlay {
		padding: 22px;
	}

	.portfolio-card__overlay h2,
	.portfolio-card__overlay h3 {
		font-size: 1.75rem;
	}

	.portfolio-archive__grid {
		grid-template-columns: 1fr;
	}

	.portfolio-device-card__meta {
		grid-template-columns: auto minmax(0, 1fr);
		gap: 12px;
	}

	.portfolio-device-card__link {
		grid-column: 1 / -1;
		justify-content: center;
	}

	.portfolio-device--mobile {
		width: 56px;
	}

	.portfolio-device--mobile .portfolio-device__screen {
		height: 100px;
	}

	.portfolio-card__arrow {
		width: 42px;
		height: 42px;
	}

	.numbers {
		padding-block: 68px;
	}

	.numbers__layout {
		gap: 46px;
	}

	.numbers__grid article {
		min-height: 158px;
		padding: 0 16px 28px 0;
	}

	.numbers__grid article:nth-child(2n) {
		padding-left: 16px;
	}

	.numbers__grid article:nth-child(n + 3) {
		padding-top: 28px;
		padding-bottom: 0;
	}

	.numbers__grid strong {
		margin-bottom: 20px;
		font-size: 3.15rem;
	}

	.numbers__grid h3 {
		font-size: 0.86rem;
	}

	.numbers__grid p {
		font-size: 0.64rem;
	}

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

	.process-grid li,
	.process-grid li:first-child,
	.process-grid li:nth-child(3) {
		min-height: 0;
		padding: 26px 0;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.process-grid h3 {
		margin-top: 18px;
	}

	.process-grid__icon {
		width: 40px;
		height: 40px;
		margin-top: 0;
	}

	.process-grid li > span {
		top: 26px;
		right: 0;
	}

	.review__rating {
		flex-wrap: wrap;
	}

	.footer-cta {
		padding-block: 16px 28px;
	}

	.footer-cta__inner {
		gap: 30px;
		padding: 34px 24px;
	}

	.footer-cta h2 {
		font-size: clamp(2.1rem, 10vw, 2.8rem);
	}

	.footer-cta__actions .button {
		min-width: 0;
	}

	.site-footer__nav {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 25px;
	}

	.site-footer__nav > div {
		padding-left: 0;
		border-left: 0;
	}

	.site-footer__contact {
		grid-column: 1 / 3;
		padding-top: 34px;
		border-top: 1px solid #d8d7dc;
	}

	.site-footer__bottom {
		display: flex;
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		padding-block: 20px;
	}

	.site-footer__bottom-links {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.footer-socials,
	.footer-legal {
		gap: 16px;
	}

	.whatsapp-link {
		right: 14px;
		bottom: 14px;
		width: 50px;
		height: 50px;
	}
}

@media (max-width: 900px) {
	.services__intro {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 28px;
	}

	.services__contact {
		justify-self: start;
	}
}

@media (max-width: 640px) {
	.services__intro {
		gap: 22px;
	}

	.services__contact {
		width: 100%;
	}

	.portfolio-card__arrow {
		width: auto;
		height: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.logo-carousel__viewport {
		overflow-x: auto;
		-webkit-mask-image: none;
		mask-image: none;
	}

	.logo-carousel__track {
		animation: none;
	}

	.hero__word-row {
		animation: none;
		transform: none;
	}

	.intro-video::before,
	.intro-video::after,
	.intro-video__words span,
	.video-facade__play {
		animation: none;
	}

	.motion-ready .reveal-on-scroll,
	.motion-ready .reveal-on-scroll.is-visible {
		opacity: 1;
		translate: none;
		transition: none;
	}

	.logo-carousel__set[aria-hidden="true"] {
		display: none;
	}
}

/* Footer — integrated dark brand canvas */
.site-footer {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding-top: clamp(26px, 4vw, 54px);
	border-top: 0;
	background:
		radial-gradient(circle at 86% 9%, rgba(141, 17, 130, 0.24), transparent 25rem),
		linear-gradient(145deg, #111116 0%, #0d0d12 58%, #150b19 100%);
	color: #fff;
}

.site-footer::before {
	position: absolute;
	top: 2rem;
	right: -15rem;
	z-index: -1;
	width: 42rem;
	height: 42rem;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 50%;
	box-shadow:
		0 0 0 7rem rgba(255, 255, 255, 0.018),
		0 0 0 14rem rgba(255, 255, 255, 0.012);
	content: "";
	pointer-events: none;
}

.page-template-template-home-v2 .site-footer,
.page-template-template-contact .site-footer {
	padding-top: 0;
}

.site-footer .footer-cta {
	position: relative;
	isolation: isolate;
	width: min(calc(100% - 64px), var(--container));
	overflow: hidden;
	padding-block: 0;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: clamp(18px, 2.4vw, 30px);
	background:
		linear-gradient(120deg, rgba(242, 16, 82, 0.96), rgba(161, 7, 113, 0.95) 52%, rgba(28, 3, 87, 0.96)),
		var(--gradient);
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
	color: #fff;
}

.site-footer .footer-cta::before {
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(115deg, rgba(255, 255, 255, 0.1), transparent 36%),
		repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(255, 255, 255, 0.055) 25%);
}

.site-footer .footer-cta::after {
	right: -8rem;
	bottom: -15rem;
	top: auto;
	z-index: -1;
	width: 28rem;
	height: 28rem;
	border-color: rgba(255, 255, 255, 0.16);
}

.site-footer .footer-cta__inner {
	grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
	gap: clamp(48px, 8vw, 120px);
	padding: clamp(42px, 6vw, 82px);
}

.site-footer .footer-cta .kicker {
	margin-bottom: 24px;
	color: rgba(255, 255, 255, 0.8);
}

.site-footer .footer-cta .kicker > span {
	background: #fff;
	box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12);
}

.site-footer .footer-cta h2 {
	max-width: 15ch;
	font-size: clamp(2.4rem, 4.25vw, 4.7rem);
	letter-spacing: -0.065em;
	line-height: 0.98;
}

.site-footer .footer-cta h2 span {
	background: none;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	color: #fff;
}

.site-footer .footer-cta__actions {
	gap: 20px;
	padding-left: clamp(28px, 4vw, 58px);
	border-color: rgba(255, 255, 255, 0.2);
}

.site-footer .footer-cta__actions p {
	max-width: 36ch;
	margin-bottom: 2px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.82rem;
	line-height: 1.75;
}

.site-footer .footer-cta__actions .button {
	width: min(100%, 340px);
	min-width: 0;
}

.site-footer .footer-cta__actions .button--white:hover {
	border-color: #f3f1ee;
	background: #f3f1ee;
	box-shadow: none;
	color: var(--ink);
}

.site-footer .footer-cta__phone {
	margin-left: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.7rem;
	text-decoration-color: rgba(255, 255, 255, 0.35);
}

.site-footer .site-footer__top {
	grid-template-columns: minmax(240px, 0.85fr) minmax(330px, 1fr) minmax(240px, 0.72fr);
	gap: clamp(42px, 6vw, 86px);
	padding-block: clamp(70px, 8vw, 108px);
}

.site-footer .brand--footer {
	margin-bottom: 30px;
	padding: 16px 20px;
	border-radius: 14px;
	background: #fff;
}

.site-footer .brand--footer img {
	width: 116px;
}

.site-footer .site-footer__brand p {
	max-width: 34ch;
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.8rem;
	line-height: 1.8;
}

.site-footer .site-footer__location {
	gap: 9px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.61rem;
}

.site-footer .site-footer__location i {
	background: var(--pink);
	box-shadow: 0 0 0 5px rgb(from var(--pink) r g b / 0.12);
}

.site-footer .site-footer__location b {
	color: rgba(255, 255, 255, 0.25);
}

.site-footer .site-footer__nav {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(30px, 4vw, 58px);
}

.site-footer .site-footer__nav > div {
	padding-left: clamp(22px, 2.5vw, 34px);
	border-color: rgba(255, 255, 255, 0.1);
}

.site-footer h3 {
	margin-bottom: 24px;
	color: rgba(255, 255, 255, 0.38);
	font-size: 0.6rem;
	letter-spacing: 0.16em;
}

.site-footer .footer-menu {
	gap: 12px;
}

.site-footer .footer-menu a,
.site-footer .site-footer__contact a,
.site-footer .site-footer__contact address {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.76rem;
}

.site-footer .footer-menu a:hover,
.site-footer .site-footer__contact a:hover,
.site-footer .footer-socials a:hover,
.site-footer .footer-legal a:hover {
	color: #fff;
}

.site-footer .site-footer__contact {
	display: flex;
	align-items: stretch;
	align-self: start;
	gap: 26px;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.035);
}

.site-footer .site-footer__contact > div {
	display: grid;
	gap: 10px;
}

.site-footer .site-footer__contact address {
	margin-top: 0;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	color: rgba(255, 255, 255, 0.4);
}

.site-footer .site-footer__contact .site-footer__email {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	font-size: 0.82rem;
	font-weight: 700;
}

.site-footer .site-footer__detail,
.site-footer .site-footer__phone,
.site-footer .site-footer__contact address {
	display: flex;
	align-items: flex-start;
	gap: 9px;
}

.site-footer .site-footer__detail {
	align-items: center;
}

.site-footer .site-footer__detail .dashicons,
.site-footer .site-footer__phone .dashicons,
.site-footer .site-footer__contact address .dashicons {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	color: rgba(255, 255, 255, 0.36);
	font-size: 16px;
	line-height: 1;
}

.site-footer .site-footer__contact address .dashicons {
	margin-top: 3px;
}

.site-footer .site-footer__email:hover .dashicons,
.site-footer .site-footer__phone:hover .dashicons {
	color: var(--pink);
}

.site-footer .site-footer__phone {
	width: max-content;
}

.site-footer .site-footer__phone-options {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.site-footer .site-footer__phone-or {
	color: rgba(255, 255, 255, 0.28);
	font-size: 0.58rem;
	font-weight: 700;
	text-transform: uppercase;
}

.site-footer .site-footer__whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	width: max-content;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.7rem;
	font-weight: 700;
}

.site-footer .site-footer__whatsapp svg {
	width: 16px;
	height: 16px;
	color: #25d366;
}

.site-footer .site-footer__whatsapp:hover {
	color: #fff;
	transform: none;
}

.site-footer .site-footer__availability {
	display: flex;
	align-items: center;
	gap: 9px;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.site-footer .site-footer__availability i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 0 4px rgb(from var(--green) r g b / 0.1);
}

.site-footer .site-footer__bottom {
	grid-template-columns: 1fr auto auto;
	gap: 30px;
	min-height: 86px;
	border-color: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.61rem;
}

.site-footer .footer-socials,
.site-footer .footer-legal {
	display: flex;
	align-items: center;
	gap: 10px;
}

.site-footer .footer-socials a {
	padding: 7px 11px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.56);
	transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-footer .footer-socials a:hover {
	border-color: rgba(255, 255, 255, 0.28);
	transform: translateY(-2px);
}

.site-footer .footer-socials a span {
	margin-left: 2px;
	color: rgba(255, 255, 255, 0.3);
}

.site-footer .footer-legal {
	gap: 18px;
}

.site-footer .footer-legal a {
	color: rgba(255, 255, 255, 0.72);
	transition: color 180ms ease;
}

@media (max-width: 1100px) {
	.site-footer .site-footer__top {
		grid-template-columns: 0.7fr 1fr;
		gap: 54px;
	}

	.site-footer .site-footer__contact {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: 1fr 1fr auto;
		align-items: center;
	}

	.site-footer .site-footer__contact address {
		padding-top: 0;
		padding-left: 28px;
		border-top: 0;
		border-left: 1px solid rgba(255, 255, 255, 0.09);
	}
}

@media (max-width: 900px) {
	.site-footer .footer-cta__inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.site-footer .footer-cta__actions {
		width: min(100%, 480px);
		padding-top: 30px;
		padding-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		border-left: 0;
	}

	.site-footer .site-footer__top {
		grid-template-columns: 1fr;
		gap: 54px;
	}

	.site-footer .site-footer__contact {
		grid-column: auto;
		display: grid;
	}

	.site-footer .site-footer__bottom {
		grid-template-columns: 1fr auto;
		padding-block: 22px;
	}

	.site-footer .footer-socials {
		grid-column: 1 / -1;
		grid-row: 2;
	}
}

@media (max-width: 640px) {
	.site-footer {
		padding-top: 12px;
	}

	.site-footer .footer-cta {
		width: min(calc(100% - 24px), var(--container));
	}

	.site-footer .footer-cta__inner {
		gap: 30px;
		padding: 38px 26px;
	}

	.site-footer .footer-cta h2 {
		font-size: clamp(2.1rem, 10vw, 2.8rem);
	}

	.site-footer .site-footer__top {
		gap: 50px;
	}

	.site-footer .site-footer__nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 36px 20px;
	}

	.site-footer .site-footer__nav > div {
		padding-left: 0;
		border-left: 0;
	}

	.site-footer .site-footer__contact {
		display: flex;
		padding: 24px;
	}

	.site-footer .site-footer__contact address {
		padding-top: 22px;
		padding-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.09);
		border-left: 0;
	}

	.site-footer .site-footer__bottom {
		display: flex;
		gap: 16px;
		padding-block: 22px 28px;
	}

	.site-footer .footer-socials {
		flex-wrap: wrap;
	}
}

/* Footer — simple, quiet and consistent with the site */
.site-footer {
	padding-top: 0;
	background: #101015;
}

.site-footer::before,
.site-footer .footer-cta::before,
.site-footer .footer-cta::after {
	display: none;
}

.site-footer .footer-cta {
	width: min(calc(100% - 64px), var(--container));
	padding: 0;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0;
	background: none;
	box-shadow: none;
}

.site-footer .footer-cta__inner {
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
	gap: clamp(48px, 8vw, 110px);
	padding: clamp(64px, 8vw, 96px) 0;
}

.site-footer .footer-cta .kicker {
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.48);
}

.site-footer .footer-cta .kicker > span {
	background: var(--pink);
	box-shadow: none;
}

.site-footer .footer-cta h2 {
	max-width: 16ch;
	font-size: clamp(2.25rem, 3.7vw, 3.9rem);
	line-height: 1;
}

.site-footer .footer-cta h2 span {
	display: inline-block;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.site-footer .footer-cta__actions {
	gap: 16px;
	padding-left: clamp(28px, 4vw, 52px);
	border-color: rgba(255, 255, 255, 0.12);
}

.site-footer .footer-cta__actions p {
	color: rgba(255, 255, 255, 0.54);
}

.site-footer .site-footer__top {
	grid-template-columns: minmax(230px, 0.85fr) minmax(340px, 1.15fr) minmax(260px, 0.8fr);
	gap: clamp(40px, 6vw, 80px);
	padding-block: clamp(62px, 7vw, 88px);
}

.site-footer .brand--footer {
	margin-bottom: 26px;
	padding: 0;
	background: none;
}

.site-footer .brand--footer img {
	width: 108px;
	filter: brightness(0) invert(1);
}

.site-footer .site-footer__brand p {
	margin-bottom: 24px;
	color: rgba(255, 255, 255, 0.5);
}

.site-footer .site-footer__nav > div {
	padding-left: 0;
	border-left: 0;
}

.site-footer .footer-menu a,
.site-footer .site-footer__contact a,
.site-footer .site-footer__contact address {
	color: rgba(255, 255, 255, 0.58);
}

.site-footer .site-footer__contact {
	display: flex;
	gap: 18px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none;
}

.site-footer .site-footer__contact address {
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .site-footer__availability {
	display: none;
}

.site-footer .site-footer__meet {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	width: 100%;
	margin: 0 0 12px;
	padding: 13px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
	transition:
		border-color 180ms ease,
		background-color 180ms ease,
		transform 180ms ease;
}

.site-footer .site-footer__meet:hover {
	border-color: rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.065);
	transform: translateY(-3px);
}

.site-footer .site-footer__meet-icon {
	display: grid;
	width: 38px;
	height: 38px;
	margin-bottom: 0;
	place-items: center;
	border-radius: 9px;
	background: #fff;
}

.site-footer .site-footer__meet-icon img {
	width: 24px;
	height: 24px;
}

.site-footer .site-footer__meet-copy {
	display: grid;
	gap: 2px;
}

.site-footer .site-footer__meet-copy strong {
	color: #fff;
	font-size: 0.72rem;
	letter-spacing: -0.025em;
	line-height: 1.35;
}

.site-footer .site-footer__meet-copy small {
	color: rgba(255, 255, 255, 0.48);
	font-size: 0.56rem;
	line-height: 1.4;
}

.site-footer .site-footer__meet-arrow {
	color: var(--pink);
	font-size: 0.76rem;
}

.site-footer .site-footer__print-tools {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 18px;
	padding-bottom: 18px;
}

.site-footer .site-footer__print-tools > span {
	color: rgba(255, 255, 255, 0.3);
	font-size: 0.54rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.site-footer .site-footer__print-tools ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer .site-footer__print-tools li {
	position: relative;
}

.site-footer .site-footer__print-tools li + li::before {
	position: absolute;
	top: 50%;
	left: -10px;
	color: rgba(255, 255, 255, 0.16);
	content: "·";
	transform: translateY(-52%);
}

.site-footer .site-footer__print-tools a {
	color: rgba(255, 255, 255, 0.42);
	font-size: 0.6rem;
	transition: color 180ms ease;
}

.site-footer .site-footer__print-tools a:hover {
	color: rgba(255, 255, 255, 0.82);
}

.site-footer .site-footer__bottom {
	grid-template-columns: 1fr auto auto;
	min-height: 76px;
}

.site-footer .site-footer__bottom-links {
	display: flex;
	align-items: center;
	justify-self: center;
	gap: 26px;
}

.site-footer .footer-socials {
	gap: 20px;
}

.site-footer .footer-socials a {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none;
}

.site-footer .footer-socials a:hover {
	border-color: transparent;
	transform: none;
}

.site-footer .footer-socials a span {
	display: none;
}

.site-footer .site-footer__credit {
	justify-self: end;
	padding-right: 0;
	color: rgba(255, 255, 255, 0.68);
	white-space: nowrap;
}

.site-footer .site-footer__credit span {
	color: var(--pink);
}

.site-footer .site-footer__credit a {
	color: rgba(255, 255, 255, 0.72);
}

.site-footer .site-footer__credit a:hover {
	color: #fff;
}

@media (max-width: 1100px) {
	.site-footer .site-footer__top {
		grid-template-columns: minmax(230px, 0.75fr) minmax(340px, 1fr);
	}

	.site-footer .site-footer__contact {
		grid-column: 1 / -1;
		display: flex;
		align-items: stretch;
		padding: 28px 0 0;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}

	.site-footer .site-footer__contact address {
		padding: 18px 0 0;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		border-left: 0;
	}

}

@media (max-width: 900px) {
	.site-footer .footer-cta__inner,
	.site-footer .site-footer__top {
		grid-template-columns: 1fr;
	}

	.site-footer .footer-cta__actions {
		width: min(100%, 470px);
		padding-top: 28px;
		padding-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		border-left: 0;
	}

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

	.site-footer .site-footer__bottom-links {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	.site-footer .site-footer__credit {
		grid-column: 2;
		grid-row: 1;
	}
}

@media (max-width: 640px) {
	.site-footer {
		padding-top: 0;
	}

	.site-footer .footer-cta {
		width: min(calc(100% - 32px), var(--container));
	}

	.site-footer .footer-cta__inner {
		padding: 54px 0;
	}

	.site-footer .footer-cta__phone {
		align-self: center;
	}

	.site-footer .site-footer__top {
		gap: 42px;
		padding-block: 54px;
	}

	.site-footer .site-footer__contact {
		display: flex;
		padding-top: 30px;
	}

	.site-footer .site-footer__contact address {
		padding-top: 18px;
		padding-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		border-left: 0;
	}

	.site-footer .site-footer__print-tools {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.site-footer .site-footer__print-tools ul {
		gap: 7px 15px;
	}

	.site-footer .site-footer__print-tools li + li::before {
		left: -9px;
	}

	.site-footer .site-footer__bottom {
		align-items: center;
		gap: 14px;
		text-align: center;
	}

	.site-footer .site-footer__bottom-links {
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 12px 22px;
	}

	.site-footer .footer-socials,
	.site-footer .footer-legal {
		justify-content: center;
		gap: 16px;
	}

	.site-footer .site-footer__credit {
		align-self: center;
		order: 3;
	}
}
