@font-face {
	font-family: "Sarthak Serif";
	src: url("../fonts/PlayfairDisplay-Regular.ttf") format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Sarthak Sans";
	src: url("../fonts/Manrope-Variable.ttf") format("truetype");
	font-display: swap;
}

:root {
	--sp-paper: #f7f3ee;
	--sp-paper-2: #efe9e1;
	--sp-paper-3: #e6ddd3;
	--sp-ink: #1a1714;
	--sp-ink-2: #2e2924;
	--sp-sepia: #6b5a49;
	--sp-muted: #9c8d7f;
	--sp-dust: #c4a882;
	--sp-accent: #b8906a;
	--sp-accent-2: #8b6245;
	--sp-rose: #d4a5a5;
	--sp-display: "Sarthak Serif", Georgia, serif;
	--sp-body: "Sarthak Sans", Arial, sans-serif;
	--sp-ease: cubic-bezier(.16, 1, .3, 1);
	--sp-ease-soft: cubic-bezier(.45, 0, .55, 1);
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: transparent;
	color: var(--sp-ink);
	font-family: var(--sp-body);
	font-weight: 360;
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

body .site-header,
body .site-footer {
	display: none;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 9998;
	pointer-events: none;
	opacity: .028;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 200px 200px;
	mix-blend-mode: multiply;
}

.sp-site,
.sp-site * {
	box-sizing: border-box;
}

.sp-site {
	min-height: 100vh;
	background: transparent;
	overflow: hidden;
}

.sp-site img,
.sp-site svg {
	display: block;
	max-width: 100%;
}

.sp-site a {
	color: inherit;
	text-decoration: none;
}

.sp-cursor-dot,
.sp-cursor-ring {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	pointer-events: none;
	opacity: 0;
	transform: translate3d(var(--sp-cursor-x, -80px), var(--sp-cursor-y, -80px), 0) translate(-50%, -50%) scale(var(--sp-cursor-scale, 1));
	transition: opacity .18s var(--sp-ease), border-color .18s var(--sp-ease), background .18s var(--sp-ease), transform .08s linear;
	will-change: transform;
}

.sp-cursor-dot {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--sp-accent);
}

.sp-cursor-ring {
	width: 36px;
	height: 36px;
	border: 1px solid rgba(184, 144, 106, .45);
	border-radius: 999px;
}

.sp-cursor-dot.is-visible,
.sp-cursor-ring.is-visible {
	opacity: 1;
}

.sp-cursor-ring.is-large {
	--sp-cursor-scale: 1.62;
	border-color: rgba(184, 144, 106, .8);
}

.sp-cursor-ring.is-pressed {
	--sp-cursor-scale: .78;
	border-color: rgba(247, 243, 238, .78);
	background: rgba(184, 144, 106, .12);
}

@media (pointer: coarse) {
	.sp-cursor-dot,
	.sp-cursor-ring {
		display: none;
	}
}

.sp-cap {
	margin: 0;
	color: var(--sp-sepia);
	font-size: 10px;
	font-weight: 520;
	letter-spacing: .3em;
	line-height: 1.35;
	text-transform: uppercase;
}

.sp-cap-line {
	display: flex;
	align-items: center;
	gap: 14px;
}

.sp-cap-line::before {
	content: "";
	width: 28px;
	height: 1px;
	background: var(--sp-dust);
	flex: 0 0 auto;
}

.sp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 14px 30px;
	border: 1px solid transparent;
	border-radius: 0;
	font: 650 10.5px/1.1 var(--sp-body);
	letter-spacing: .22em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .28s var(--sp-ease), color .28s var(--sp-ease), border-color .28s var(--sp-ease), transform .28s var(--sp-ease), box-shadow .28s var(--sp-ease);
	white-space: nowrap;
}

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

.sp-button-dark {
	background: var(--sp-ink);
	color: var(--sp-paper) !important;
	-webkit-text-fill-color: var(--sp-paper);
}

.sp-button-dark:hover {
	background: var(--sp-ink-2);
	box-shadow: 0 18px 35px rgba(26, 23, 20, .18);
}

.sp-button-dark:visited {
	color: var(--sp-paper) !important;
	-webkit-text-fill-color: var(--sp-paper);
}

.sp-button-line {
	background: transparent;
	color: var(--sp-accent-2);
	border-color: var(--sp-accent);
}

.sp-button-line:hover {
	background: var(--sp-accent);
	color: var(--sp-paper);
}

.sp-button-whatsapp {
	background: var(--sp-accent);
	color: var(--sp-paper);
	border-color: var(--sp-accent);
}

.sp-button-whatsapp:hover {
	background: var(--sp-ink);
	border-color: var(--sp-ink);
}

.sp-nav {
	position: fixed;
	inset: 0 0 auto;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 74px;
	padding: 24px clamp(22px, 4vw, 58px);
	background: transparent;
	border-bottom: 1px solid transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	box-shadow: none;
	transition: background .4s var(--sp-ease), border-color .4s var(--sp-ease), box-shadow .4s var(--sp-ease), backdrop-filter .4s var(--sp-ease), padding .3s var(--sp-ease), min-height .3s var(--sp-ease);
}

.sp-nav.is-solid {
	min-height: 62px;
	padding-block: 14px;
	background: rgba(255, 255, 255, .98);
	border-bottom: 1px solid var(--sp-paper-3);
	backdrop-filter: blur(16px) saturate(1.08);
	-webkit-backdrop-filter: blur(16px) saturate(1.08);
	box-shadow: 0 14px 44px rgba(26, 23, 20, .07);
}

.sp-logo img {
	display: block;
	width: 188px;
	height: auto;
}

.sp-nav .sp-logo {
	display: flex;
	align-items: center;
	width: 188px;
	min-height: 52px;
}

.sp-nav-links {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.5vw, 40px);
	color: var(--sp-sepia);
	font-size: 10px;
	font-weight: 620;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.sp-nav-links a {
	transition: color .25s var(--sp-ease);
}

.sp-nav-links a:hover {
	color: var(--sp-ink);
}

.sp-nav-pill {
	border: 1px solid var(--sp-ink);
	color: var(--sp-ink);
	padding: 8px 18px;
	transition: background .25s var(--sp-ease), color .25s var(--sp-ease), border-color .25s var(--sp-ease);
}

.sp-nav-pill:hover {
	background: var(--sp-ink);
	color: var(--sp-paper) !important;
	border-color: var(--sp-ink);
}

.sp-menu-button {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 0;
}

.sp-nav::after {
	content: "";
	display: none;
}

.sp-menu-button span {
	width: 21px;
	height: 1px;
	background: var(--sp-ink);
	transition: transform .25s var(--sp-ease), opacity .25s var(--sp-ease);
}

.sp-menu-button::before {
	content: "";
	display: none;
	width: 26px;
	height: 17px;
	background:
		linear-gradient(var(--sp-ink), var(--sp-ink)) 0 0 / 100% 1px no-repeat,
		linear-gradient(var(--sp-ink), var(--sp-ink)) 0 8px / 100% 1px no-repeat,
		linear-gradient(var(--sp-ink), var(--sp-ink)) 0 16px / 100% 1px no-repeat;
}

.sp-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 260;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 18px;
	padding: 100px clamp(24px, 8vw, 72px) 54px;
	background: var(--sp-ink);
	color: rgba(247, 243, 238, .76);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-12px);
	transition: opacity .28s var(--sp-ease), transform .28s var(--sp-ease), visibility .28s var(--sp-ease);
}

.sp-mobile-menu-logo {
	position: absolute;
	top: 24px;
	left: clamp(24px, 8vw, 72px);
	display: flex;
	align-items: center;
	width: 182px;
	height: 50px;
}

.sp-mobile-menu-logo img {
	width: 100%;
	height: auto;
	max-height: 50px;
	object-fit: contain;
}

.sp-mobile-menu.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
}

.sp-menu-open {
	overflow: hidden;
}

.sp-menu-close {
	position: absolute;
	top: 30px;
	right: 28px;
	background: transparent;
	border: 0;
	color: var(--sp-muted);
	font: 650 11px/1 var(--sp-body);
	letter-spacing: .18em;
	text-transform: uppercase;
	cursor: pointer;
}

.sp-mobile-menu > a:not(.sp-mobile-menu-logo) {
	font-family: var(--sp-display);
	font-size: clamp(42px, 11vw, 72px);
	font-weight: 400;
	line-height: .96;
	letter-spacing: 0;
	transition: color .2s var(--sp-ease);
}

.sp-mobile-menu > a:not(.sp-mobile-menu-logo):hover {
	color: var(--sp-dust);
}

.sp-mobile-menu span {
	margin-top: 16px;
	color: var(--sp-sepia);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.sp-hero {
	position: relative;
	display: grid;
	grid-template-columns: 52% 1fr;
	min-height: 100svh;
	background: var(--sp-paper);
	overflow: hidden;
}

.sp-hero-photo {
	position: relative;
	grid-column: 2;
	min-height: 100svh;
	overflow: hidden;
}

.sp-hero-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.sp-hero-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, var(--sp-paper) 0%, rgba(247, 243, 238, 0) 38%),
		linear-gradient(0deg, var(--sp-paper) 0%, rgba(247, 243, 238, 0) 22%);
	pointer-events: none;
}

.sp-hero-badge {
	position: absolute;
	right: clamp(24px, 4vw, 56px);
	bottom: clamp(24px, 4vw, 48px);
	z-index: 3;
	min-width: 190px;
	padding: 18px 22px;
	text-align: center;
	background: rgba(247, 243, 238, .9);
	border: 1px solid var(--sp-paper-3);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.sp-hero-badge span,
.sp-hero-badge small {
	display: block;
	color: var(--sp-accent-2);
	font-size: 8px;
	font-weight: 650;
	letter-spacing: .28em;
	text-transform: uppercase;
}

.sp-hero-badge strong {
	display: block;
	margin-top: 8px;
	color: var(--sp-ink);
	font-family: var(--sp-display);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.15;
}

.sp-hero-badge small {
	margin-top: 7px;
	color: var(--sp-muted);
	letter-spacing: .13em;
}

.sp-hero-copy {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 60%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 132px clamp(28px, 5vw, 74px) 72px;
}

.sp-hero-copy.sp-reveal {
	opacity: 1;
	transform: none;
}

.sp-hero-copy .sp-cap {
	margin-bottom: 30px;
}

.sp-hero h1,
.sp-section h2,
.sp-founder h2,
.sp-portfolio h2,
.sp-process h2,
.sp-contact h2 {
	margin: 0;
	color: var(--sp-ink);
	font-family: var(--sp-display);
	font-weight: 400;
	line-height: 1.04;
	letter-spacing: 0;
}

.sp-hero h1 {
	max-width: 820px;
	font-size: clamp(54px, 7vw, 104px);
}

.sp-hero h1 span,
.sp-hero h1 em {
	display: block;
}

.sp-hero h1 em {
	color: var(--sp-accent);
	font-style: italic;
}

.sp-line-indent {
	padding-left: clamp(18px, 3.4vw, 56px);
}

.sp-lede {
	max-width: 430px;
	margin: 28px 0 0;
	color: var(--sp-sepia);
	font-size: 15px;
	line-height: 1.9;
}

.sp-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 42px;
}

.sp-stats {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(24px, 4vw, 52px);
	margin-top: 56px;
	padding-top: 38px;
	border-top: 1px solid var(--sp-paper-3);
}

.sp-stats div {
	min-width: 120px;
}

.sp-stats strong {
	display: block;
	color: var(--sp-accent);
	font-family: var(--sp-display);
	font-size: clamp(34px, 3.2vw, 48px);
	font-weight: 400;
	line-height: 1;
}

.sp-stats span {
	display: block;
	max-width: 150px;
	margin-top: 8px;
	color: var(--sp-muted);
	font-size: 9px;
	font-weight: 650;
	letter-spacing: .18em;
	line-height: 1.5;
	text-transform: uppercase;
}

.sp-ticker {
	background: var(--sp-ink);
	overflow: hidden;
	white-space: nowrap;
	padding: 13px 0;
}

.sp-ticker-track {
	display: inline-flex;
	animation: sp-ticker 38s linear infinite;
}

.sp-ticker-track span {
	position: relative;
	padding: 0 36px;
	color: rgba(247, 243, 238, .5);
	font-size: 10px;
	font-weight: 650;
	letter-spacing: .28em;
	text-transform: uppercase;
}

.sp-ticker-track span::before {
	content: "";
	position: absolute;
	left: -3px;
	top: 50%;
	width: 5px;
	height: 5px;
	background: var(--sp-dust);
	transform: translateY(-50%) rotate(45deg);
}

@keyframes sp-ticker {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.sp-section {
	position: relative;
	overflow: hidden;
	padding: clamp(78px, 9vw, 126px) clamp(22px, 5vw, 74px);
}

.sp-section > *,
.sp-founder > *,
.sp-portfolio > *,
.sp-process > *,
.sp-contact > * {
	position: relative;
	z-index: 1;
}

.sp-section::before,
.sp-founder::before,
.sp-portfolio::before,
.sp-process::before,
.sp-contact::before {
	display: none;
}

.sp-section::after,
.sp-founder::after,
.sp-portfolio::after,
.sp-process::after,
.sp-contact::after {
	display: none;
}

.sp-section h2,
.sp-founder h2,
.sp-portfolio h2,
.sp-process h2,
.sp-contact h2 {
	font-size: clamp(36px, 4.1vw, 66px);
}

.sp-section p,
.sp-section-split > p,
.sp-founder-copy p,
.sp-portfolio p,
.sp-contact-copy p {
	color: var(--sp-sepia);
	font-size: 15px;
	line-height: 1.9;
}

.sp-intro,
.sp-locations {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
	gap: clamp(32px, 7vw, 96px);
	align-items: center;
	background: var(--sp-paper);
}

.sp-intro h2,
.sp-locations h2 {
	max-width: 720px;
	margin-top: 18px;
}

.sp-locations > p {
	max-width: 500px;
	margin: 0;
}

.sp-intro-panel {
	position: relative;
	max-width: 540px;
	padding: clamp(24px, 3vw, 40px) 0 clamp(24px, 3vw, 40px) clamp(28px, 3.5vw, 52px);
	border-left: 1px solid rgba(184, 144, 106, .55);
	background: transparent;
}

.sp-intro-panel::before {
	display: none;
}

.sp-intro-panel p {
	max-width: 470px;
	margin: 0;
	color: var(--sp-sepia);
	font-size: 15px;
	line-height: 1.9;
}

.sp-intro-points {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	margin-top: 30px;
	border-top: 1px solid var(--sp-paper-3);
	border-bottom: 1px solid var(--sp-paper-3);
}

.sp-intro-points span {
	display: flex;
	align-items: center;
	min-height: 58px;
	padding: 14px 22px;
	background: transparent;
	border-right: 1px solid var(--sp-paper-3);
	color: var(--sp-accent-2);
	font-size: 9px;
	font-weight: 720;
	letter-spacing: .16em;
	line-height: 1.45;
	text-transform: uppercase;
}

.sp-intro-points span:last-child {
	border-right: 0;
}

.sp-why {
	position: relative;
	display: grid;
	grid-template-columns: minmax(300px, .74fr) minmax(0, 1fr);
	gap: clamp(34px, 7vw, 96px);
	align-items: center;
	padding: clamp(78px, 9vw, 126px) clamp(22px, 5vw, 74px);
	background:
		radial-gradient(circle at 12% 22%, rgba(196, 168, 130, .14), transparent 30%),
		#0d0c0b;
	color: var(--sp-paper);
	overflow: hidden;
}

.sp-why h2 {
	max-width: 680px;
	margin: 18px 0 0;
	color: var(--sp-paper);
	font-family: var(--sp-display);
	font-size: clamp(38px, 4vw, 66px);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: 0;
}

.sp-why .sp-cap {
	color: var(--sp-dust);
}

.sp-why .sp-cap-line::before {
	background: var(--sp-dust);
}

.sp-why-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	background: transparent;
	border: 0;
}

.sp-why article {
	position: relative;
	min-height: 310px;
	padding: clamp(26px, 2.6vw, 38px);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .018) 58%, rgba(196, 168, 130, .06)),
		#151311;
	border: 1px solid rgba(247, 243, 238, .12);
	overflow: hidden;
}

.sp-why article::after {
	content: "";
	position: absolute;
	right: 24px;
	bottom: 24px;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(196, 168, 130, .42);
	transform: rotate(45deg);
}

.sp-why article > span {
	display: block;
	margin-bottom: 38px;
	color: rgba(196, 168, 130, .72);
	font-family: var(--sp-display);
	font-size: 48px;
	font-style: italic;
	line-height: .8;
}

.sp-why h3 {
	margin: 0 0 14px;
	color: var(--sp-paper);
	font-family: var(--sp-display);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.18;
}

.sp-why p {
	margin: 0;
	color: rgba(247, 243, 238, .62);
	font-size: 14px;
	line-height: 1.78;
}

.sp-section-divider {
	position: relative;
	z-index: 8;
	display: grid;
	grid-template-columns: minmax(90px, 1fr) 22px minmax(90px, 1fr);
	align-items: center;
	gap: clamp(26px, 4vw, 58px);
	width: 100%;
	max-width: none;
	margin: 0;
	min-height: 86px;
	padding: 0 clamp(24px, 6vw, 92px);
	background: transparent;
	color: var(--sp-dust);
	opacity: 1;
	overflow: visible;
}

.sp-section-divider span {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(184, 144, 106, .96) 24%, rgba(184, 144, 106, .96) 76%, transparent);
	box-shadow: 0 0 22px rgba(184, 144, 106, .2);
}

.sp-section-divider i {
	display: block;
	width: 18px;
	height: 18px;
	border: 1px solid currentColor;
	background: var(--sp-paper);
	box-shadow: 0 0 0 10px rgba(184, 144, 106, .08), 0 0 30px rgba(184, 144, 106, .22);
	transform: rotate(45deg);
}

.sp-section-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
	gap: clamp(28px, 6vw, 78px);
	align-items: end;
	margin-bottom: 58px;
}

.sp-section-split h2 {
	max-width: 720px;
	margin-top: 18px;
}

.sp-section-split > p {
	max-width: 520px;
	margin: 0;
}

.sp-services {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border: 1px solid var(--sp-paper-3);
	background: var(--sp-paper-3);
	gap: 1px;
}

.sp-services article {
	position: relative;
	min-height: 260px;
	padding: clamp(30px, 3vw, 44px);
	background: var(--sp-paper);
	overflow: hidden;
	transition: background .3s var(--sp-ease), transform .3s var(--sp-ease);
}

.sp-services article::after {
	content: "";
	position: absolute;
	right: 26px;
	bottom: 22px;
	width: 28px;
	height: 1px;
	background: var(--sp-paper-3);
	opacity: 0;
	transform: translateX(-8px);
	transition: opacity .3s var(--sp-ease), transform .3s var(--sp-ease), background .3s var(--sp-ease);
}

.sp-services article:hover {
	background: var(--sp-paper-2);
}

.sp-services article:hover::after {
	opacity: 1;
	transform: none;
	background: var(--sp-accent);
}

.sp-services article > span {
	display: block;
	margin-bottom: 28px;
	color: var(--sp-paper-3);
	font-family: var(--sp-display);
	font-size: 56px;
	font-style: italic;
	font-weight: 400;
	line-height: .85;
	transition: color .3s var(--sp-ease);
}

.sp-services article:hover > span {
	color: var(--sp-dust);
}

.sp-services h3 {
	margin: 0 0 13px;
	color: var(--sp-ink);
	font-family: var(--sp-display);
	font-size: 23px;
	font-weight: 400;
	line-height: 1.22;
}

.sp-services p {
	margin: 0;
	color: var(--sp-sepia);
	font-size: 14px;
	line-height: 1.85;
}

.sp-portfolio {
	position: relative;
	overflow: hidden;
	padding: clamp(68px, 7vw, 104px) 0 clamp(72px, 7vw, 112px);
	background:
		linear-gradient(180deg, var(--sp-paper) 0%, var(--sp-paper-2) 100%);
}

.sp-portfolio .sp-section-split {
	grid-template-columns: minmax(0, .82fr) minmax(280px, .58fr);
	gap: clamp(28px, 5vw, 70px);
	align-items: end;
	margin-bottom: clamp(30px, 4vw, 46px);
	padding: 0 clamp(22px, 5vw, 74px);
}

.sp-portfolio h2 {
	max-width: 700px;
	font-size: clamp(42px, 4.6vw, 76px);
	line-height: 1.02;
}

.sp-portfolio .sp-section-split > p {
	align-self: end;
	max-width: 470px;
	padding-bottom: 8px;
}

.sp-portfolio-marquee {
	position: relative;
	overflow: hidden;
	margin-top: 0;
}

.sp-portfolio-marquee::before,
.sp-portfolio-marquee::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 3;
	width: clamp(58px, 10vw, 160px);
	pointer-events: none;
}

.sp-portfolio-marquee::before {
	left: 0;
	background: linear-gradient(90deg, var(--sp-paper-2), rgba(239, 233, 225, 0));
}

.sp-portfolio-marquee::after {
	right: 0;
	background: linear-gradient(270deg, var(--sp-paper-2), rgba(239, 233, 225, 0));
}

.sp-portfolio-track {
	display: flex;
	align-items: center;
	gap: 22px;
	width: max-content;
	padding: 8px 22px 18px;
	animation: sp-portfolio-slide 46s linear infinite;
	will-change: transform;
}

.sp-portfolio-marquee:hover .sp-portfolio-track {
	animation-play-state: paused;
}

.sp-portfolio-card {
	position: relative;
	width: clamp(310px, 28vw, 460px);
	aspect-ratio: 1 / 1;
	flex: 0 0 auto;
	margin: 0;
	overflow: hidden;
	background: var(--sp-ink);
	box-shadow: 0 26px 70px rgba(26, 23, 20, .18);
}

.sp-portfolio-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	background: var(--sp-ink);
	filter: saturate(.9) contrast(1.02);
	transform: scale(1.03);
	transition: transform .8s var(--sp-ease), filter .8s var(--sp-ease);
}

.sp-portfolio-card:nth-child(3n) img {
	object-position: center 42%;
}

.sp-portfolio-card:nth-child(4n) img {
	object-position: center 38%;
}

.sp-portfolio-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(26, 23, 20, 0) 38%, rgba(26, 23, 20, .72) 100%),
		linear-gradient(135deg, rgba(196, 168, 130, .14), rgba(196, 168, 130, 0) 42%);
	pointer-events: none;
}

.sp-portfolio-card:hover img {
	filter: saturate(1) contrast(1.06);
	transform: scale(1.08);
}

.sp-portfolio-card figcaption {
	position: absolute;
	left: 22px;
	right: 22px;
	bottom: 20px;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	color: var(--sp-paper);
}

.sp-portfolio-card figcaption span {
	color: var(--sp-dust);
	font-family: var(--sp-display);
	font-size: 34px;
	font-style: italic;
	line-height: .8;
}

.sp-portfolio-card figcaption strong {
	max-width: 190px;
	font-size: 10px;
	font-weight: 720;
	letter-spacing: .18em;
	line-height: 1.45;
	text-align: right;
	text-transform: uppercase;
}

.sp-portfolio-footer {
	display: flex;
	justify-content: center;
	padding: 28px clamp(22px, 5vw, 74px) 0;
}

@keyframes sp-portfolio-slide {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.sp-founder {
	position: relative;
	display: grid;
	grid-template-columns: minmax(340px, .95fr) minmax(0, 1fr);
	gap: clamp(46px, 8vw, 110px);
	align-items: center;
	padding: clamp(80px, 9vw, 132px) clamp(22px, 5vw, 74px);
	background: var(--sp-paper-2);
	overflow: hidden;
}

.sp-founder-image {
	position: relative;
}

.sp-founder-image img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 3;
	object-fit: contain;
	object-position: center top;
}

.sp-frame {
	position: absolute;
	inset: -24px 24px 24px -24px;
	z-index: 0;
	border: 1px solid var(--sp-dust);
	pointer-events: none;
}

.sp-founder-card {
	position: absolute;
	right: -22px;
	bottom: -26px;
	z-index: 2;
	min-width: 150px;
	padding: 24px 22px;
	text-align: center;
	background: var(--sp-ink);
	color: var(--sp-paper);
}

.sp-founder-card strong {
	display: block;
	color: var(--sp-dust);
	font-family: var(--sp-display);
	font-size: 42px;
	font-weight: 400;
	line-height: 1;
}

.sp-founder-card span {
	display: block;
	margin-top: 9px;
	color: var(--sp-muted);
	font-size: 9px;
	font-weight: 650;
	letter-spacing: .18em;
	line-height: 1.45;
	text-transform: uppercase;
}

.sp-founder-copy {
	max-width: 650px;
}

.sp-founder-copy h2 {
	margin-top: 18px;
	margin-bottom: 32px;
}

.sp-founder-copy p {
	margin: 0 0 22px;
}

.sp-founder-tags {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 32px;
	border-top: 1px solid var(--sp-paper-3);
}

.sp-founder-tags span {
	padding: 16px 0;
	border-bottom: 1px solid var(--sp-paper-3);
	color: var(--sp-sepia);
	font-size: 12px;
	font-weight: 650;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.sp-process {
	position: relative;
	padding: clamp(78px, 9vw, 126px) clamp(22px, 5vw, 74px);
	background: var(--sp-ink);
	color: var(--sp-paper);
	overflow: hidden;
}

.sp-process .sp-cap {
	color: var(--sp-dust);
}

.sp-process .sp-cap-line::before {
	background: var(--sp-dust);
}

.sp-process h2 {
	color: var(--sp-paper);
}

.sp-process .sp-section-split > p {
	color: rgba(247, 243, 238, .52);
}

.sp-process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	background: rgba(247, 243, 238, .08);
}

.sp-process-grid article {
	position: relative;
	min-height: 310px;
	padding: clamp(34px, 3.3vw, 54px) clamp(24px, 2.8vw, 38px);
	background: var(--sp-ink);
	overflow: hidden;
	transition: background .3s var(--sp-ease);
}

.sp-process-grid article:hover {
	background: #231f1b;
}

.sp-process-grid article > span {
	position: absolute;
	top: 12px;
	left: 26px;
	color: rgba(247, 243, 238, .12);
	font-family: var(--sp-display);
	font-size: clamp(72px, 8vw, 112px);
	font-style: italic;
	font-weight: 400;
	line-height: 1;
	pointer-events: none;
	user-select: none;
}

.sp-process-grid h3 {
	position: relative;
	z-index: 1;
	margin: 92px 0 14px;
	color: var(--sp-paper);
	font-family: var(--sp-display);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
}

.sp-process-grid p {
	position: relative;
	z-index: 1;
	margin: 0;
	color: rgba(247, 243, 238, .48);
	font-size: 14px;
	line-height: 1.85;
}

.sp-locations {
	background: var(--sp-paper);
}

#reviews {
	background:
		radial-gradient(circle at 18% 16%, rgba(196, 168, 130, .12), transparent 28%),
		linear-gradient(180deg, #070707 0%, #0c0b0a 100%);
	color: var(--sp-paper);
}

#reviews .sp-cap {
	color: var(--sp-dust);
}

#reviews .sp-cap-line::before {
	background: var(--sp-dust);
}

#reviews h2 {
	color: var(--sp-paper);
}

.sp-reviews {
	position: relative;
	overflow: visible;
	max-width: 1600px;
	margin: 0 auto;
	padding-inline: clamp(72px, 6vw, 96px);
}

.sp-reviews-viewport {
	overflow: hidden;
	padding: 2px;
	cursor: grab;
	touch-action: pan-y;
	user-select: none;
}

.sp-reviews-viewport.is-dragging {
	cursor: grabbing;
}

.sp-reviews-track {
	display: flex;
	gap: 24px;
	align-items: stretch;
	will-change: transform;
	transition: transform .72s var(--sp-ease);
}

.sp-reviews blockquote {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 0 0 calc((100% - 48px) / 3);
	min-height: 380px;
	margin: 0;
	padding: clamp(48px, 3vw, 66px) clamp(28px, 3vw, 42px) 36px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .025) 48%, rgba(196, 168, 130, .06)),
		#121110;
	border: 1px solid rgba(247, 243, 238, .16);
	box-shadow: 0 26px 76px rgba(0, 0, 0, .36);
	transition: border-color .3s var(--sp-ease), transform .3s var(--sp-ease), background .3s var(--sp-ease);
}

.sp-reviews blockquote:hover {
	border-color: rgba(255, 255, 255, .32);
	transform: translateY(-2px);
}

.sp-reviews blockquote::before {
	content: "\"";
	position: absolute;
	top: 10px;
	left: clamp(26px, 2.5vw, 36px);
	color: rgba(196, 168, 130, .28);
	font-family: var(--sp-display);
	font-size: 92px;
	font-style: italic;
	line-height: 1;
}

.sp-reviews blockquote::after {
	content: "*****";
	display: block;
	position: absolute;
	top: 34px;
	right: clamp(26px, 2.5vw, 36px);
	color: var(--sp-dust);
	font-size: 10px;
	letter-spacing: .1em;
}

.sp-reviews p {
	position: relative;
	z-index: 1;
	margin: 0 0 34px;
	color: rgba(247, 243, 238, .92);
	font-family: var(--sp-display);
	font-size: clamp(20px, 1.45vw, 26px);
	font-style: italic;
	line-height: 1.58;
}

.sp-reviews cite {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: auto;
	color: var(--sp-paper);
	font-size: 13px;
	font-style: normal;
	font-weight: 720;
}

.sp-review-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	flex: 0 0 auto;
	border-radius: 999px;
	background: var(--sp-paper);
	box-shadow: inset 0 0 0 1px rgba(196, 168, 130, .38), 0 14px 34px rgba(0, 0, 0, .18);
}

.sp-review-avatar svg {
	width: 22px;
	height: 22px;
}

.sp-review-avatar circle,
.sp-review-avatar path {
	fill: none;
	stroke: var(--sp-accent-2);
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sp-reviews-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	width: fit-content;
	margin: 34px auto 0;
	padding: 10px 16px;
	background: rgba(255, 255, 255, .035);
	border: 1px solid rgba(247, 243, 238, .08);
	border-radius: 999px;
}

.sp-reviews-controls > button {
	position: absolute;
	top: calc(50% - 41px);
	z-index: 4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	min-width: 56px;
	min-height: 56px;
	padding: 0;
	border-radius: 999px;
	background: transparent;
	border: 1px solid rgba(247, 243, 238, .34);
	color: var(--sp-paper);
	cursor: pointer;
	transform: translateY(-50%);
	transition: background .25s var(--sp-ease), color .25s var(--sp-ease), opacity .25s var(--sp-ease), border-color .25s var(--sp-ease), transform .25s var(--sp-ease);
}

.sp-reviews-controls > button[data-testimonial-prev] {
	left: 0;
}

.sp-reviews-controls > button[data-testimonial-next] {
	right: 0;
}

.sp-reviews-controls > button svg {
	width: 22px;
	height: 22px;
}

.sp-reviews-controls > button path {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sp-reviews-controls > button:hover:not(:disabled) {
	background: var(--sp-paper);
	border-color: var(--sp-paper);
	color: var(--sp-ink);
	transform: translateY(-50%) scale(1.04);
}

.sp-reviews-controls > button:disabled {
	opacity: .34;
	cursor: default;
}

.sp-reviews-dots {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 0 6px;
}

.sp-reviews-dots button {
	min-width: 0;
	width: 8px;
	height: 8px;
	min-height: 0;
	padding: 0;
	border-radius: 999px;
	border: 1px solid rgba(247, 243, 238, .5);
	background: transparent;
	transition: width .25s var(--sp-ease), background .25s var(--sp-ease), border-color .25s var(--sp-ease);
}

.sp-reviews-dots button.is-active {
	width: 22px;
	background: var(--sp-dust);
	border-color: var(--sp-dust);
}

.sp-contact {
	position: relative;
	display: grid;
	grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
	gap: clamp(42px, 8vw, 104px);
	align-items: start;
	padding: clamp(78px, 9vw, 126px) clamp(22px, 5vw, 74px);
	background: var(--sp-paper);
	overflow: hidden;
}

.sp-contact-copy h2 {
	margin-top: 18px;
	margin-bottom: 24px;
	max-width: 620px;
}

.sp-contact-copy > p {
	max-width: 520px;
	margin: 0 0 42px;
}

.sp-contact-list {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--sp-paper-3);
}

.sp-contact-list a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 62px;
	padding: 16px 0;
	border-bottom: 1px solid var(--sp-paper-3);
	color: var(--sp-sepia);
	font-size: 14px;
	line-height: 1.45;
	transition: color .25s var(--sp-ease);
}

.sp-contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	border: 1px solid var(--sp-paper-3);
	color: var(--sp-accent-2);
	transition: border-color .25s var(--sp-ease), background .25s var(--sp-ease), color .25s var(--sp-ease), transform .25s var(--sp-ease);
}

.sp-contact-icon svg {
	display: block;
	width: 16px;
	height: 16px;
	overflow: visible;
}

.sp-contact-icon path,
.sp-contact-icon circle,
.sp-contact-icon rect {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sp-contact-list a > span:last-child {
	min-width: 0;
}

.sp-contact-list a:hover {
	color: var(--sp-ink);
}

.sp-contact-list a:hover .sp-contact-icon {
	border-color: var(--sp-accent);
	background: rgba(184, 144, 106, .08);
	color: var(--sp-ink);
	transform: translateY(-1px);
}

.sp-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	padding: clamp(26px, 4vw, 46px);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .4), rgba(255, 255, 255, 0)),
		var(--sp-paper-2);
	border: 1px solid var(--sp-paper-3);
	box-shadow: 0 28px 70px rgba(26, 23, 20, .08);
}

.sp-form-alert,
.sp-form-wide {
	grid-column: 1 / -1;
}

.sp-form-alert {
	padding: 14px 16px;
	border: 1px solid var(--sp-dust);
	color: var(--sp-accent-2);
	background: rgba(196, 168, 130, .09);
	font-size: 13px;
	text-align: center;
}

.sp-form-alert-error {
	border-color: rgba(145, 71, 54, .42);
	color: #914736;
	background: rgba(145, 71, 54, .08);
}

.sp-form label {
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: var(--sp-accent-2);
	font-size: 10px;
	font-weight: 720;
	letter-spacing: .22em;
	text-transform: uppercase;
}

.sp-form input,
.sp-form select,
.sp-form textarea {
	width: 100%;
	min-height: 50px;
	padding: 14px 17px;
	border: 1px solid var(--sp-paper-3);
	border-radius: 0;
	background: rgba(247, 243, 238, .72);
	color: var(--sp-ink);
	font: 420 14px/1.45 var(--sp-body);
	letter-spacing: 0;
	outline: 0;
	appearance: none;
	-webkit-appearance: none;
	transition: border-color .25s var(--sp-ease), background .25s var(--sp-ease), box-shadow .25s var(--sp-ease);
}

.sp-form textarea {
	min-height: 132px;
	resize: vertical;
}

.sp-form input::placeholder,
.sp-form textarea::placeholder {
	color: var(--sp-muted);
}

.sp-form input:focus,
.sp-form select:focus,
.sp-form textarea:focus {
	border-color: var(--sp-accent);
	background: var(--sp-paper);
	box-shadow: 0 0 0 3px rgba(184, 144, 106, .12);
}

.sp-form-actions {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 14px;
	margin-top: 4px;
}

.sp-form-actions .sp-button {
	width: 100%;
	min-height: 52px;
}

.sp-launch-ticker {
	overflow: hidden;
	padding: 16px 0;
	background: var(--sp-ink);
	border-top: 1px solid rgba(196, 168, 130, .2);
	border-bottom: 1px solid rgba(196, 168, 130, .2);
	white-space: nowrap;
}

.sp-launch-ticker-track {
	display: inline-flex;
	align-items: center;
	animation: sp-launch-ticker 34s linear infinite;
}

.sp-launch-ticker span {
	position: relative;
	padding: 0 42px;
	color: rgba(247, 243, 238, .72);
	font-size: 10px;
	font-weight: 720;
	letter-spacing: .24em;
	line-height: 1;
	text-transform: uppercase;
}

.sp-launch-ticker span::before {
	content: "";
	position: absolute;
	left: -4px;
	top: 50%;
	width: 7px;
	height: 7px;
	border: 1px solid var(--sp-dust);
	transform: translateY(-50%) rotate(45deg);
}

@keyframes sp-launch-ticker {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.sp-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 26px;
	padding: 42px clamp(22px, 5vw, 74px);
	background: #fff;
	border-top: 1px solid var(--sp-paper-3);
	color: var(--sp-muted);
}

.sp-footer .sp-logo {
	display: flex;
	align-items: center;
	width: 172px;
	min-height: 48px;
}

.sp-footer .sp-logo img {
	width: 172px;
	height: auto;
	opacity: .9;
}

.sp-footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(16px, 3vw, 36px);
}

.sp-footer-links a {
	font-size: 10px;
	font-weight: 650;
	letter-spacing: .18em;
	text-transform: uppercase;
	transition: color .25s var(--sp-ease);
}

.sp-footer-links a:hover {
	color: var(--sp-ink);
}

.sp-footer p {
	margin: 0;
	font-size: 10px;
	letter-spacing: .06em;
}

.sp-whatsapp {
	position: fixed;
	right: max(24px, env(safe-area-inset-right));
	bottom: max(24px, env(safe-area-inset-bottom));
	z-index: 300;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	padding: 0;
	background: #fff;
	border: 1px solid rgba(26, 23, 20, .08);
	border-radius: 999px;
	box-shadow: 0 12px 28px rgba(26, 23, 20, .18);
	color: #25d366;
	text-decoration: none;
	isolation: isolate;
	transition: transform .25s var(--sp-ease), box-shadow .25s var(--sp-ease), border-color .25s var(--sp-ease);
}

.sp-whatsapp-label {
	display: none;
}

.sp-whatsapp svg {
	width: 42px;
	height: 42px;
	padding: 0;
	flex: 0 0 auto;
	background: transparent;
	box-shadow: none;
	transition: transform .25s var(--sp-ease);
}

.sp-whatsapp:hover,
.sp-whatsapp:focus-visible {
	border-color: rgba(37, 211, 102, .32);
	box-shadow: 0 16px 34px rgba(26, 23, 20, .22);
	transform: translateY(-2px);
}

.sp-whatsapp:hover svg,
.sp-whatsapp:focus-visible svg {
	transform: scale(1.04);
}

.sp-whatsapp:focus-visible {
	outline: 2px solid rgba(184, 144, 106, .72);
	outline-offset: 5px;
}

.sp-whatsapp path {
	fill: none;
	stroke: #25d366;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.4;
}

.sp-whatsapp .sp-whatsapp-phone {
	fill: #25d366;
	stroke: none;
}

.sp-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .78s var(--sp-ease), transform .78s var(--sp-ease);
}

.sp-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (max-width: 1120px) {
	.sp-services {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sp-portfolio-card {
		width: clamp(300px, 42vw, 390px);
	}

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

	.sp-reviews blockquote {
		flex-basis: calc((100% - 24px) / 2);
	}

	.sp-reviews {
		padding-inline: 68px;
	}
}

@media (max-width: 960px) {
	.sp-reveal {
		opacity: 1;
		transform: none;
	}

	.sp-nav {
		min-height: 64px;
		padding: 16px 28px;
		background: transparent;
	}

	.sp-nav.is-solid {
		padding: 12px 28px;
		background: rgba(255, 255, 255, .98);
	}

	.sp-nav-links {
		display: none;
	}

	.sp-menu-button {
		position: fixed;
		top: 15px;
		right: auto;
		left: min(calc(100vw - 58px), 338px);
		z-index: 320;
		display: flex !important;
		transform: none;
		opacity: .01;
	}

	.sp-nav::after {
		position: fixed;
		top: 24px;
		right: auto;
		left: min(calc(100vw - 58px), 338px);
		z-index: 319;
		display: block;
		width: 28px;
		height: 18px;
		background:
			linear-gradient(var(--sp-ink), var(--sp-ink)) 0 0 / 100% 2px no-repeat,
			linear-gradient(var(--sp-ink), var(--sp-ink)) 0 8px / 100% 2px no-repeat,
			linear-gradient(var(--sp-ink), var(--sp-ink)) 0 16px / 100% 2px no-repeat;
	}

	.sp-menu-open .sp-nav::after {
		display: none;
	}

	.sp-menu-button::before {
		display: none;
	}

	.sp-menu-button span {
		display: block;
		background: var(--sp-ink);
	}

	.sp-logo img {
		width: 188px;
		height: auto;
		max-width: 100%;
		object-fit: contain;
		transform: none;
	}

	.sp-nav .sp-logo {
		width: 188px;
		min-height: 52px;
	}

	.sp-hero {
		display: flex;
		flex-direction: column;
		min-height: auto;
	}

	.sp-hero-photo {
		grid-column: auto;
		order: 1;
		min-height: 0;
		height: clamp(340px, 72vw, 540px);
	}

	.sp-hero-photo::after {
		background:
			linear-gradient(0deg, var(--sp-paper) 0%, rgba(247, 243, 238, 0) 34%),
			linear-gradient(180deg, var(--sp-paper) 0%, rgba(247, 243, 238, 0) 25%);
	}

	.sp-hero-copy {
		position: static;
		order: 2;
		width: 100%;
		height: auto;
		padding: 44px 28px 70px;
	}

	.sp-hero h1 {
		font-size: clamp(48px, 12vw, 76px);
	}

	.sp-lede {
		max-width: 660px;
	}

	.sp-hero-badge {
		right: 24px;
		bottom: 24px;
	}

	.sp-intro,
	.sp-locations,
	.sp-section-split,
	.sp-why,
	.sp-founder,
	.sp-contact {
		grid-template-columns: 1fr;
	}

	.sp-section,
	.sp-why,
	.sp-process,
	.sp-founder,
	.sp-contact {
		padding: 78px 28px;
	}

	.sp-why-grid {
		grid-template-columns: 1fr;
	}

	.sp-intro-panel {
		max-width: none;
	}

	.sp-why-grid {
		gap: 10px;
	}

	.sp-portfolio {
		padding: 72px 0;
	}

	.sp-portfolio .sp-section-split {
		grid-template-columns: 1fr;
		margin-bottom: 34px;
		padding: 0 28px;
	}

	.sp-portfolio h2 {
		max-width: 680px;
		font-size: clamp(40px, 8vw, 58px);
	}

	.sp-section-split {
		margin-bottom: 42px;
	}

	.sp-section-divider {
		max-width: none;
		margin: 0;
		min-height: 70px;
		padding: 0 28px;
		gap: 18px;
	}

	.sp-founder {
		gap: 52px;
	}

	.sp-frame {
		display: none;
	}

	.sp-founder-image img {
		height: auto;
	}

	.sp-founder-card {
		right: 0;
	}

	.sp-form {
		padding: 30px 24px;
	}
}

@media (max-width: 720px) {
	.sp-services,
	.sp-process-grid {
		grid-template-columns: 1fr;
	}

	.sp-services article,
	.sp-process-grid article {
		min-height: auto;
	}

	.sp-reviews blockquote {
		flex-basis: 100%;
		min-height: 360px;
		padding: 58px 34px 34px;
	}

	.sp-reviews {
		padding-inline: 0;
	}

	.sp-reviews-viewport {
		overflow: hidden;
		padding: 0;
		border: 1px solid rgba(247, 243, 238, .1);
		background: rgba(255, 255, 255, .025);
	}

	.sp-reviews-controls {
		justify-content: center;
		gap: 13px;
		margin-top: 24px;
		padding: 8px 10px;
	}

	.sp-reviews-controls > button {
		position: static;
		transform: none;
	}

	.sp-reviews-controls > button:hover:not(:disabled) {
		transform: translateY(-1px);
	}

	.sp-reviews p {
		font-size: clamp(19px, 5.2vw, 24px);
		line-height: 1.55;
	}

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

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

	.sp-contact-list a {
		padding-right: 8px;
	}

	.sp-footer {
		flex-direction: column;
		text-align: center;
	}

	.sp-footer-links {
		justify-content: center;
	}
}

@media (max-width: 520px) {
	.sp-nav {
		min-height: 62px;
		padding: 12px 24px;
	}

	.sp-nav.is-solid {
		min-height: 58px;
		padding: 10px 24px;
	}

	.sp-logo img {
		width: 152px;
		height: auto;
	}

	.sp-nav .sp-logo {
		width: 152px;
		min-height: 42px;
	}

	.sp-menu-button {
		width: 36px;
		height: 36px;
		right: 24px;
	}

	.sp-menu-button span {
		width: 25px;
	}

	.sp-mobile-menu {
		padding-top: 92px;
	}

	.sp-mobile-menu-logo {
		top: 22px;
		left: 24px;
		width: 166px;
		height: 46px;
	}

	.sp-mobile-menu-logo img {
		max-height: 46px;
	}

	.sp-menu-close {
		top: 30px;
		right: 24px;
	}

	.sp-hero-photo {
		height: clamp(340px, 84vw, 430px);
		min-height: 340px;
	}

	.sp-hero-badge {
		display: none;
	}

	.sp-hero-copy {
		max-width: 390px;
		padding: 30px 24px 62px;
	}

	.sp-hero-copy .sp-cap {
		margin-bottom: 22px;
		font-size: 9px;
		letter-spacing: .24em;
	}

	.sp-hero h1 {
		font-size: clamp(38px, 12vw, 48px);
		line-height: 1.01;
	}

	.sp-line-indent {
		padding-left: 10px;
	}

	.sp-lede {
		margin-top: 22px;
		font-size: 13.5px;
		line-height: 1.75;
	}

	.sp-hero-actions {
		flex-direction: column;
		gap: 10px;
		margin-top: 28px;
	}

	.sp-button {
		width: 100%;
		min-height: 44px;
		padding-inline: 18px;
		font-size: 10px;
	}

	.sp-stats {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1px;
		margin-top: 34px;
		padding-top: 0;
		border-top: 0;
		background: var(--sp-paper-3);
		border: 1px solid var(--sp-paper-3);
	}

	.sp-stats div {
		min-width: 0;
		padding: 16px 12px 15px;
		background: rgba(255, 255, 255, .42);
	}

	.sp-stats span {
		max-width: none;
		margin-top: 7px;
		font-size: 8px;
		letter-spacing: .08em;
		line-height: 1.35;
	}

	.sp-stats strong {
		font-size: clamp(24px, 7vw, 30px);
	}

	.sp-section,
	.sp-why,
	.sp-process,
	.sp-founder,
	.sp-contact {
		padding: 58px 24px;
	}

	.sp-section-divider {
		grid-template-columns: minmax(44px, 1fr) 14px minmax(44px, 1fr);
		min-height: 58px;
		padding-inline: 24px;
	}

	.sp-section-divider i {
		width: 13px;
		height: 13px;
	}

	.sp-section h2,
	.sp-why h2,
	.sp-founder h2,
	.sp-portfolio h2,
	.sp-process h2,
	.sp-contact h2 {
		font-size: clamp(32px, 10vw, 40px);
		line-height: 1.08;
	}

	.sp-section p,
	.sp-section-split > p,
	.sp-founder-copy p,
	.sp-portfolio p,
	.sp-contact-copy p {
		font-size: 14px;
		line-height: 1.78;
	}

	.sp-services article {
		padding: 30px 24px;
	}

	.sp-why article {
		min-height: auto;
		padding: 30px 24px;
	}

	.sp-why article > span {
		margin-bottom: 24px;
		font-size: 42px;
	}

	.sp-intro-points {
		grid-template-columns: 1fr;
	}

	.sp-portfolio {
		padding-top: 58px;
		padding-bottom: 64px;
		padding-left: 0;
		padding-right: 0;
	}

	.sp-portfolio-track {
		gap: 14px;
		padding-inline: 18px;
		animation-duration: 34s;
	}

	.sp-portfolio-card {
		width: min(78vw, 340px);
	}

	.sp-portfolio-card figcaption {
		left: 18px;
		right: 18px;
		bottom: 18px;
	}

	.sp-portfolio-card figcaption strong {
		max-width: 150px;
		font-size: 9px;
		letter-spacing: .14em;
	}

	.sp-services article > span {
		margin-bottom: 20px;
		font-size: 46px;
	}

	.sp-services h3,
	.sp-process-grid h3 {
		font-size: 22px;
	}

	.sp-founder-image img {
		height: auto;
	}

	.sp-founder-card {
		right: -8px;
		bottom: -14px;
		min-width: 132px;
		padding: 18px 16px;
	}

	.sp-founder-tags {
		grid-template-columns: 1fr;
	}

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

	.sp-reviews-controls {
		gap: 10px;
	}

	.sp-reviews-controls > button {
		width: 42px;
		height: 42px;
		min-width: 42px;
		min-height: 42px;
	}

	.sp-reviews blockquote {
		min-height: 340px;
		padding: 54px 24px 30px;
	}

	.sp-review-avatar {
		width: 40px;
		height: 40px;
	}

	.sp-reviews cite {
		gap: 12px;
		font-size: 12px;
	}

	.sp-form {
		padding: 24px 18px;
		gap: 14px;
	}

	.sp-form label {
		font-size: 9px;
		letter-spacing: .18em;
	}

	.sp-form input,
	.sp-form select,
	.sp-form textarea {
		min-height: 48px;
		font-size: 14px;
	}

	.sp-whatsapp {
		right: max(14px, env(safe-area-inset-right));
		bottom: max(14px, env(safe-area-inset-bottom));
		width: 64px;
		height: 64px;
	}

	.sp-whatsapp svg {
		width: 38px;
		height: 38px;
	}
}

@media (max-width: 380px) {
	.sp-nav {
		padding-inline: 18px;
	}

	.sp-hero-copy,
	.sp-section,
	.sp-portfolio .sp-section-split,
	.sp-process,
	.sp-founder,
	.sp-contact {
		padding-left: 18px;
		padding-right: 18px;
	}

	.sp-hero h1 {
		font-size: 37px;
	}

	.sp-stats {
		grid-template-columns: 1fr;
		gap: 1px;
	}

	.sp-stats span {
		max-width: none;
	}
}

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

	.sp-reveal,
	.sp-section::before,
	.sp-section::after,
	.sp-founder::before,
	.sp-founder::after,
	.sp-process::before,
	.sp-process::after,
	.sp-contact::before,
	.sp-contact::after,
	.sp-reviews-track,
	.sp-button,
	.sp-services article,
	.sp-process-grid article,
	.sp-whatsapp svg {
		transition: none;
	}

	.sp-ticker-track {
		animation: none;
	}

	.sp-portfolio-track {
		animation: none;
	}

	.sp-launch-ticker-track {
		animation: none;
	}

	.sp-section::before,
	.sp-section::after,
	.sp-founder::before,
	.sp-founder::after,
	.sp-process::before,
	.sp-process::after,
	.sp-contact::before,
	.sp-contact::after {
		animation: none;
	}
}
