/* ==========================================================================
   Portfolio Pro - Main Stylesheet
   ========================================================================== */

/* CSS Variables */
:root {
	/* Colors */
	--bg: #F5F1E8;
	--bg-alt: #EDE8DA;
	--ink: #0A0A0A;
	--ink-soft: #1F1F1F;
	--ink-muted: #6B6B6B;
	--ink-faint: #A8A39A;
	--accent: #FF5E1F;
	--accent-soft: #FFE5D8;
	--line: rgba(10, 10, 10, 0.12);
	--line-strong: rgba(10, 10, 10, 0.22);

	/* Typography - Poppins for everything (display, body, mono-style labels) */
	--font-display: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
	--font-body: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
	--font-mono: 'Poppins', 'Helvetica Neue', Arial, sans-serif;

	/* Type scale */
	--fs-xs: 12px;
	--fs-sm: 14px;
	--fs-base: 17px;
	--fs-md: 20px;
	--fs-lg: 28px;
	--fs-xl: clamp(1.75rem, 3.5vw, 2.75rem);
	--fs-2xl: clamp(2.25rem, 5vw, 4rem);
	--fs-3xl: clamp(2.75rem, 7vw, 5.5rem);

	/* Spacing */
	--gutter: clamp(1.5rem, 4vw, 4rem);
	--section-pad: clamp(5rem, 10vw, 10rem);
	--container: 1440px;

	/* Motion */
	--ease: cubic-bezier(0.65, 0, 0.35, 1);
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-in: cubic-bezier(0.55, 0, 1, 0.45);
}

/* ==========================================================================
   Base
   ========================================================================== */

::selection {
	background: var(--ink);
	color: var(--bg);
}

::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-track {
	background: var(--bg);
}
::-webkit-scrollbar-thumb {
	background: var(--line-strong);
	border-radius: 0;
}
::-webkit-scrollbar-thumb:hover {
	background: var(--ink);
}

body.lenis-stopped {
	overflow: hidden;
}

body {
	font-feature-settings: "ss01", "kern", "liga";
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 4px;
}

button {
	background: none;
	border: 0;
	font: inherit;
	color: inherit;
	cursor: pointer;
	padding: 0;
}

/* ==========================================================================
   Page Loader
   ========================================================================== */

.page-loader {
	position: fixed;
	inset: 0;
	background: var(--bg);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.page-loader__inner {
	overflow: hidden;
}

.page-loader__count {
	font-family: var(--font-mono);
	font-size: clamp(80px, 14vw, 200px);
	font-weight: 600;
	color: var(--ink);
	letter-spacing: -0.04em;
	line-height: 1;
	display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
	.page-loader { display: none; }
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 1.5rem var(--gutter);
	background: transparent;
	transition: background-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.site-header.is-scrolled {
	background: rgba(245, 241, 232, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	max-width: var(--container);
	margin: 0 auto;
}

.site-header__logo {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--ink);
	transition: color 0.3s var(--ease);
}

.site-header__logo:hover {
	color: var(--accent);
}

.custom-logo-link img {
	max-height: 38px;
	width: auto;
}

.primary-menu {
	display: flex;
	gap: 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu li a {
	font-family: var(--font-mono);
	font-size: 13px;
	font-weight: 400;
	color: var(--ink);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.5rem 0;
	position: relative;
	transition: color 0.3s var(--ease);
}

.primary-menu li a::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: var(--ink);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s var(--ease);
}

.primary-menu li a:hover::before {
	transform: scaleX(1);
}

.site-header__cta {
	display: flex;
	align-items: center;
	gap: 1rem;
}

/* Mobile menu toggle */
.menu-toggle {
	display: none;
	width: 36px;
	height: 36px;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
}

.menu-toggle span {
	display: block;
	width: 22px;
	height: 1.5px;
	background: var(--ink);
	transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle.is-open span:first-child {
	transform: translateY(3.5px) rotate(45deg);
}
.menu-toggle.is-open span:last-child {
	transform: translateY(-3px) rotate(-45deg);
}

@media (max-width: 800px) {
	.site-header__nav {
		position: fixed;
		inset: 0;
		background: var(--bg);
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-2vh);
		transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
	}
	.site-header__nav.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}
	.primary-menu {
		flex-direction: column;
		gap: 1.5rem;
		text-align: center;
	}
	.primary-menu li a {
		font-family: var(--font-display);
		font-size: 2.25rem;
		font-weight: 700;
		text-transform: none;
		letter-spacing: -0.02em;
	}
	.menu-toggle { display: flex; }
	.site-header__cta .btn { display: none; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.95rem 1.5rem;
	background: var(--ink);
	color: var(--bg);
	font-family: var(--font-mono);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border: 1px solid var(--ink);
	transition: background-color 0.4s var(--ease), color 0.4s var(--ease), transform 0.6s var(--ease-out);
	overflow: hidden;
	will-change: transform;
}

.btn span {
	position: relative;
	z-index: 1;
}

.btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--accent);
	transform: translateY(101%);
	transition: transform 0.5s var(--ease);
}

.btn:hover::before {
	transform: translateY(0);
}

.btn:hover {
	border-color: var(--accent);
}

.btn--ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--ink);
}

.btn--small {
	padding: 0.6rem 1rem;
	font-size: 11px;
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--font-mono);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--ink);
	padding: 0.5rem 0;
	transition: gap 0.4s var(--ease), color 0.3s var(--ease);
}

.link-arrow:hover {
	gap: 1.25rem;
	color: var(--accent);
}

.link-arrow svg {
	transition: transform 0.4s var(--ease);
}

.link-arrow:hover svg {
	transform: translateX(2px);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	padding: 8rem var(--gutter) 7rem;
	overflow: hidden;
}

/* ----- Animated background blobs ----- */
.hero__blob {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
	will-change: transform;
	filter: blur(80px);
	opacity: 0.55;
}

.hero__blob--1 {
	width: 55vw;
	height: 55vw;
	background: radial-gradient(circle, rgba(255, 94, 31, 0.45), rgba(255, 94, 31, 0) 70%);
	top: -10vw;
	right: -15vw;
	animation: heroBlob1 18s ease-in-out infinite;
}

.hero__blob--2 {
	width: 40vw;
	height: 40vw;
	background: radial-gradient(circle, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0) 70%);
	bottom: -8vw;
	left: -8vw;
	animation: heroBlob2 22s ease-in-out infinite;
}

@keyframes heroBlob1 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33%      { transform: translate(-4vw, 3vw) scale(1.08); }
	66%      { transform: translate(3vw, -2vw) scale(0.95); }
}
@keyframes heroBlob2 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50%      { transform: translate(5vw, -3vw) scale(1.12); }
}

/* ----- Floating geometric shapes ----- */
.hero__shape {
	position: absolute;
	pointer-events: none;
	z-index: 1;
	color: var(--accent);
	will-change: transform;
}

.hero__shape--asterisk {
	width: 56px;
	height: 56px;
	top: 18%;
	right: 8%;
	animation: heroSpin 24s linear infinite, heroFloat 6s ease-in-out infinite;
}

.hero__shape--circle {
	width: 90px;
	height: 90px;
	bottom: 22%;
	right: 14%;
	color: var(--ink);
	opacity: 0.35;
	animation: heroSpinReverse 40s linear infinite, heroFloat 8s ease-in-out infinite 1s;
}

@keyframes heroSpin {
	to { transform: rotate(360deg); }
}
@keyframes heroSpinReverse {
	to { transform: rotate(-360deg); }
}
@keyframes heroFloat {
	0%, 100% { translate: 0 0; }
	50%      { translate: 0 -12px; }
}

@media (max-width: 800px) {
	.hero__shape--asterisk { width: 36px; height: 36px; right: 6%; top: 14%; }
	.hero__shape--circle { width: 60px; height: 60px; right: 8%; bottom: 28%; }
}

/* ----- Marquee strip ----- */
.hero__marquee {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: var(--bg);
	padding: 1rem 0;
	z-index: 2;
	mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.hero__marquee-track {
	display: inline-flex;
	white-space: nowrap;
	animation: marqueeScroll 38s linear infinite;
	will-change: transform;
}

.hero__marquee-item {
	font-family: var(--font-mono);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--ink);
	margin-right: 2rem;
}

.hero__marquee-dot {
	color: var(--accent);
	font-size: 8px;
	display: inline-flex;
	align-items: center;
	margin-right: 2rem;
}

@keyframes marqueeScroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-33.3333%); }
}

/* Hero scroll indicator: move up to avoid overlapping marquee */
.hero .hero__scroll {
	bottom: 4.5rem;
}

/* Reduced motion - disable all animations */
@media (prefers-reduced-motion: reduce) {
	.hero__blob,
	.hero__shape,
	.hero__marquee-track {
		animation: none !important;
	}
	.hero__shape { transform: none; }
}

.hero__inner {
	position: relative;
	max-width: var(--container);
	margin: 0 auto;
	width: 100%;
	z-index: 2;
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--font-mono);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink);
	margin-bottom: 2.5rem;
	padding: 0.4rem 0.9rem;
	border: 1px solid var(--line);
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.4);
}

.hero__pulse {
	display: block;
	width: 7px;
	height: 7px;
	background: var(--accent);
	border-radius: 50%;
	box-shadow: 0 0 0 0 var(--accent);
	animation: pulse 2s var(--ease) infinite;
}

@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(255, 94, 31, 0.7); }
	70% { box-shadow: 0 0 0 12px rgba(255, 94, 31, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 94, 31, 0); }
}

.hero__title {
	font-family: var(--font-display);
	font-size: var(--fs-3xl);
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -0.03em;
	color: var(--ink);
	max-width: 22ch;
	margin-bottom: 2.5rem;
}

.hero__title em {
	font-style: normal;
	font-weight: 700;
	color: var(--accent);
	position: relative;
}

.hero__subtitle {
	font-size: clamp(1.125rem, 1.6vw, 1.4rem);
	line-height: 1.45;
	color: var(--ink-muted);
	max-width: 42ch;
	margin-bottom: 2.5rem;
}

.hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 4rem;
}

.btn--ghost {
	background: transparent;
	color: var(--ink);
	border: 1px solid var(--ink);
}

.btn--ghost:hover {
	background: var(--ink);
	color: var(--bg);
}

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--line);
	max-width: 600px;
}

.hero__meta-item {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.hero__meta-label {
	font-family: var(--font-mono);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-faint);
}

.hero__meta-value {
	font-family: var(--font-mono);
	font-size: 13px;
	color: var(--ink);
}

.hero__scroll {
	position: absolute;
	bottom: 2rem;
	right: var(--gutter);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--font-mono);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-muted);
}

.hero__scroll svg {
	animation: scroll-bounce 2s var(--ease) infinite;
}

@keyframes scroll-bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(6px); }
}

.hero__decoration {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	opacity: 0.6;
	mix-blend-mode: multiply;
}

.hero__decoration svg {
	width: 100%;
	height: 100%;
}

/* ==========================================================================
   About
   ========================================================================== */

.about {
	padding: var(--section-pad) var(--gutter);
	border-top: 1px solid var(--line);
}

.about__inner {
	max-width: var(--container);
	margin: 0 auto;
}

/* Top row: eyebrow + horizontal divider line */
.about__top {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 4rem;
}

.about__eyebrow {
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--ink-muted);
	white-space: nowrap;
}

.about__eyebrow-num { color: var(--accent); }

.about__divider {
	flex: 1;
	height: 1px;
	background: var(--line-strong);
}

/* Section heading */
.about__heading {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.1;
	margin-bottom: 2.5rem;
	max-width: 20ch;
}

/* Main two-column body */
.about__body {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(2rem, 5vw, 5rem);
	align-items: start;
}

.about__lead {
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: -0.01em;
	color: var(--ink);
}

.about__lead p + p { margin-top: 1.25rem; }

.about__lead em {
	font-style: normal;
	font-weight: 700;
	color: var(--accent);
}

.about__aside {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	padding-top: 0.75rem;
}

.about__pill {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--line);
}

.about__pill:first-child {
	border-top: 1px solid var(--line);
}

.about__pill-icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line-strong);
	border-radius: 50%;
	color: var(--accent);
}

.about__pill-icon svg {
	width: 16px;
	height: 16px;
}

.about__pill-text {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.about__pill-label {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-muted);
}

.about__pill-value {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 600;
	color: var(--ink);
	line-height: 1.3;
}

@media (max-width: 800px) {
	.about__body { grid-template-columns: 1fr; }
	.about__aside { padding-top: 0; }
	.about__top { gap: 1rem; }
}

/* Shared label style for work/services sections */
.work__label,
.services__label {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	font-family: var(--font-mono);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-muted);
}

.work__label-num,
.services__label-num {
	color: var(--accent);
}

/* ==========================================================================
   Work / Selected Projects
   ========================================================================== */

.work {
	padding: var(--section-pad) var(--gutter);
	border-top: 1px solid var(--line);
}

.work__header {
	max-width: var(--container);
	margin: 0 auto 5rem;
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: clamp(2rem, 6vw, 6rem);
	align-items: end;
}

.work__title {
	font-family: var(--font-display);
	font-size: var(--fs-2xl);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.035em;
	display: flex;
	align-items: baseline;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.work__title-meta {
	font-family: var(--font-mono);
	font-size: 14px;
	font-weight: 400;
	color: var(--ink-muted);
	letter-spacing: 0;
}

.work__grid {
	max-width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(2rem, 5vw, 5rem) clamp(1.5rem, 3vw, 3rem);
}

/* Stagger second column down for editorial feel */
.work__grid > .project-card:nth-child(even) {
	transform: translateY(6rem);
}

.work__footer {
	max-width: var(--container);
	margin: 6rem auto 0;
	padding-top: 3rem;
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: flex-end;
}

@media (max-width: 800px) {
	.work__header { grid-template-columns: 1fr; }
	.work__grid { grid-template-columns: 1fr; gap: 3rem; }
	.work__grid > .project-card:nth-child(even) { transform: none; }
}

/* ==========================================================================
   Project Card
   ========================================================================== */

.project-card {
	position: relative;
}

.project-card__link {
	display: block;
	color: inherit;
}

.project-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--bg-alt);
	margin-bottom: 1.5rem;
}

.project-card__image,
.project-card__media > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s var(--ease-out), filter 0.6s var(--ease);
	will-change: transform;
}

.project-card__link:hover .project-card__image,
.project-card__link:hover .project-card__media > img {
	transform: scale(1.05);
}

.project-card__image-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--bg-alt), #DAD2BD);
	font-family: var(--font-display);
	font-size: 8vw;
	font-weight: 800;
	color: var(--ink);
	opacity: 0.4;
}

.project-card__index {
	position: absolute;
	top: 1rem;
	left: 1rem;
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	color: var(--bg);
	background: var(--ink);
	padding: 0.3rem 0.55rem;
	letter-spacing: 0.06em;
	z-index: 2;
}

.project-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.project-card__meta {
	display: flex;
	gap: 1rem;
	font-family: var(--font-mono);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ink-muted);
}

.project-card__client::after {
	content: "·";
	margin-left: 1rem;
	color: var(--ink-faint);
}
.project-card__client:last-child::after { display: none; }

.project-card__title {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 2.2vw, 2rem);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--ink);
	transition: color 0.3s var(--ease);
}

.project-card__link:hover .project-card__title {
	color: var(--accent);
}

.project-card__techs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	list-style: none;
	margin: 0.5rem 0 0;
	padding: 0;
}

.project-card__techs li {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.04em;
	padding: 0.25rem 0.6rem;
	border: 1px solid var(--line);
	color: var(--ink-muted);
}

/* ==========================================================================
   Services
   ========================================================================== */

.services {
	padding: var(--section-pad) var(--gutter);
	border-top: 1px solid var(--line);
	background: var(--bg-alt);
}

.services__header {
	max-width: var(--container);
	margin: 0 auto 5rem;
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: clamp(2rem, 6vw, 6rem);
	align-items: end;
}

.services__title {
	font-family: var(--font-display);
	font-size: var(--fs-2xl);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.035em;
}

.services__grid {
	max-width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}

@media (max-width: 900px) {
	.services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.services__grid { grid-template-columns: 1fr; }
}

.service-card {
	background: var(--bg-alt);
	padding: 2.5rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	transition: background-color 0.4s var(--ease);
	min-height: 480px;
	position: relative;
}

.service-card:hover {
	background: var(--bg);
}

.service-card > * {
	position: relative;
	z-index: 1;
}

.service-card__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.service-card__index {
	font-family: var(--font-mono);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--accent);
	line-height: 1;
}

.service-card__price {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--ink);
	padding: 0.4rem 0.7rem;
	border: 1px solid var(--line-strong);
	background: var(--bg);
}

.service-card__title {
	font-family: var(--font-display);
	font-size: 1.625rem;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--ink);
}

.service-card__excerpt {
	font-size: 0.95rem;
	color: var(--ink-muted);
	line-height: 1.55;
}

.service-card__excerpt p { margin: 0; }

.service-card__features {
	list-style: none;
	margin: 0;
	padding: 1.25rem 0 0;
	border-top: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.service-card__features li {
	font-size: 13px;
	font-weight: 500;
	color: var(--ink);
	padding-left: 1.25rem;
	position: relative;
	line-height: 1.5;
}

.service-card__features li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: 600;
}

.service-card__cta {
	margin-top: auto;
	padding-top: 1.5rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ink);
	transition: gap 0.3s var(--ease), color 0.3s var(--ease);
	align-self: flex-start;
	cursor: pointer;
	background: none;
	border: 0;
	padding: 1.5rem 0 0;
}

.service-card__cta::after {
	content: "→";
	transition: transform 0.3s var(--ease);
}

.service-card:hover .service-card__cta {
	color: var(--accent);
	gap: 0.85rem;
}

.service-card:hover .service-card__cta::after {
	transform: translateX(2px);
}

@media (max-width: 800px) {
	.services__header { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Project Single
   ========================================================================== */

.project-single {
	padding-top: 8rem;
}

.project-hero {
	padding: 4rem var(--gutter) 6rem;
}

.project-hero__inner {
	max-width: var(--container);
	margin: 0 auto;
}

.project-hero__breadcrumb {
	display: flex;
	gap: 0.5rem;
	font-family: var(--font-mono);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ink-muted);
	margin-bottom: 3rem;
}

.project-hero__breadcrumb a:hover {
	color: var(--accent);
}

.project-hero__title {
	font-family: var(--font-display);
	font-size: var(--fs-3xl);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.035em;
	color: var(--ink);
	max-width: 16ch;
	margin-bottom: 2rem;
}

.project-hero__subtitle {
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	font-weight: 400;
	line-height: 1.35;
	color: var(--ink-muted);
	max-width: 38ch;
	margin-bottom: 4rem;
}

.project-hero__meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 2rem;
	padding: 2rem 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	margin-bottom: 3rem;
}

.project-hero__meta-item {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.project-hero__meta-item--full {
	grid-column: 1 / -1;
}

.project-hero__meta-label {
	font-family: var(--font-mono);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-faint);
}

.project-hero__meta-value {
	font-family: var(--font-mono);
	font-size: 14px;
	color: var(--ink);
}

.project-hero__links {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.project-cover {
	margin: 0 var(--gutter) 6rem;
	overflow: hidden;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
	aspect-ratio: 16 / 9;
}

.project-cover__image,
.project-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	will-change: transform;
}

.project-content {
	padding: 0 var(--gutter) var(--section-pad);
}

.project-content__inner {
	max-width: 720px;
	margin: 0 auto;
	font-size: 1.125rem;
	line-height: 1.65;
	color: var(--ink-soft);
}

.project-content__inner > * {
	margin-bottom: 1.5rem;
}

.project-content__inner h2 {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin-top: 4rem;
	margin-bottom: 1rem;
}

.project-content__inner h3 {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.015em;
	margin-top: 3rem;
	margin-bottom: 0.75rem;
}

.project-content__inner img {
	width: 100%;
	height: auto;
	margin: 3rem 0;
}

.project-content__inner .alignwide {
	max-width: var(--container);
	margin-left: calc(50% - 50vw + var(--gutter));
	margin-right: calc(50% - 50vw + var(--gutter));
	width: auto;
}

.project-content__inner .alignfull {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
	max-width: 100vw;
}

.project-content__inner blockquote {
	border-left: 2px solid var(--accent);
	padding: 0.5rem 0 0.5rem 2rem;
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-style: italic;
	line-height: 1.3;
	color: var(--ink);
	margin: 3rem 0;
}

.project-content__inner code {
	font-family: var(--font-mono);
	font-size: 0.875em;
	background: var(--bg-alt);
	padding: 0.2em 0.4em;
	border: 1px solid var(--line);
}

.project-content__inner pre {
	font-family: var(--font-mono);
	font-size: 0.875rem;
	background: var(--ink);
	color: var(--bg);
	padding: 1.5rem;
	overflow-x: auto;
	line-height: 1.6;
}

.project-content__inner pre code {
	background: none;
	border: 0;
	padding: 0;
}

/* Project navigation */
.project-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-top: 1px solid var(--line);
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.project-nav__link {
	padding: 3rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	transition: color 0.3s var(--ease);
}

.project-nav__link:hover {
	color: var(--accent);
}

.project-nav__prev {
	border-right: 1px solid var(--line);
	padding-right: 2rem;
}

.project-nav__next {
	padding-left: 2rem;
	text-align: right;
}

.project-nav__label {
	font-family: var(--font-mono);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-muted);
}

.project-nav__title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

@media (max-width: 800px) {
	.project-nav { grid-template-columns: 1fr; }
	.project-nav__prev { border-right: 0; padding-right: 0; border-bottom: 1px solid var(--line); }
	.project-nav__next { padding-left: 0; text-align: left; }
}

/* ==========================================================================
   Archive
   ========================================================================== */

.archive-hero {
	padding: 12rem var(--gutter) 4rem;
	border-bottom: 1px solid var(--line);
}

.archive-hero__inner {
	max-width: var(--container);
	margin: 0 auto;
}

.archive-hero__eyebrow {
	font-family: var(--font-mono);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-muted);
	margin-bottom: 1.5rem;
}

.archive-hero__title {
	font-family: var(--font-display);
	font-size: var(--fs-3xl);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.035em;
	max-width: 18ch;
	margin-bottom: 1.5rem;
}

.archive-hero__subtitle {
	font-size: 1.125rem;
	color: var(--ink-muted);
	max-width: 50ch;
}

.archive-list {
	padding: 4rem var(--gutter) var(--section-pad);
}

.archive-list__items {
	max-width: var(--container);
	margin: 0 auto;
}

.archive-item {
	border-bottom: 1px solid var(--line);
	position: relative;
}

.archive-item__link {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 2rem;
	padding: 2.5rem 0;
	transition: padding 0.4s var(--ease);
}

.archive-item__link:hover {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.archive-item__index {
	font-family: var(--font-mono);
	font-size: 13px;
	color: var(--ink-faint);
	letter-spacing: 0.08em;
}

.archive-item__title {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3.5vw, 3rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: var(--ink);
	transition: color 0.3s var(--ease);
}

.archive-item__link:hover .archive-item__title {
	color: var(--accent);
}

.archive-item__subtitle {
	font-size: 0.95rem;
	color: var(--ink-muted);
	margin-top: 0.5rem;
}

.archive-item__meta {
	display: flex;
	align-items: center;
	gap: 2rem;
	font-family: var(--font-mono);
	font-size: 13px;
	color: var(--ink-muted);
}

.archive-item__arrow {
	transition: transform 0.4s var(--ease);
	font-size: 1.5rem;
}

.archive-item__link:hover .archive-item__arrow {
	transform: translateX(8px);
	color: var(--accent);
}

.archive-item__preview {
	position: absolute;
	right: 4rem;
	top: 50%;
	width: 360px;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	transform: translate(2rem, -50%) scale(0.96);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s var(--ease), transform 0.6s var(--ease);
	z-index: 10;
}

.archive-item__preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.archive-item__link:hover .archive-item__preview {
	opacity: 1;
	transform: translate(0, -50%) scale(1);
}

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

@media (max-width: 700px) {
	.archive-item__link {
		grid-template-columns: 1fr auto;
		padding: 1.75rem 0;
	}
	.archive-item__index { display: none; }
}

.archive-pagination {
	max-width: var(--container);
	margin: 4rem auto 0;
	display: flex;
	justify-content: center;
	gap: 0.5rem;
}

.archive-pagination .page-numbers {
	font-family: var(--font-mono);
	font-size: 13px;
	padding: 0.5rem 0.85rem;
	border: 1px solid var(--line);
	transition: all 0.3s var(--ease);
}

.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
	background: var(--ink);
	color: var(--bg);
	border-color: var(--ink);
}

/* ==========================================================================
   Standard Page
   ========================================================================== */

.standard-page {
	padding: 12rem var(--gutter) var(--section-pad);
	max-width: 800px;
	margin: 0 auto;
}

.standard-page__title {
	font-family: var(--font-display);
	font-size: var(--fs-2xl);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.035em;
	margin-bottom: 3rem;
}

.standard-page__content {
	font-size: 1.125rem;
	line-height: 1.65;
	color: var(--ink-soft);
}

.standard-page__content > * {
	margin-bottom: 1.5rem;
}

.standard-page__content h2 {
	font-family: var(--font-display);
	font-size: 2rem;
	margin-top: 3rem;
	margin-bottom: 1rem;
}

/* ==========================================================================
   404
   ========================================================================== */

.error-404 {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8rem var(--gutter);
}

.error-404__inner {
	text-align: center;
	max-width: 500px;
}

.error-404__code {
	font-family: var(--font-mono);
	font-size: clamp(5rem, 14vw, 8rem);
	font-weight: 700;
	line-height: 1;
	color: var(--accent);
	letter-spacing: -0.04em;
}

.error-404__title {
	font-family: var(--font-display);
	font-size: var(--fs-xl);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.025em;
	margin: 1rem 0 1.5rem;
}

.error-404__text {
	color: var(--ink-muted);
	margin-bottom: 2.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
	background: var(--ink);
	color: var(--bg);
	padding: 6rem var(--gutter) 2rem;
	position: relative;
	overflow: hidden;
}

.site-footer__inner {
	max-width: var(--container);
	margin: 0 auto;
}

.site-footer__cta {
	padding-bottom: 5rem;
	margin-bottom: 4rem;
	border-bottom: 1px solid rgba(245, 241, 232, 0.15);
}

.site-footer__eyebrow {
	font-family: var(--font-mono);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-faint);
	margin-bottom: 2rem;
}

.site-footer__email {
	font-family: var(--font-display);
	font-size: clamp(2rem, 6vw, 5rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--bg);
	display: inline-block;
	transition: color 0.3s var(--ease);
	will-change: transform;
}

.site-footer__email:hover {
	color: var(--accent);
}

.site-footer__bottom {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 2rem;
	padding-top: 1rem;
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--ink-faint);
}

.site-footer__copy {
	color: var(--bg);
}

.site-footer__credit {
	font-size: 11px;
	margin-top: 0.5rem;
}

.social-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1.5rem;
	justify-content: center;
}

.social-menu a {
	color: var(--bg);
	transition: color 0.3s var(--ease);
}

.social-menu a:hover {
	color: var(--accent);
}

.site-footer__time {
	text-align: right;
}

.site-footer__time-label {
	display: block;
	color: var(--ink-faint);
}

.site-footer__time-value {
	color: var(--bg);
	font-feature-settings: "tnum";
}

@media (max-width: 700px) {
	.site-footer__bottom {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: left;
	}
	.site-footer__time { text-align: left; }
	.social-menu { justify-content: flex-start; }
}

/* ==========================================================================
   Animation utilities
   ========================================================================== */

[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
}

.has-revealed [data-reveal],
[data-reveal].is-visible {
	opacity: 1;
	transform: none;
	transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

[data-split-text] .char,
[data-split-text] .word {
	display: inline-block;
}

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

/* ==========================================================================
   Custom Cursor
   ========================================================================== */

.cursor {
	position: fixed;
	top: 0;
	left: 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--ink);
	pointer-events: none;
	z-index: 9998;
	transform: translate(-50%, -50%);
	transition: width 0.3s var(--ease), height 0.3s var(--ease), background-color 0.3s var(--ease);
	will-change: transform;
	mix-blend-mode: difference;
}

.cursor.is-hover {
	width: 60px;
	height: 60px;
	background: var(--accent);
	mix-blend-mode: normal;
}

.cursor__text {
	font-family: var(--font-mono);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--bg);
	opacity: 0;
	transition: opacity 0.3s var(--ease);
}

.cursor.is-hover .cursor__text {
	opacity: 1;
}

@media (hover: none), (max-width: 800px) {
	.cursor { display: none; }
}

/* ==========================================================================
   Empty state
   ========================================================================== */

.empty-state {
	max-width: var(--container);
	margin: 0 auto;
	padding: 4rem 0;
	text-align: center;
	color: var(--ink-muted);
	font-family: var(--font-mono);
	font-size: 14px;
}

/* ==========================================================================
   Section Watermarks - large faded section numbers in corners
   ========================================================================== */

.stats,
.why-us,
.services,
.contact {
	position: relative;
}

.stats::before,
.why-us::before,
.services::before,
.contact::before {
	content: attr(data-watermark);
	position: absolute;
	font-family: var(--font-mono);
	font-size: clamp(6rem, 16vw, 14rem);
	font-weight: 700;
	letter-spacing: -0.06em;
	line-height: 1;
	color: var(--ink);
	opacity: 0.04;
	pointer-events: none;
	user-select: none;
	z-index: 0;
}

.stats::before    { top: 1rem; right: 2rem; }
.why-us::before   { top: 1rem; right: 2rem; }
.services::before { top: 1rem; right: 2rem; }
.contact::before  { bottom: 4rem; right: 2rem; }

@media (max-width: 700px) {
	.stats::before, .why-us::before, .services::before, .contact::before {
		font-size: 8rem;
		right: -1rem;
	}
}

/* Make sure inner content sits above watermark */
.stats__inner,
.why-us__inner,
.services__header,
.services__grid,
.contact__inner {
	position: relative;
	z-index: 1;
}

/* ==========================================================================
   Stats decorations
   ========================================================================== */

.stat-card {
	overflow: hidden;
}

.stat-card__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	gap: 1rem;
}

.stat-card__arrow {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	color: var(--accent);
	transition: transform 0.4s var(--ease);
}

.stat-card:hover .stat-card__arrow {
	transform: translate(4px, -4px) rotate(15deg);
}

.stat-card__bar {
	width: 100%;
	height: 1px;
	background: var(--line);
	overflow: hidden;
	margin-top: 0.5rem;
}

.stat-card__bar::after {
	content: "";
	display: block;
	height: 100%;
	background: var(--accent);
	width: 0;
	transition: width 1.4s var(--ease) 0.2s;
}

.stat-card.is-visible .stat-card__bar::after {
	width: 100%;
}

/* ==========================================================================
   Why Us — add list-marker decorations
   ========================================================================== */

.why-us__intro::before {
	content: "";
	display: block;
	width: 60px;
	height: 1px;
	background: var(--accent);
	margin-bottom: 1.5rem;
}

.why-us__list {
	position: relative;
}

.why-us__list::before {
	content: "✻";
	position: absolute;
	top: -2.5rem;
	right: 0;
	font-size: 1.75rem;
	color: var(--accent);
	animation: spin 30s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

/* ==========================================================================
   Section eyebrow re-styling (consistent across all sections)
   ========================================================================== */

.section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--ink-muted);
	margin-bottom: 2rem;
}

.section-eyebrow__num { color: var(--accent); }
.section-eyebrow__line {
	width: 40px;
	height: 1px;
	background: var(--line-strong);
	display: inline-block;
}

/* ==========================================================================
   Subtle dotted grid background for select sections
   ========================================================================== */

.stats__inner,
.contact__inner {
	background-image: radial-gradient(circle, rgba(10, 10, 10, 0.05) 1px, transparent 1px);
	background-size: 28px 28px;
	background-position: 0 0;
}

/* ==========================================================================
   Floating decorative shapes between sections
   ========================================================================== */

.section-decor {
	position: relative;
	height: 0;
	overflow: visible;
	z-index: 5;
}

.section-decor__shape {
	position: absolute;
	color: var(--accent);
	pointer-events: none;
}

.section-decor__shape--left {
	left: 5%;
	top: -25px;
	width: 50px;
	height: 50px;
	animation: spin 18s linear infinite;
}

.section-decor__shape--right {
	right: 5%;
	top: -20px;
	width: 12px;
	height: 12px;
	background: var(--accent);
	border-radius: 50%;
	animation: heroFloat 4s ease-in-out infinite;
}



.stats {
	padding: 0 var(--gutter) var(--section-pad);
}

.stats__inner {
	max-width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--line);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.stat-card {
	background: var(--bg);
	padding: 3rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
	position: relative;
	transition: background-color 0.4s var(--ease);
}

.stat-card:hover {
	background: var(--bg-alt);
}

.stat-card__num {
	font-family: var(--font-display);
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
	color: var(--ink);
}

.stat-card__num em {
	font-style: normal;
	color: var(--accent);
}

.stat-card__label {
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-muted);
}

@media (max-width: 700px) {
	.stats__inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Why Us Section
   ========================================================================== */

.why-us {
	padding: var(--section-pad) var(--gutter);
	border-top: 1px solid var(--line);
}

.why-us__inner {
	max-width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: clamp(2rem, 6vw, 6rem);
	align-items: start;
}

.why-us__intro {
	position: sticky;
	top: 6rem;
}

.why-us__label {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-muted);
	margin-bottom: 1.5rem;
}

.why-us__label-num {
	color: var(--accent);
}

.why-us__title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4.5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.03em;
	margin-bottom: 1.5rem;
}

.why-us__text {
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--ink-muted);
	max-width: 38ch;
}

.why-us__list {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid var(--line);
}

.why-us__item {
	border-bottom: 1px solid var(--line);
	padding: 1.75rem 0 1.75rem 4rem;
	position: relative;
	transition: padding 0.4s var(--ease), background-color 0.3s var(--ease);
	cursor: default;
}

.why-us__item:hover {
	padding-left: 4.5rem;
	padding-right: 1rem;
	background: var(--bg-alt);
}

.why-us__num {
	position: absolute;
	left: 0;
	top: 1.75rem;
	font-family: var(--font-mono);
	font-size: 13px;
	font-weight: 600;
	color: var(--ink-muted);
	letter-spacing: 0.04em;
}

.why-us__item-text {
	font-family: var(--font-display);
	font-size: clamp(1.125rem, 1.6vw, 1.4rem);
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--ink);
	display: flex;
	align-items: center;
	gap: 1rem;
	transition: color 0.3s var(--ease);
}

.why-us__item-text::before {
	content: "→";
	color: var(--accent);
	font-weight: 600;
	transition: transform 0.3s var(--ease);
	flex-shrink: 0;
}

.why-us__item:hover .why-us__item-text {
	color: var(--accent);
}

.why-us__item:hover .why-us__item-text::before {
	transform: translateX(4px);
}

@media (max-width: 800px) {
	.why-us__inner { grid-template-columns: 1fr; }
	.why-us__intro { position: static; }
	.why-us__item { padding-left: 3rem; }
	.why-us__num { font-size: 12px; }
	.why-us__item:hover { padding-left: 3.25rem; }
}

/* ==========================================================================
   Contact Section / Form
   ========================================================================== */

.contact {
	padding: var(--section-pad) var(--gutter);
	border-top: 1px solid var(--line);
	background: var(--bg-alt);
	scroll-margin-top: 4rem;
}

.contact__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.contact__header {
	margin-bottom: 4rem;
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: clamp(2rem, 5vw, 5rem);
	align-items: end;
}

.contact__label {
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-muted);
}

.contact__label-num {
	color: var(--accent);
}

.contact__title {
	font-family: var(--font-display);
	font-size: var(--fs-2xl);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.035em;
}

.contact__intro {
	font-size: 1.0625rem;
	color: var(--ink-muted);
	line-height: 1.6;
	margin-top: 0.75rem;
	max-width: 50ch;
}

.contact-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem 2.5rem;
}

.contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	position: relative;
}

.contact-form__field--full {
	grid-column: 1 / -1;
}

.contact-form__label {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-muted);
	display: flex;
	gap: 0.25rem;
}

.contact-form__label .req {
	color: var(--accent);
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
	width: 100%;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--line-strong);
	padding: 0.75rem 0;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 400;
	color: var(--ink);
	transition: border-color 0.3s var(--ease);
	border-radius: 0;
	outline: none;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
	color: var(--ink-faint);
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
	border-bottom-color: var(--accent);
}

.contact-form__select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%230A0A0A' stroke-width='1.4' stroke-linecap='round'/></svg>");
	background-repeat: no-repeat;
	background-position: right 0 center;
	padding-right: 2rem;
	cursor: pointer;
}

.contact-form__textarea {
	min-height: 140px;
	resize: vertical;
	line-height: 1.5;
	font-family: var(--font-body);
}

.contact-form__honey {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
	height: 0;
	width: 0;
}

.contact-form__error {
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--accent);
	min-height: 1.2em;
	margin-top: 0.25rem;
	display: none;
}

.contact-form__field.is-invalid .contact-form__error { display: block; }
.contact-form__field.is-invalid .contact-form__input,
.contact-form__field.is-invalid .contact-form__textarea,
.contact-form__field.is-invalid .contact-form__select {
	border-bottom-color: var(--accent);
}

.contact-form__submit-row {
	grid-column: 1 / -1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.contact-form__status {
	font-family: var(--font-mono);
	font-size: 13px;
	color: var(--ink-muted);
	min-height: 1.2em;
}

.contact-form__status--success { color: var(--ink); }
.contact-form__status--error { color: var(--accent); }

.contact-form__submit {
	min-width: 200px;
	justify-content: center;
}

.contact-form__submit:disabled {
	opacity: 0.5;
	pointer-events: none;
}

@media (max-width: 700px) {
	.contact__header { grid-template-columns: 1fr; align-items: start; }
	.contact-form { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* ==========================================================================
   Footer adjustments — small "Susisiekite" link instead of huge email
   ========================================================================== */

.site-footer__cta--small {
	padding-bottom: 4rem;
	margin-bottom: 3rem;
	border-bottom: 1px solid rgba(245, 241, 232, 0.15);
}

.site-footer__cta--small .site-footer__email {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 600;
}

.site-footer__contact-line {
	margin-top: 1.5rem;
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.site-footer__contact-item {
	font-family: var(--font-mono);
	font-size: 13px;
	color: rgba(245, 241, 232, 0.7);
	transition: color 0.3s var(--ease);
}

.site-footer__contact-item:hover {
	color: var(--accent);
}



@media print {
	.site-header, .site-footer, .page-loader, .cursor { display: none !important; }
	body { background: white; color: black; }
}
