/* ==========================================================
   BETATEK ENERGY
   Premium Corporate / Engineering Design System
   ========================================================== */

:root {
	--color-primary: #102f40;
	--color-primary-deep: #071c27;
	--color-primary-soft: #163f51;
	--color-secondary: #0d6a5b;
	--color-secondary-dark: #095447;
	--color-accent: #d99a2b;
	--color-accent-light: #efb64c;

	--color-bg: #eef2ef;
	--color-surface: #ffffff;
	--color-surface-soft: #f5f7f5;
	--color-surface-strong: #e5ebe7;

	--color-text: #142731;
	--color-muted: #617178;
	--color-border: #d5ddd8;

	--container: 1460px;
	--container-wide: 1640px;

	--section-space: clamp(82px, 8vw, 138px);

	--radius: 2px;

	--shadow-sm:
		0 12px 32px rgba(7, 28, 39, 0.08);

	--shadow-lg:
		0 38px 90px rgba(7, 28, 39, 0.16);

	--ease-premium:
		cubic-bezier(0.22, 1, 0.36, 1);

	--ease-smooth:
		cubic-bezier(0.4, 0, 0.2, 1);

	--motion-fast: 280ms;
	--motion-normal: 650ms;
	--motion-slow: 1000ms;

	--header-height: 86px;
}


/* ==========================================================
   RESET / BASE
   ========================================================== */

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-x: hidden;

	background:
		var(--color-bg);

	color:
		var(--color-text);

	font-family:
		Inter,
		ui-sans-serif,
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		sans-serif;

	font-size: 17px;
	line-height: 1.7;

	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

button {
	color: inherit;
}

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

figure {
	margin: 0;
}

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

a:hover {
	color: inherit;
}

p {
	margin-top: 0;
}

::selection {
	background: var(--color-accent);
	color: var(--color-primary-deep);
}


/* ==========================================================
   ACCESSIBILITY
   ========================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
	outline: 3px solid var(--color-accent);
	outline-offset: 4px;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;

	overflow: hidden;

	clip: rect(1px, 1px, 1px, 1px);

	white-space: nowrap;
}

.skip-link:focus {
	position: fixed;
	z-index: 99999;

	top: 14px;
	left: 14px;

	width: auto;
	height: auto;

	padding: 12px 18px;

	clip: auto;

	background: var(--color-primary-deep);
	color: #fff;
}


/* ==========================================================
   GLOBAL LAYOUT
   ========================================================== */

.site-main {
	position: relative;
}

.front-page {
	position: relative;
	overflow: clip;
}

.container {
	width:
		min(
			calc(100% - 56px),
			var(--container)
		);

	margin-inline: auto;
}

.container-wide {
	width:
		min(
			calc(100% - 56px),
			var(--container-wide)
		);

	margin-inline: auto;
}

.narrow {
	width:
		min(
			calc(100% - 40px),
			780px
		);

	margin-inline: auto;
}

.section {
	position: relative;
	z-index: 1;

	padding-block:
		var(--section-space);
}

.section--heading-only {
	padding-block:
		clamp(64px, 6vw, 92px);
}


/* ==========================================================
   GLOBAL TYPOGRAPHY
   ========================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--color-primary);

	font-weight: 800;

	letter-spacing: -0.035em;

	text-wrap: balance;
}

.eyebrow {
	margin: 0;

	color: var(--color-accent);

	font-size: 12px;
	font-weight: 900;

	line-height: 1.2;

	letter-spacing: 0.1em;

	text-transform: uppercase;
}

.motion-eyebrow {
	display: flex;
	align-items: center;

	gap: 14px;

	margin-bottom: 22px;
}

.motion-eyebrow__line {
	display: block;

	width: 38px;
	height: 2px;

	background: var(--color-accent);

	transform-origin: left center;

	transition:
		width 500ms var(--ease-premium),
		transform 500ms var(--ease-premium);
}

[data-reveal-section].is-visible
.motion-eyebrow__line {
	width: 54px;
}

.motion-title-mask {
	overflow: visible;
}

.section-heading {
	max-width: 880px;
}

.section-heading h2,
.split-copy h2,
.cta-copy h2 {
	margin: 0;

	font-size:
		clamp(42px, 4.3vw, 70px);

	line-height: 1.02;

	letter-spacing: -0.052em;
}

.section-heading p:not(.eyebrow) {
	max-width: 720px;

	margin:
		22px 0 0;

	color: var(--color-muted);

	font-size: 18px;

	line-height: 1.75;
}


/* ==========================================================
   BUTTONS
   ========================================================== */

.btn {
	position: relative;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 52px;

	padding:
		14px 24px;

	overflow: hidden;

	border:
		1px solid transparent;

	border-radius:
		var(--radius);

	font-size: 14px;
	font-weight: 850;

	line-height: 1.2;

	transition:
		transform var(--motion-fast) var(--ease-premium),
		background-color var(--motion-fast) ease,
		border-color var(--motion-fast) ease,
		color var(--motion-fast) ease;
}

.btn::before {
	content: "";

	position: absolute;

	inset: 0;

	background:
		linear-gradient(
			105deg,
			transparent 30%,
			rgba(255, 255, 255, 0.18) 50%,
			transparent 70%
		);

	transform:
		translateX(-130%);

	transition:
		transform 700ms var(--ease-premium);

	pointer-events: none;
}

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

.btn:hover::before {
	transform:
		translateX(130%);
}

.btn-primary {
	background:
		var(--color-secondary);

	color: #fff;
}

.btn-primary:hover {
	background:
		var(--color-secondary-dark);

	color: #fff;
}

.btn-secondary,
.btn-outline {
	border-color:
		rgba(16, 47, 64, 0.28);

	color:
		var(--color-primary);

	background:
		transparent;
}

.btn-secondary:hover,
.btn-outline:hover {
	border-color:
		var(--color-primary);

	background:
		var(--color-primary);

	color:
		#fff;
}

.btn-light {
	background:
		#fff;

	color:
		var(--color-primary);
}

.btn-light:hover {
	background:
		var(--color-accent);

	color:
		var(--color-primary-deep);
}

.text-link {
	position: relative;

	display: inline-flex;
	align-items: center;

	gap: 10px;

	color:
		var(--color-secondary);

	font-size: 14px;
	font-weight: 850;
}

.text-link::after {
	content: "";

	width: 22px;
	height: 1px;

	background:
		currentColor;

	transition:
		width 300ms var(--ease-premium);
}

.text-link:hover::after {
	width: 38px;
}


/* ==========================================================
   HEADER
   ========================================================== */

.site-header {
	position: sticky;
	z-index: 100;

	top: 0;

	background:
		rgba(255, 255, 255, 0.96);

	border-bottom:
		1px solid rgba(16, 47, 64, 0.08);

	backdrop-filter:
		blur(20px);

	-webkit-backdrop-filter:
		blur(20px);

	transition:
		background-color 350ms ease,
		box-shadow 350ms ease,
		border-color 350ms ease;
}

.site-header::after {
	content: "";

	position: absolute;

	right: 0;
	bottom: -1px;

	width: 0;
	height: 1px;

	background:
		var(--color-accent);

	transition:
		width 900ms var(--ease-premium);
}

.site-header.is-scrolled {
	background:
		rgba(255, 255, 255, 0.985);

	border-color:
		rgba(16, 47, 64, 0.12);

	box-shadow:
		0 16px 40px rgba(7, 28, 39, 0.08);
}

.site-header.is-scrolled::after {
	width: 100%;
}

.header-inner {
	display: grid;

	grid-template-columns:
		auto 1fr auto;

	align-items: center;

	gap:
		clamp(26px, 3vw, 54px);

	min-height:
		var(--header-height);

	transition:
		min-height 350ms var(--ease-premium);
}

.site-header.is-scrolled
.header-inner {
	min-height: 74px;
}

.brand {
	display: inline-flex;

	align-items: center;

	min-width: 0;
}

.site-logo {
	width: auto;

	max-width: 220px;
	max-height: 58px;

	object-fit: contain;

	transition:
		max-height 350ms var(--ease-premium);
}

.site-header.is-scrolled
.site-logo {
	max-height: 50px;
}

.site-logo--text {
	color:
		var(--color-primary);

	font-size: 20px;
	font-weight: 900;

	letter-spacing: -0.02em;

	text-transform: uppercase;
}

.primary-navigation {
	justify-self: end;
}

.primary-navigation ul {
	display: flex;

	align-items: center;
	justify-content: flex-end;

	gap:
		clamp(20px, 2vw, 34px);

	margin: 0;
	padding: 0;

	list-style: none;
}

.primary-navigation a {
	position: relative;

	display: block;

	padding-block: 30px;

	color:
		var(--color-primary);

	font-size: 14px;
	font-weight: 800;

	transition:
		color 250ms ease;
}

.primary-navigation a::after {
	content: "";

	position: absolute;

	right: 0;
	bottom: 22px;
	left: 0;

	height: 2px;

	background:
		var(--color-accent);

	transform:
		scaleX(0);

	transform-origin:
		right center;

	transition:
		transform 400ms var(--ease-premium);
}

.primary-navigation a:hover::after,
.primary-navigation .current-menu-item > a::after,
.primary-navigation .current-menu-ancestor > a::after {
	transform:
		scaleX(1);

	transform-origin:
		left center;
}

.header-actions {
	display: flex;

	align-items: center;

	gap: 18px;

	justify-self: end;
}

.header-phone {
	color:
		var(--color-muted);

	font-size: 13px;
	font-weight: 800;

	white-space: nowrap;
}

.header-phone:hover {
	color:
		var(--color-primary);
}

.btn-header {
	min-height: 46px;

	padding-inline: 20px;

	background:
		var(--color-primary);

	color:
		#fff;
}

.btn-header:hover {
	background:
		var(--color-secondary);

	color:
		#fff;
}

.menu-toggle {
	display: none;

	width: 48px;
	height: 48px;

	padding: 0;

	border:
		1px solid var(--color-border);

	border-radius:
		0;

	background:
		#fff;

	cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;

	width: 21px;
	height: 2px;

	margin:
		4px auto;

	background:
		var(--color-primary);

	transition:
		transform 280ms var(--ease-premium),
		opacity 280ms ease;
}

body.menu-open
.menu-toggle span:nth-child(1) {
	transform:
		translateY(6px) rotate(45deg);
}

body.menu-open
.menu-toggle span:nth-child(2) {
	opacity: 0;
}

body.menu-open
.menu-toggle span:nth-child(3) {
	transform:
		translateY(-6px) rotate(-45deg);
}


/* ==========================================================
   GLOBAL PAGE MOTION RAIL
   ========================================================== */

.page-motion-rail {
	position: fixed;
	z-index: 40;

	top: 50%;
	right: 18px;

	width: 1px;
	height: 180px;

	transform:
		translateY(-50%);

	pointer-events: none;
}

.page-motion-rail__track,
.page-motion-rail__progress {
	position: absolute;

	inset:
		0 auto 0 0;

	width: 1px;
}

.page-motion-rail__track {
	background:
		rgba(16, 47, 64, 0.13);
}

.page-motion-rail__progress {
	height: 0;

	background:
		var(--color-accent);

	box-shadow:
		0 0 16px rgba(217, 154, 43, 0.38);

	transition:
		height 90ms linear;
}


/* ==========================================================
   HERO
   ========================================================== */

.hero-section {
	position: relative;

	overflow: hidden;

	background:
		linear-gradient(
			118deg,
			#071c27 0%,
			#0a2634 43%,
			#103b4c 100%
		);

	color:
		#fff;
}

.hero-section::before {
	content: "";

	position: absolute;
	z-index: 2;

	top: 0;
	bottom: 0;
	left: 0;

	width: 5px;

	background:
		var(--color-accent);
}

.hero-section::after {
	content: "";

	position: absolute;
	z-index: 1;

	inset: 0;

	background-image:
		linear-gradient(
			rgba(255, 255, 255, 0.028) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.028) 1px,
			transparent 1px
		);

	background-size:
		82px 82px;

	mask-image:
		linear-gradient(
			90deg,
			transparent 0%,
			rgba(0, 0, 0, 0.25) 40%,
			#000 100%
		);

	pointer-events: none;
}

.hero-grid {
	position: relative;
	z-index: 5;

	display: grid;

	grid-template-columns:
		minmax(0, 0.88fr)
		minmax(500px, 1.12fr);

	align-items: center;

	gap:
		clamp(60px, 6vw, 110px);

	min-height:
		clamp(670px, calc(100vh - var(--header-height)), 870px);

	padding-block:
		clamp(74px, 7vw, 118px);
}


/* ----------------------------------------------------------
   HERO AMBIENT LINES
   ---------------------------------------------------------- */

.hero-ambient {
	position: absolute;
	z-index: 2;

	inset: 0;

	overflow: hidden;

	pointer-events: none;
}

.hero-ambient__line {
	position: absolute;

	display: block;

	height: 1px;

	background:
		linear-gradient(
			90deg,
			transparent,
			rgba(217, 154, 43, 0.6),
			transparent
		);

	transform-origin:
		left center;
}

.hero-ambient__line--1 {
	top: 18%;
	left: -8%;

	width: 48%;

	transform:
		rotate(15deg);

	animation:
		btAmbientLineOne 10s ease-in-out infinite;
}

.hero-ambient__line--2 {
	right: -12%;
	bottom: 24%;

	width: 55%;

	transform:
		rotate(-18deg);

	animation:
		btAmbientLineTwo 12s ease-in-out infinite;
}

.hero-ambient__line--3 {
	top: 54%;
	right: 24%;

	width: 22%;

	opacity: 0.35;

	transform:
		rotate(90deg);

	animation:
		btAmbientLineThree 8s ease-in-out infinite;
}

.hero-ambient__orb {
	position: absolute;

	display: block;

	width: 8px;
	height: 8px;

	background:
		var(--color-accent);

	border-radius:
		50%;

	box-shadow:
		0 0 0 9px rgba(217, 154, 43, 0.08),
		0 0 32px rgba(217, 154, 43, 0.5);
}

.hero-ambient__orb--1 {
	top: 18%;
	left: 28%;

	animation:
		btOrbPulse 3.5s ease-in-out infinite;
}

.hero-ambient__orb--2 {
	right: 9%;
	bottom: 25%;

	animation:
		btOrbPulse 3.5s ease-in-out 1.2s infinite;
}


/* ----------------------------------------------------------
   HERO COPY
   ---------------------------------------------------------- */

.hero-copy {
	position: relative;
	z-index: 10;

	max-width: 740px;
}

.hero-copy .motion-eyebrow {
	margin-bottom: 26px;
}

.hero-copy .eyebrow {
	color:
		var(--color-accent-light);
}

.hero-copy h1 {
	margin: 0;

	max-width: 780px;

	color:
		#fff;

	font-size:
		clamp(54px, 5.2vw, 94px);

	font-weight:
		820;

	line-height:
		0.96;

	letter-spacing:
		-0.06em;

	text-wrap:
		balance;
}

.hero-lead {
	max-width:
		680px;

	margin:
		30px 0 0;

	color:
		rgba(255, 255, 255, 0.72);

	font-size:
		clamp(18px, 1.2vw, 20px);

	line-height:
		1.75;
}

.hero-actions {
	display: flex;

	flex-wrap: wrap;

	gap: 14px;

	margin-top: 38px;
}

.hero-section .btn-secondary {
	border-color:
		rgba(255, 255, 255, 0.34);

	color:
		#fff;
}

.hero-section .btn-secondary:hover {
	border-color:
		rgba(255, 255, 255, 0.65);

	background:
		rgba(255, 255, 255, 0.1);

	color:
		#fff;
}

.hero-contact {
	display: flex;

	flex-wrap: wrap;

	gap:
		clamp(24px, 3vw, 48px);

	margin-top:
		48px;

	padding-top:
		25px;

	border-top:
		1px solid rgba(255, 255, 255, 0.12);
}

.hero-contact-item {
	display: grid;

	gap: 2px;

	color:
		#fff;
}

.hero-contact-label {
	color:
		rgba(255, 255, 255, 0.42);

	font-size: 10px;
	font-weight: 850;

	letter-spacing:
		0.1em;

	text-transform:
		uppercase;
}

.hero-contact-item strong {
	color:
		rgba(255, 255, 255, 0.86);

	font-size: 13px;
	font-weight: 750;
}


/* ----------------------------------------------------------
   HERO VISUAL
   ---------------------------------------------------------- */

.hero-visual {
	position: relative;
	z-index: 7;

	min-width: 0;
}

.hero-slider {
	position: relative;

	min-height:
		clamp(500px, 36vw, 640px);

	overflow: hidden;

	background:
		#123747;

	border:
		1px solid rgba(255, 255, 255, 0.13);

	box-shadow:
		42px 42px 0 rgba(217, 154, 43, 0.075),
		0 48px 100px rgba(0, 0, 0, 0.22);
}

.hero-slider::before {
	content: "";

	position: absolute;
	z-index: 7;

	inset: 0;

	border:
		1px solid rgba(255, 255, 255, 0.05);

	pointer-events: none;
}

.hero-slider__stage {
	position: absolute;

	inset: 0;
}

.hero-slide {
	position: absolute;

	z-index: 1;

	inset: 0;

	margin: 0;

	opacity: 0;

	pointer-events: none;

	transform: none;

	transition:
		opacity 900ms var(--ease-smooth);
}

.hero-slide.is-active {
	z-index: 2;

	opacity: 1;

	pointer-events: auto;
}


/* Görsel slide'larda premium yavaş zoom devam eder. */

.hero-slide--image {
	transform:
		scale(1.045);

	transition:
		opacity 1200ms var(--ease-smooth),
		transform 6500ms linear;
}

.hero-slide--image.is-active {
	transform:
		scale(1);
}


/* Video kesinlikle zoom / transform almaz. */

.hero-slide--video,
.hero-slide--video.is-active {
	transform:
		none;
}

.hero-slide__image {
	position: absolute;

	inset: 0;
}

.hero-slide__image::after {
	content: "";

	position: absolute;

	inset: 0;

	background:
		linear-gradient(
			180deg,
			rgba(7, 28, 39, 0.04) 30%,
			rgba(7, 28, 39, 0.46) 100%
		);

	pointer-events: none;
}

.hero-image {
	width: 100%;
	height: 100%;

	object-fit:
		cover;
}

.hero-slide__caption {
	position: absolute;
	z-index: 8;

	right: 28px;
	bottom: 72px;
	left: 28px;

	display: flex;

	align-items: center;

	gap: 12px;

	padding-top: 14px;

	border-top:
		1px solid rgba(255, 255, 255, 0.2);

	color:
		#fff;
}

.hero-slide__caption span {
	color:
		var(--color-accent-light);

	font-size: 11px;
	font-weight: 900;
}

.hero-slide__caption strong {
	max-width: 460px;

	font-size: 13px;
	font-weight: 750;
}


/* ----------------------------------------------------------
   HERO BLUEPRINT
   ---------------------------------------------------------- */

.hero-blueprint {
	position: absolute;
	z-index: 5;

	inset: 0;

	overflow: hidden;

	pointer-events: none;
}

.hero-blueprint::after {
	content: "";

	position: absolute;

	inset: 0;

	background:
		linear-gradient(
			90deg,
			rgba(7, 28, 39, 0.18),
			transparent 36%,
			transparent 70%,
			rgba(7, 28, 39, 0.2)
		);
}

.hero-blueprint__svg {
	width: 100%;
	height: 100%;

	overflow: visible;
}

.hero-blueprint__grid-line {
	fill: none;

	stroke:
		rgba(255, 255, 255, 0.075);

	stroke-width: 1;

	vector-effect:
		non-scaling-stroke;
}

.hero-blueprint__route {
	fill: none;

	stroke:
		rgba(217, 154, 43, 0.86);

	stroke-width: 1.5;

	stroke-dasharray:
		8 10;

	vector-effect:
		non-scaling-stroke;

	animation:
		btRouteDash 12s linear infinite;
}

.hero-blueprint__route--secondary {
	stroke:
		rgba(255, 255, 255, 0.22);

	stroke-dasharray:
		4 12;

	animation-duration:
		16s;

	animation-direction:
		reverse;
}

.hero-blueprint__node {
	fill:
		var(--color-accent);

	stroke:
		rgba(255, 255, 255, 0.65);

	stroke-width:
		1;

	transform-origin:
		center;

	animation:
		btNodePulse 3.5s ease-in-out infinite;
}

.hero-blueprint__node--2 {
	animation-delay:
		0.8s;
}

.hero-blueprint__node--3 {
	animation-delay:
		1.6s;
}

.hero-blueprint__pulse {
	fill:
		var(--color-accent-light);

	filter:
		drop-shadow(
			0 0 8px rgba(217, 154, 43, 0.9)
		);
}


/* ----------------------------------------------------------
   HERO CHROME
   ---------------------------------------------------------- */

.hero-slider__chrome {
	position: absolute;
	z-index: 12;

	right: 24px;
	bottom: 22px;
	left: 24px;

	display: flex;

	align-items: center;
	justify-content: space-between;

	pointer-events: none;
}

.hero-slider__counter {
	display: flex;

	align-items: center;

	gap: 7px;

	color:
		#fff;

	font-size: 12px;
	font-weight: 900;

	font-variant-numeric:
		tabular-nums;
}

.hero-slider__counter > span:first-child {
	color:
		var(--color-accent-light);
}

.hero-slider__counter-divider {
	color:
		rgba(255, 255, 255, 0.35);
}

.hero-slider__controls {
	display: flex;

	gap: 6px;

	pointer-events: auto;
}

.hero-slider__button {
	display: grid;

	width: 44px;
	height: 44px;

	padding: 0;

	place-items: center;

	border:
		1px solid rgba(255, 255, 255, 0.28);

	border-radius: 0;

	background:
		rgba(7, 28, 39, 0.36);

	color:
		#fff;

	cursor: pointer;

	backdrop-filter:
		blur(10px);

	transition:
		background 250ms ease,
		color 250ms ease,
		border-color 250ms ease,
		transform 250ms var(--ease-premium);
}

.hero-slider__button:hover {
	border-color:
		var(--color-accent);

	background:
		var(--color-accent);

	color:
		var(--color-primary-deep);

	transform:
		translateY(-2px);
}

.hero-slider__progress {
	position: absolute;
	z-index: 12;

	right: 0;
	bottom: 0;
	left: 0;

	height: 3px;

	background:
		rgba(255, 255, 255, 0.11);
}

.hero-slider__progress-bar {
	display: block;

	width: 0;
	height: 100%;

	background:
		var(--color-accent);

	box-shadow:
		0 0 14px rgba(217, 154, 43, 0.6);
}

.hero-slider__progress-bar.is-running {
	animation:
		btHeroProgress 6500ms linear forwards;
}


/* ----------------------------------------------------------
   HERO TECHNICAL FALLBACK
   ---------------------------------------------------------- */

.hero-slider--technical {
	background:
		linear-gradient(
			145deg,
			#143f50,
			#0b2b3a
		);
}

.technical-field {
	position: absolute;

	inset: 8%;

	overflow: hidden;

	border:
		1px solid rgba(255, 255, 255, 0.13);

	background-image:
		linear-gradient(
			rgba(255, 255, 255, 0.055) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.055) 1px,
			transparent 1px
		);

	background-size:
		58px 58px;
}

.technical-field::after {
	content: "";

	position: absolute;

	top: -10%;
	bottom: -10%;

	width: 1px;

	background:
		linear-gradient(
			to bottom,
			transparent,
			var(--color-accent),
			transparent
		);

	animation:
		btTechnicalSweep 5.5s ease-in-out infinite;
}

.technical-frame {
	position: absolute;

	border:
		1px solid rgba(255, 255, 255, 0.17);
}

.technical-frame--one {
	inset:
		20% 13% 22% 22%;

	border-color:
		rgba(217, 154, 43, 0.5);
}

.technical-frame--two {
	inset:
		36% 29% 11% 10%;
}

.technical-node {
	position: absolute;
	z-index: 2;

	width: 14px;
	height: 14px;

	background:
		var(--color-accent);

	box-shadow:
		0 0 0 9px rgba(217, 154, 43, 0.08);

	animation:
		btNodePulse 3.2s ease-in-out infinite;
}

.technical-node--one {
	top: 20%;
	left: 23%;
}

.technical-node--two {
	top: 52%;
	right: 13%;

	width: 10px;
	height: 10px;

	background:
		#fff;

	animation-delay:
		0.8s;
}

.technical-node--three {
	right: 29%;
	bottom: 12%;

	width: 9px;
	height: 9px;

	animation-delay:
		1.4s;
}

.technical-line {
	position: absolute;

	height: 1px;

	background:
		var(--color-accent);

	transform-origin:
		left center;
}

.technical-line--one {
	top: 25%;
	left: 25%;

	width: 55%;

	transform:
		rotate(24deg);
}

.technical-line--two {
	right: 21%;
	bottom: 28%;

	width: 44%;

	transform:
		rotate(-33deg);
}


/* ----------------------------------------------------------
   HERO CAPABILITY RAIL
   ---------------------------------------------------------- */

.hero-capability-rail {
	position: relative;
	z-index: 8;

	border-top:
		1px solid rgba(255, 255, 255, 0.1);

	background:
		rgba(4, 20, 29, 0.42);
}

.hero-capability-rail__inner {
	display: grid;

	grid-template-columns:
		auto 1fr;

	align-items: stretch;
}

.hero-capability-rail__label {
	display: flex;

	align-items: center;

	padding-right:
		clamp(24px, 4vw, 58px);

	border-right:
		1px solid rgba(255, 255, 255, 0.1);

	color:
		var(--color-accent-light);

	font-size: 10px;
	font-weight: 900;

	letter-spacing:
		0.12em;

	text-transform:
		uppercase;
}

.hero-capability-rail__items {
	display: grid;

	grid-template-columns:
		repeat(4, minmax(0, 1fr));
}

.hero-capability-item {
	position: relative;

	display: flex;

	align-items: center;

	gap: 12px;

	min-height: 82px;

	padding:
		16px 24px;

	border-right:
		1px solid rgba(255, 255, 255, 0.08);

	color:
		rgba(255, 255, 255, 0.75);

	transition:
		background 350ms ease,
		color 350ms ease;
}

.hero-capability-item::after {
	content: "";

	position: absolute;

	right: 0;
	bottom: 0;
	left: 0;

	height: 2px;

	background:
		var(--color-accent);

	transform:
		scaleX(0);

	transform-origin:
		left;

	transition:
		transform 450ms var(--ease-premium);
}

.hero-capability-item:hover {
	background:
		rgba(255, 255, 255, 0.035);

	color:
		#fff;
}

.hero-capability-item:hover::after {
	transform:
		scaleX(1);
}

.hero-capability-item span {
	color:
		var(--color-accent);

	font-size: 10px;
	font-weight: 900;
}

.hero-capability-item strong {
	font-size: 12px;
	font-weight: 750;

	line-height: 1.35;
}


/* ==========================================================
   SECTION SYSTEM
   ========================================================== */

.section-connector {
	position: absolute;
	z-index: 0;

	top: 0;
	left:
		max(
			28px,
			calc((100% - var(--container)) / 2)
		);

	width: 1px;
	height: 100%;

	pointer-events: none;
}

.section-connector::before {
	content: "";

	position: absolute;

	inset: 0;

	background:
		linear-gradient(
			to bottom,
			transparent,
			rgba(16, 47, 64, 0.11) 10%,
			rgba(16, 47, 64, 0.11) 90%,
			transparent
		);
}

.section-connector span {
	position: absolute;

	top: 0;
	left: 0;

	width: 1px;
	height: 0;

	background:
		var(--color-accent);

	box-shadow:
		0 0 14px rgba(217, 154, 43, 0.18);
}

.section-topline {
	display: flex;

	align-items: center;

	gap: 20px;

	margin-bottom:
		clamp(42px, 5vw, 70px);
}

.section-index {
	flex:
		0 0 auto;

	color:
		var(--color-accent);

	font-family:
		Georgia,
		"Times New Roman",
		serif;

	font-size: 16px;
	font-weight: 400;

	letter-spacing: 0;
}

.section-index--mobile {
	display: none;
}

.section-topline__track {
	position: relative;

	flex: 1;

	height: 1px;

	background:
		rgba(16, 47, 64, 0.13);

	overflow: hidden;
}

.section-topline__track::after {
	content: "";

	position: absolute;

	top: 0;
	left: 0;

	width: 0;
	height: 100%;

	background:
		var(--color-accent);

	transition:
		width 1200ms var(--ease-premium);
}

[data-reveal-section].is-visible
.section-topline__track::after {
	width: 18%;
}

.section-topline--light
.section-topline__track {
	background:
		rgba(255, 255, 255, 0.13);
}

.section-heading-row {
	display: flex;

	align-items: flex-end;
	justify-content: space-between;

	gap: 54px;

	margin-bottom:
		clamp(46px, 5vw, 72px);
}

.section-link {
	position: relative;

	flex:
		0 0 auto;

	display: inline-flex;

	align-items: center;

	gap: 9px;

	padding-bottom: 9px;

	color:
		var(--color-primary);

	font-size: 12px;
	font-weight: 900;

	letter-spacing:
		0.07em;

	text-transform:
		uppercase;
}

.section-link::after {
	content: "";

	position: absolute;

	right: 0;
	bottom: 0;
	left: 0;

	height: 2px;

	background:
		var(--color-accent);

	transform:
		scaleX(0.28);

	transform-origin:
		right;

	transition:
		transform 450ms var(--ease-premium);
}

.section-link span {
	transition:
		transform 350ms var(--ease-premium);
}

.section-link:hover::after {
	transform:
		scaleX(1);

	transform-origin:
		left;
}

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


/* ==========================================================
   ABOUT
   ========================================================== */

.about-section {
	background:
		#fff;
}

.split-grid {
	position: relative;

	display: grid;

	grid-template-columns:
		minmax(420px, 1.02fr)
		minmax(0, 0.98fr);

	align-items: center;

	gap:
		clamp(66px, 8vw, 132px);
}

.split-grid--single {
	grid-template-columns:
		minmax(0, 980px);
}

.split-grid--single
.split-copy {
	max-width:
		920px;

	padding-left:
		clamp(26px, 4vw, 54px);

	border-left:
		2px solid var(--color-accent);
}

.about-visual {
	position: relative;
}

.about-visual > .section-index {
	position: absolute;
	z-index: 6;

	top: -28px;
	left: -2px;
}

.split-media {
	position: relative;

	overflow: hidden;

	aspect-ratio:
		5 / 4;

	background:
		var(--color-surface-strong);

	box-shadow:
		var(--shadow-lg);
}

.section-image {
	width: 100%;
	height: 100%;

	object-fit:
		cover;

	transition:
		transform 1200ms var(--ease-premium);
}

.split-media:hover
.section-image {
	transform:
		scale(1.035);
}

.media-tech-overlay {
	position: absolute;
	z-index: 5;

	inset: 0;

	pointer-events: none;
}

.media-tech-overlay__corner {
	position: absolute;

	width: 66px;
	height: 66px;
}

.media-tech-overlay__corner::before,
.media-tech-overlay__corner::after {
	content: "";

	position: absolute;

	background:
		var(--color-accent);
}

.media-tech-overlay__corner::before {
	width: 100%;
	height: 1px;
}

.media-tech-overlay__corner::after {
	width: 1px;
	height: 100%;
}

.media-tech-overlay__corner--1 {
	top: 22px;
	left: 22px;
}

.media-tech-overlay__corner--2 {
	right: 22px;
	bottom: 22px;

	transform:
		rotate(180deg);
}

.media-tech-overlay__line {
	position: absolute;

	top: 0;
	bottom: 0;
	left: -10%;

	width: 1px;

	background:
		linear-gradient(
			to bottom,
			transparent,
			rgba(255, 255, 255, 0.85),
			transparent
		);

	opacity: 0;

	transition:
		left 1200ms var(--ease-premium),
		opacity 500ms ease;
}

.split-media:hover
.media-tech-overlay__line {
	left: 110%;
	opacity: 0.7;
}

.split-copy {
	max-width: 700px;
}

.split-copy .rich-text {
	max-width: 680px;

	margin-top: 30px;

	color:
		var(--color-muted);

	font-size: 18px;
}

.split-copy .rich-text p:last-child {
	margin-bottom: 0;
}

.section-actions {
	margin-top: 34px;
}


/* ==========================================================
   SERVICES
   ========================================================== */

.services-section {
	background:
		linear-gradient(
			180deg,
			#f2f5f2 0%,
			#e9eeeb 100%
		);
}

.service-stage {
	position: relative;
}

.service-grid {
	display: grid;

	grid-template-columns:
		repeat(3, minmax(0, 1fr));

	gap: 1px;

	background:
		var(--color-border);

	border:
		1px solid var(--color-border);
}

.service-stage__item {
	position: relative;

	min-width: 0;

	background:
		#fff;

	overflow: hidden;
}

.service-stage__number {
	position: absolute;
	z-index: 8;

	top: 18px;
	right: 20px;

	color:
		rgba(16, 47, 64, 0.24);

	font-family:
		Georgia,
		"Times New Roman",
		serif;

	font-size: 15px;
}

.service-stage__frame {
	position: absolute;
	z-index: 10;

	inset: 0;

	pointer-events: none;
}

.service-stage__frame span {
	position: absolute;

	display: block;

	background:
		var(--color-accent);

	transition:
		transform 550ms var(--ease-premium);
}

.service-stage__frame span:nth-child(1) {
	top: 0;
	left: 0;

	width: 100%;
	height: 2px;

	transform:
		scaleX(0);

	transform-origin:
		left;
}

.service-stage__frame span:nth-child(2) {
	top: 0;
	right: 0;

	width: 2px;
	height: 100%;

	transform:
		scaleY(0);

	transform-origin:
		top;
}

.service-stage__frame span:nth-child(3) {
	right: 0;
	bottom: 0;

	width: 100%;
	height: 2px;

	transform:
		scaleX(0);

	transform-origin:
		right;
}

.service-stage__frame span:nth-child(4) {
	bottom: 0;
	left: 0;

	width: 2px;
	height: 100%;

	transform:
		scaleY(0);

	transform-origin:
		bottom;
}

.service-stage__item:hover
.service-stage__frame span {
	transform:
		scale(1);
}

.service-card,
.project-card,
.post-card {
	position: relative;

	display: flex;

	min-width: 0;

	flex-direction: column;

	height: 100%;

	background:
		#fff;

	border: 0;

	overflow: hidden;
}

.card-media {
	position: relative;

	display: block;

	overflow: hidden;

	aspect-ratio:
		16 / 11;

	background:
		var(--color-surface-strong);
}

.card-media::after {
	content: "";

	position: absolute;

	inset: 0;

	background:
		linear-gradient(
			180deg,
			transparent 50%,
			rgba(7, 28, 39, 0.15)
		);

	pointer-events: none;
}

.card-media img {
	width: 100%;
	height: 100%;

	object-fit:
		cover;

	transition:
		transform 900ms var(--ease-premium);
}

.service-card:hover
.card-media img,
.project-card:hover
.card-media img,
.post-card:hover
.card-media img {
	transform:
		scale(1.04);
}

.card-body {
	display: flex;

	flex: 1;
	flex-direction: column;

	align-items: flex-start;

	padding:
		clamp(26px, 2.5vw, 38px);
}

.card-body h2,
.card-body h3 {
	margin:
		0 0 14px;

	color:
		var(--color-primary);

	font-size:
		clamp(21px, 1.5vw, 26px);

	line-height:
		1.16;

	letter-spacing:
		-0.035em;
}

.card-body p {
	margin:
		0 0 24px;

	color:
		var(--color-muted);

	font-size:
		16px;

	line-height:
		1.72;
}

.card-body
.text-link {
	margin-top: auto;
}


/* ==========================================================
   ADVANTAGES
   ========================================================== */

.advantage-section {
	position: relative;

	overflow: hidden;

	background:
		#071f2c;

	color:
		#fff;
}

.advantage-section::before {
	content: "";

	position: absolute;

	inset: 0;

	background-image:
		linear-gradient(
			rgba(255, 255, 255, 0.025) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.025) 1px,
			transparent 1px
		);

	background-size:
		84px 84px;

	pointer-events: none;
}

.advantage-background {
	position: absolute;
	z-index: 0;

	inset: 0;

	pointer-events: none;
}

.advantage-background svg {
	width: 100%;
	height: 100%;
}

.advantage-background__line {
	fill: none;

	stroke:
		rgba(217, 154, 43, 0.28);

	stroke-width:
		1.2;

	stroke-dasharray:
		10 14;

	vector-effect:
		non-scaling-stroke;

	animation:
		btRouteDash 18s linear infinite;
}

.advantage-background__line--secondary {
	stroke:
		rgba(255, 255, 255, 0.075);

	stroke-dasharray:
		5 16;

	animation-duration:
		25s;

	animation-direction:
		reverse;
}

.advantage-section
.container {
	position: relative;
	z-index: 3;
}

.advantage-section
.section-index {
	color:
		var(--color-accent);
}

.advantage-heading {
	max-width: 860px;

	margin-bottom:
		clamp(48px, 6vw, 80px);
}

.advantage-heading h2 {
	color:
		#fff;
}

.advantage-grid {
	display: grid;

	grid-template-columns:
		repeat(4, minmax(0, 1fr));

	gap: 0;

	border-top:
		1px solid rgba(255, 255, 255, 0.13);

	border-bottom:
		1px solid rgba(255, 255, 255, 0.13);
}

.advantage-card {
	position: relative;

	min-width: 0;
	min-height: 370px;

	padding:
		42px 34px 38px;

	background:
		transparent !important;

	border-right:
		1px solid rgba(255, 255, 255, 0.12);

	color:
		#fff;

	transition:
		background-color 450ms ease,
		transform 450ms var(--ease-premium);
}

.advantage-card:last-child {
	border-right: 0;
}

.advantage-card:hover {
	background:
		rgba(255, 255, 255, 0.035) !important;

	transform:
		translateY(-5px);
}

.advantage-card__head {
	display: flex;

	align-items: center;
	justify-content: space-between;

	margin-bottom:
		58px;
}

.advantage-number {
	color:
		var(--color-accent);

	font-family:
		Georgia,
		"Times New Roman",
		serif;

	font-size: 20px;
}

.advantage-card__signal {
	position: relative;

	width: 48px;
	height: 1px;

	background:
		rgba(255, 255, 255, 0.13);

	overflow: hidden;
}

.advantage-card__signal span {
	position: absolute;

	top: 0;
	left: -35%;

	width: 35%;
	height: 100%;

	background:
		var(--color-accent);

	animation:
		btSignal 3.5s ease-in-out infinite;
}

.advantage-icon {
	display: grid;

	width: 54px;
	height: 54px;

	margin-bottom: 24px;

	place-items: center;

	background:
		rgba(217, 154, 43, 0.12);

	border:
		1px solid rgba(217, 154, 43, 0.22);
}

.advantage-icon img {
	max-width: 34px;
	max-height: 34px;
}

.advantage-card h2,
.advantage-card h3 {
	margin:
		0;

	color:
		#fff !important;

	font-size:
		21px;

	line-height:
		1.25;

	letter-spacing:
		-0.02em;
}

.advantage-card p {
	margin:
		28px 0 0;

	color:
		rgba(255, 255, 255, 0.64) !important;

	font-size:
		15px;

	line-height:
		1.8;
}

.advantage-card__line {
	position: absolute;

	right: 0;
	bottom: 0;
	left: 0;

	height: 2px;

	background:
		rgba(255, 255, 255, 0.05);
}

.advantage-card__line span {
	display: block;

	width: 0;
	height: 100%;

	background:
		var(--color-accent);

	transition:
		width 650ms var(--ease-premium);
}

.advantage-card:hover
.advantage-card__line span {
	width: 100%;
}


/* ==========================================================
   PROJECTS / CINEMATIC SLIDER
   ========================================================== */

.projects-section {
	background:
		#e8eeea;
}

.project-stage {
	position: relative;
}

.project-stage__chrome {
	display: flex;

	align-items: center;
	justify-content: space-between;

	margin-bottom:
		20px;
}

.project-stage__counter {
	display: flex;

	gap: 7px;

	color:
		var(--color-muted);

	font-size: 12px;
	font-weight: 900;

	font-variant-numeric:
		tabular-nums;
}

.project-stage__counter
span:first-child {
	color:
		var(--color-accent);
}

.carousel-controls {
	display: flex;

	gap: 7px;
}

.carousel-button {
	display: grid;

	width: 50px;
	height: 50px;

	padding: 0;

	place-items: center;

	border:
		1px solid rgba(16, 47, 64, 0.24);

	border-radius: 0;

	background:
		transparent;

	color:
		var(--color-primary);

	cursor: pointer;

	font-size: 18px;

	transition:
		background 280ms ease,
		color 280ms ease,
		border-color 280ms ease,
		transform 280ms var(--ease-premium);
}

.carousel-button:hover {
	border-color:
		var(--color-primary);

	background:
		var(--color-primary);

	color:
		#fff;

	transform:
		translateY(-2px);
}

.carousel-button:disabled {
	opacity: 0.28;

	cursor: default;

	transform: none;
}

.project-carousel-viewport {
	position: relative;

	overflow: hidden;

	cursor: grab;
}

.project-carousel-viewport:active {
	cursor: grabbing;
}

.project-carousel-track {
	display: flex;

	align-items: stretch;

	gap: 26px;

	transition:
		transform 750ms var(--ease-premium);

	will-change:
		transform;
}

.project-stage__slide {
	position: relative;

	flex:
		0 0 min(76%, 1050px);

	min-width: 0;
}

.project-stage__slide-index {
	position: absolute;
	z-index: 9;

	top: 22px;
	left: 22px;

	display: grid;

	width: 48px;
	height: 48px;

	place-items: center;

	background:
		rgba(7, 28, 39, 0.8);

	color:
		var(--color-accent);

	font-size: 11px;
	font-weight: 900;

	backdrop-filter:
		blur(8px);
}

.project-stage
.project-card {
	display: grid;

	grid-template-columns:
		minmax(0, 1.32fr)
		minmax(300px, 0.68fr);

	min-height:
		520px;

	background:
		#fff;
}

.project-stage
.project-card:not(.project-card--has-media) {
	grid-template-columns: 1fr;
}

.project-stage
.project-card
.card-media {
	height: 100%;

	aspect-ratio:
		auto;
}

.project-stage
.project-card
.card-body {
	justify-content: center;

	padding:
		clamp(36px, 4vw, 62px);
}

.project-stage
.project-card
.card-body h3 {
	font-size:
		clamp(27px, 2.5vw, 40px);

	line-height:
		1.08;
}

.project-card-meta,
.post-meta {
	display: flex;

	flex-wrap: wrap;

	gap:
		7px 14px;

	margin-bottom:
		16px;

	color:
		var(--color-secondary);

	font-size: 10px;
	font-weight: 900;

	letter-spacing:
		0.07em;

	text-transform:
		uppercase;
}

.project-category a {
	color:
		var(--color-secondary);
}

.project-stage__progress {
	height: 2px;

	margin-top:
		28px;

	background:
		rgba(16, 47, 64, 0.12);

	overflow: hidden;
}

.project-stage__progress span {
	display: block;

	width: 0;
	height: 100%;

	background:
		var(--color-accent);

	transition:
		width 650ms var(--ease-premium);
}


/* ==========================================================
   REFERENCES MARQUEE
   ========================================================== */

.references-section {
	overflow: hidden;

	background:
		#fff;

	border-block:
		1px solid var(--color-border);
}

.references-heading {
	max-width:
		760px;

	margin-bottom:
		clamp(42px, 5vw, 70px);
}

.reference-marquee {
	position: relative;

	width: 100%;

	overflow: hidden;

	border-top:
		1px solid var(--color-border);

	border-bottom:
		1px solid var(--color-border);
}

.reference-marquee__track {
	display: flex;

	width:
		max-content;

	animation:
		btReferenceMarquee 34s linear infinite;

	will-change:
		transform;
}

.reference-marquee:hover
.reference-marquee__track {
	animation-play-state:
		paused;
}

.reference-item {
	flex:
		0 0 260px;

	display: grid;

	min-height: 190px;

	align-content: center;
	justify-items: center;

	padding:
		30px;

	border-right:
		1px solid var(--color-border);

	text-align: center;
}

.reference-logo-wrap {
	display: grid;

	min-height: 74px;

	place-items: center;
}

.reference-logo {
	width: auto;
	max-width: 160px;
	max-height: 66px;

	margin: 0;

	object-fit: contain;

	filter:
		grayscale(1);

	opacity:
		0.58;

	transition:
		filter 380ms ease,
		opacity 380ms ease,
		transform 380ms var(--ease-premium);
}

.reference-item:hover
.reference-logo {
	filter:
		grayscale(0);

	opacity:
		1;

	transform:
		scale(1.045);
}

.reference-item h3 {
	margin:
		18px 0 0;

	color:
		var(--color-primary);

	font-size:
		13px;

	letter-spacing:
		-0.01em;
}

.reference-marquee__fade {
	position: absolute;
	z-index: 4;

	top: 0;
	bottom: 0;

	width: 90px;

	pointer-events: none;
}

.reference-marquee__fade--left {
	left: 0;

	background:
		linear-gradient(
			90deg,
			#fff,
			transparent
		);
}

.reference-marquee__fade--right {
	right: 0;

	background:
		linear-gradient(
			270deg,
			#fff,
			transparent
		);
}


/* ==========================================================
   NEWS
   ========================================================== */

.news-section {
	background:
		#f6f8f6;
}

.news-grid {
	display: grid;

	grid-template-columns:
		repeat(3, minmax(0, 1fr));

	gap:
		28px;
}

.news-card {
	position: relative;

	overflow: hidden;

	background:
		#fff;

	border:
		1px solid var(--color-border);

	transition:
		transform 500ms var(--ease-premium),
		box-shadow 500ms var(--ease-premium),
		border-color 500ms ease;
}

.news-card:hover {
	border-color:
		rgba(16, 47, 64, 0.2);

	transform:
		translateY(-7px);

	box-shadow:
		0 28px 70px rgba(7, 28, 39, 0.1);
}

.news-card__index {
	position: absolute;
	z-index: 6;

	top: 18px;
	right: 18px;

	color:
		rgba(255, 255, 255, 0.8);

	font-size: 11px;
	font-weight: 900;
}

.news-card:not(:has(.card-media))
.news-card__index {
	color:
		rgba(16, 47, 64, 0.3);
}

.card-media__scan {
	position: absolute;
	z-index: 5;

	top: 0;
	bottom: 0;
	left: -20%;

	width: 1px;

	background:
		linear-gradient(
			to bottom,
			transparent,
			rgba(255, 255, 255, 0.9),
			transparent
		);

	opacity: 0;

	transition:
		left 1100ms var(--ease-premium),
		opacity 300ms ease;
}

.news-card:hover
.card-media__scan {
	left: 120%;
	opacity: 0.8;
}

.news-date {
	margin:
		0 0 12px;

	color:
		var(--color-accent);

	font-size: 11px;
	font-weight: 900;

	letter-spacing:
		0.07em;

	text-transform:
		uppercase;
}


/* ==========================================================
   CTA
   ========================================================== */

.cta-section {
	background:
		#fff;

	padding-block:
		clamp(70px, 8vw, 118px);
}

.cta-panel {
	position: relative;

	overflow: hidden;

	display: grid;

	grid-template-columns:
		minmax(0, 1fr) auto;

	align-items: center;

	gap:
		clamp(50px, 6vw, 90px);

	min-height:
		430px;

	padding:
		clamp(48px, 6vw, 88px);

	background:
		linear-gradient(
			120deg,
			#071c27,
			#103747
		);

	color:
		#fff;
}

.cta-panel::before {
	content: "";

	position: absolute;

	inset: 0;

	background-image:
		linear-gradient(
			rgba(255, 255, 255, 0.035) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.035) 1px,
			transparent 1px
		);

	background-size:
		56px 56px;

	mask-image:
		linear-gradient(
			90deg,
			transparent 35%,
			#000 100%
		);

	pointer-events: none;
}

.cta-panel--text-only {
	grid-template-columns:
		minmax(0, 960px);
}

.cta-background {
	position: absolute;
	z-index: 1;

	inset: 0;

	pointer-events: none;
}

.cta-background svg {
	width: 100%;
	height: 100%;
}

.cta-background__line {
	fill: none;

	stroke:
		rgba(217, 154, 43, 0.48);

	stroke-width:
		1.2;

	stroke-dasharray:
		8 12;

	vector-effect:
		non-scaling-stroke;

	animation:
		btRouteDash 15s linear infinite;
}

.cta-background__line--secondary {
	stroke:
		rgba(255, 255, 255, 0.1);

	stroke-dasharray:
		4 15;

	animation-duration:
		22s;

	animation-direction:
		reverse;
}

.cta-copy,
.cta-action {
	position: relative;
	z-index: 5;
}

.cta-copy {
	max-width: 880px;
}

.cta-copy h2 {
	color:
		#fff;
}

.cta-copy p {
	max-width:
		700px;

	margin:
		24px 0 0;

	color:
		rgba(255, 255, 255, 0.68);

	font-size:
		18px;
}

.cta-action {
	justify-self: end;
}

.cta-coordinate {
	position: absolute;
	z-index: 4;

	color:
		rgba(255, 255, 255, 0.17);

	font-family:
		Georgia,
		"Times New Roman",
		serif;

	font-size: 12px;
}

.cta-coordinate--one {
	top: 24px;
	right: 28px;
}

.cta-coordinate--two {
	right: 28px;
	bottom: 24px;
}


/* ==========================================================
   STANDARD WORDPRESS PAGE HERO
   ========================================================== */

.page-hero {
	position: relative;

	overflow: hidden;

	padding-block:
		clamp(70px, 8vw, 120px);

	background:
		linear-gradient(
			115deg,
			var(--color-primary-deep),
			var(--color-primary)
		);

	color:
		#fff;
}

.page-hero::after {
	content: "";

	position: absolute;

	right: -10%;
	bottom: -80px;

	width: 45%;
	height: 220px;

	border-top:
		1px solid rgba(217, 154, 43, 0.4);

	transform:
		rotate(-18deg);
}

.page-hero-inner {
	position: relative;
	z-index: 2;

	max-width:
		1000px;
}

.page-hero h1 {
	margin: 0;

	color:
		#fff;

	font-size:
		clamp(48px, 5vw, 78px);

	line-height:
		0.98;

	letter-spacing:
		-0.055em;
}

.page-hero p {
	max-width:
		720px;

	margin:
		24px 0 0;

	color:
		rgba(255, 255, 255, 0.7);

	font-size:
		19px;
}


/* ==========================================================
   GENERAL CONTENT
   ========================================================== */

.content-area {
	padding-block:
		clamp(60px, 7vw, 104px);
}

.entry-content {
	max-width:
		880px;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-content p,
.entry-content li {
	color:
		#40525b;
}

.entry-content a {
	color:
		var(--color-secondary);

	text-decoration:
		underline;

	text-decoration-thickness:
		1px;

	text-underline-offset:
		4px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	color:
		var(--color-primary);

	line-height:
		1.15;
}

.entry-content h2 {
	margin-top:
		1.7em;

	font-size:
		clamp(32px, 3vw, 46px);
}

.entry-content h3 {
	margin-top:
		1.6em;

	font-size:
		clamp(25px, 2vw, 32px);
}

.featured-media {
	margin:
		0 0 42px;

	overflow: hidden;

	aspect-ratio:
		16 / 8;

	background:
		var(--color-surface-strong);

	box-shadow:
		var(--shadow-sm);
}

.featured-media img {
	width: 100%;
	height: 100%;

	object-fit: cover;
}


/* ==========================================================
   ARCHIVES
   ========================================================== */

.archive-header {
	max-width:
		860px;

	margin-bottom:
		52px;
}

.archive-header h1 {
	margin: 0;

	color:
		var(--color-primary);

	font-size:
		clamp(46px, 5vw, 72px);

	line-height:
		1;

	letter-spacing:
		-0.05em;
}

.archive-description {
	margin-top:
		18px;

	color:
		var(--color-muted);

	font-size:
		18px;
}

.post-grid {
	display: grid;

	grid-template-columns:
		repeat(3, minmax(0, 1fr));

	gap:
		28px;
}


/* ==========================================================
   SINGLE PROJECT
   ========================================================== */

.project-layout {
	display: grid;

	grid-template-columns:
		minmax(0, 1fr)
		330px;

	gap:
		52px;

	align-items:
		start;
}

.project-meta {
	position: sticky;

	top:
		calc(var(--header-height) + 24px);

	padding:
		28px;

	background:
		#fff;

	border:
		1px solid var(--color-border);
}

.project-meta h2 {
	margin:
		0 0 20px;

	color:
		var(--color-primary);

	font-size:
		22px;
}

.project-meta p {
	margin: 0;

	padding-block:
		15px;

	border-top:
		1px solid var(--color-border);

	color:
		var(--color-text);
}

.project-meta span {
	display: block;

	margin-bottom:
		3px;

	color:
		var(--color-muted);

	font-size:
		10px;
	font-weight: 900;

	letter-spacing:
		0.08em;

	text-transform:
		uppercase;
}

.project-gallery {
	display: grid;

	grid-template-columns:
		repeat(2, minmax(0, 1fr));

	gap:
		18px;

	margin-top:
		42px;
}

.project-gallery figure {
	margin: 0;

	overflow: hidden;

	aspect-ratio:
		4 / 3;
}

.project-gallery img {
	width: 100%;
	height: 100%;

	object-fit:
		cover;
}


/* ==========================================================
   EMPTY / NOT FOUND
   ========================================================== */

.empty-state,
.not-found {
	padding:
		48px;

	background:
		#fff;

	border:
		1px solid var(--color-border);
}


/* ==========================================================
   FORMS
   ========================================================== */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea,
select {
	width: 100%;

	min-height: 50px;

	padding:
		12px 14px;

	border:
		1px solid var(--color-border);

	border-radius:
		0;

	background:
		#fff;

	color:
		var(--color-text);

	transition:
		border-color 250ms ease,
		box-shadow 250ms ease;
}

textarea {
	min-height: 150px;

	resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
	border-color:
		var(--color-secondary);

	box-shadow:
		0 0 0 3px rgba(13, 106, 91, 0.08);

	outline: 0;
}


/* ==========================================================
   FOOTER
   ========================================================== */

.site-footer {
	position: relative;

	overflow: hidden;

	background:
		#061923;

	color:
		rgba(255, 255, 255, 0.62);
}

.site-footer::before {
	content: "";

	position: absolute;

	top: 0;
	right: 0;
	left: 0;

	height: 3px;

	background:
		var(--color-accent);
}

.site-footer::after {
	content: "";

	position: absolute;

	right: -200px;
	bottom: -260px;

	width: 620px;
	height: 620px;

	border:
		1px solid rgba(255, 255, 255, 0.035);

	transform:
		rotate(35deg);

	pointer-events: none;
}

.footer-grid {
	position: relative;
	z-index: 2;

	display: grid;

	grid-template-columns:
		minmax(300px, 1.45fr)
		repeat(
			auto-fit,
			minmax(175px, 0.7fr)
		);

	gap:
		clamp(42px, 6vw, 86px);

	padding-block:
		82px 68px;
}

.footer-logo {
	margin-bottom:
		24px;

	filter:
		brightness(0) invert(1);
}

.site-footer
.site-logo--text {
	margin-bottom:
		24px;

	color:
		#fff;
}

.footer-brand > p {
	max-width:
		430px;

	margin: 0;

	color:
		rgba(255, 255, 255, 0.58);

	line-height:
		1.8;
}

.site-footer h2 {
	margin:
		5px 0 23px;

	color:
		#fff;

	font-size:
		11px;
	font-weight: 900;

	letter-spacing:
		0.1em;

	text-transform:
		uppercase;
}

.site-footer ul {
	margin: 0;
	padding: 0;

	list-style: none;
}

.site-footer li + li {
	margin-top:
		10px;
}

.site-footer a {
	color:
		rgba(255, 255, 255, 0.62);

	transition:
		color 250ms ease,
		transform 250ms var(--ease-premium);
}

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

.footer-menu li a,
.footer-services li a {
	display: inline-block;
}

.footer-menu li a:hover,
.footer-services li a:hover {
	transform:
		translateX(4px);
}

.footer-contact a,
.footer-contact p {
	display: block;

	margin:
		0 0 10px;
}

.social-links {
	display: flex;

	flex-wrap: wrap;

	gap: 8px;

	margin-top:
		18px !important;
}

.social-links li + li {
	margin-top: 0;
}

.social-links a {
	display: inline-flex;

	padding:
		7px 10px;

	border:
		1px solid rgba(255, 255, 255, 0.12);

	font-size:
		12px;
}

.social-links a:hover {
	border-color:
		rgba(255, 255, 255, 0.3);

	background:
		rgba(255, 255, 255, 0.04);
}

.footer-bottom {
	position: relative;
	z-index: 2;

	border-top:
		1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
	margin: 0;

	padding-block:
		22px;

	color:
		rgba(255, 255, 255, 0.42);

	font-size:
		12px;
}


/* ==========================================================
   PAGINATION
   ========================================================== */

.nav-links,
.page-links {
	display: flex;

	flex-wrap: wrap;

	gap:
		8px;

	margin-top:
		40px;
}

.nav-links a,
.nav-links span,
.page-links a,
.page-links span {
	display: inline-grid;

	min-width: 42px;
	min-height: 42px;

	padding:
		8px 12px;

	place-items: center;

	background:
		#fff;

	border:
		1px solid var(--color-border);
}

.nav-links .current {
	border-color:
		var(--color-primary);

	background:
		var(--color-primary);

	color:
		#fff;
}


/* ==========================================================
   JAVASCRIPT REVEAL SYSTEM
   ========================================================== */

.js [data-reveal] {
	opacity: 0;

	transition:
		opacity 850ms var(--ease-premium),
		transform 850ms var(--ease-premium);
}

.js [data-reveal="up"] {
	transform:
		translateY(42px);
}

.js [data-reveal="left"] {
	transform:
		translateX(-48px);
}

.js [data-reveal="right"] {
	transform:
		translateX(48px);
}

.js [data-reveal].is-visible {
	opacity: 1;

	transform:
		translate3d(0, 0, 0);
}

.js [data-reveal-item] {
	opacity: 0;

	transform:
		translateY(32px);

	transition:
		opacity 700ms var(--ease-premium),
		transform 700ms var(--ease-premium);

	transition-delay:
		calc(
			var(--item-index, 1) * 80ms
		);
}

.js [data-reveal-item].is-visible {
	opacity: 1;

	transform:
		translateY(0);
}

.js .motion-title-mask > * {
	opacity: 0;

	transform:
		translateY(28px);

	transition:
		opacity 650ms ease,
		transform 850ms var(--ease-premium);
}

.js
[data-reveal-section].is-visible
.motion-title-mask > * {
	opacity: 1;

	transform:
		translateY(0);
}


/* Compatibility with earlier reveal layer */

.js .bt-reveal {
	opacity: 0;

	transform:
		translateY(32px);

	transition:
		opacity 750ms var(--ease-premium),
		transform 750ms var(--ease-premium);
}

.js .bt-reveal.is-visible {
	opacity: 1;

	transform:
		translateY(0);
}


/* ==========================================================
   KEYFRAMES
   ========================================================== */

@keyframes btAmbientLineOne {
	0%,
	100% {
		transform:
			translateX(-6%) rotate(15deg);

		opacity:
			0.22;
	}

	50% {
		transform:
			translateX(24%) rotate(15deg);

		opacity:
			0.72;
	}
}

@keyframes btAmbientLineTwo {
	0%,
	100% {
		transform:
			translateX(10%) rotate(-18deg);

		opacity:
			0.18;
	}

	50% {
		transform:
			translateX(-20%) rotate(-18deg);

		opacity:
			0.58;
	}
}

@keyframes btAmbientLineThree {
	0%,
	100% {
		transform:
			translateY(-10%) rotate(90deg);

		opacity:
			0.16;
	}

	50% {
		transform:
			translateY(18%) rotate(90deg);

		opacity:
			0.4;
	}
}

@keyframes btOrbPulse {
	0%,
	100% {
		transform:
			scale(0.85);

		opacity:
			0.5;
	}

	50% {
		transform:
			scale(1.25);

		opacity:
			1;
	}
}

@keyframes btRouteDash {
	to {
		stroke-dashoffset:
			-240;
	}
}

@keyframes btNodePulse {
	0%,
	100% {
		opacity:
			0.5;
	}

	50% {
		opacity:
			1;
	}
}

@keyframes btTechnicalSweep {
	0% {
		left: -10%;
		opacity: 0;
	}

	15% {
		opacity: 0.85;
	}

	85% {
		opacity: 0.85;
	}

	100% {
		left: 110%;
		opacity: 0;
	}
}

@keyframes btHeroProgress {
	from {
		width: 0%;
	}

	to {
		width: 100%;
	}
}

@keyframes btSignal {
	0% {
		left: -35%;
	}

	50%,
	100% {
		left: 115%;
	}
}

@keyframes btReferenceMarquee {
	from {
		transform:
			translateX(0);
	}

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


/* ==========================================================
   RESPONSIVE — LARGE LAPTOP
   ========================================================== */

@media (max-width: 1320px) {

	:root {
		--container: 1220px;
	}

	.hero-grid {
		grid-template-columns:
			minmax(0, 0.92fr)
			minmax(450px, 1.08fr);

		gap: 56px;
	}

	.hero-copy h1 {
		font-size:
			clamp(54px, 5.5vw, 78px);
	}

	.primary-navigation ul {
		gap: 22px;
	}

	.header-inner {
		gap: 24px;
	}

	.header-phone {
		display: none;
	}

}


/* ==========================================================
   RESPONSIVE — NAVIGATION
   ========================================================== */

@media (max-width: 1180px) {

	.page-motion-rail {
		display: none;
	}

	.header-inner {
		grid-template-columns:
			auto auto;

		justify-content:
			space-between;
	}

	.site-header.has-primary-menu
	.menu-toggle {
		display: inline-block;

		justify-self: end;
	}

	.site-header.has-primary-menu
	.primary-navigation,
	.site-header.has-primary-menu
	.header-actions {
		display: none;
	}

	.site-header.no-primary-menu
	.header-actions {
		display: flex;
	}

	body.menu-open
	.site-header.has-primary-menu
	.header-inner {
		align-items: start;
	}

	body.menu-open
	.site-header.has-primary-menu
	.primary-navigation {
		display: block;

		grid-column:
			1 / -1;

		width: 100%;
	}

	body.menu-open
	.site-header.has-primary-menu
	.primary-navigation ul {
		display: flex;

		align-items: stretch;

		flex-direction: column;

		gap: 0;

		padding:
			12px 0 6px;

		border-top:
			1px solid var(--color-border);
	}

	body.menu-open
	.site-header.has-primary-menu
	.primary-navigation a {
		padding:
			13px 0;
	}

	body.menu-open
	.site-header.has-primary-menu
	.primary-navigation a::after {
		display: none;
	}

	body.menu-open
	.site-header.has-primary-menu
	.header-actions {
		display: flex;

		grid-column:
			1 / -1;

		align-items:
			flex-start;

		justify-self:
			stretch;

		padding-bottom:
			20px;
	}

	.hero-grid {
		grid-template-columns:
			minmax(0, 1fr)
			minmax(390px, 0.82fr);

		gap: 46px;
	}

	.hero-slider {
		min-height:
			520px;
	}

	.hero-capability-rail__items {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));
	}

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

	.advantage-card:nth-child(2n) {
		border-right: 0;
	}

	.advantage-card:nth-child(-n + 2) {
		border-bottom:
			1px solid rgba(255, 255, 255, 0.12);
	}

	.project-stage__slide {
		flex-basis:
			86%;
	}

}


/* ==========================================================
   RESPONSIVE — TABLET
   ========================================================== */

@media (max-width: 900px) {

	:root {
		--section-space:
			clamp(72px, 10vw, 104px);
	}

	.container,
	.container-wide {
		width:
			min(
				calc(100% - 40px),
				var(--container)
			);
	}

	.hero-grid,
	.split-grid,
	.project-layout {
		grid-template-columns:
			1fr;
	}

	.hero-grid {
		min-height:
			auto;

		gap:
			54px;

		padding-block:
			74px;
	}

	.hero-copy {
		max-width:
			760px;
	}

	.hero-copy h1 {
		font-size:
			clamp(50px, 9vw, 74px);
	}

	.hero-visual {
		width:
			min(100%, 760px);
	}

	.hero-slider {
		min-height:
			520px;

		box-shadow:
			22px 22px 0 rgba(217, 154, 43, 0.075);
	}

	.hero-capability-rail__inner {
		grid-template-columns:
			1fr;
	}

	.hero-capability-rail__label {
		min-height: 50px;

		padding-right: 0;

		border-right: 0;

		border-bottom:
			1px solid rgba(255, 255, 255, 0.08);
	}

	.split-grid {
		gap:
			54px;
	}

	.about-visual {
		width:
			min(100%, 760px);
	}

	.section-index--mobile {
		display: inline-block;

		margin-bottom:
			24px;
	}

	.about-visual >
	.section-index {
		display: none;
	}

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

	.project-stage
	.project-card {
		grid-template-columns:
			1fr;
	}

	.project-stage
	.project-card
	.card-media {
		min-height:
			410px;

		aspect-ratio:
			16 / 10;
	}

	.project-stage__slide {
		flex-basis:
			88%;
	}

	.cta-panel {
		grid-template-columns:
			1fr;

		gap:
			34px;
	}

	.cta-action {
		justify-self:
			start;
	}

	.project-meta {
		position: static;
	}

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

}


/* ==========================================================
   RESPONSIVE — MOBILE
   ========================================================== */

@media (max-width: 640px) {

	:root {
		--header-height: 72px;

		--section-space:
			76px;
	}

	body {
		font-size:
			16px;
	}

	.container,
	.container-wide,
	.narrow {
		width:
			min(
				calc(100% - 28px),
				var(--container)
			);
	}

	.header-inner {
		min-height:
			72px;
	}

	.site-header.is-scrolled
	.header-inner {
		min-height:
			68px;
	}

	.site-logo {
		max-width:
			164px;

		max-height:
			48px;
	}

	.site-header.no-primary-menu
	.header-phone {
		display: none;
	}

	.site-header.no-primary-menu
	.header-actions .btn {
		width: auto;

		min-height: 42px;

		padding-inline:
			13px;
	}

	body.menu-open
	.header-actions {
		flex-direction:
			column;

		align-items:
			stretch;
	}

	.hero-grid {
		padding-block:
			58px 66px;

		gap:
			42px;
	}

	.hero-copy h1 {
		font-size:
			clamp(42px, 12.5vw, 58px);

		line-height:
			0.99;

		overflow-wrap:
			anywhere;
	}

	.hero-lead {
		margin-top:
			23px;

		font-size:
			17px;
	}

	.hero-actions {
		display: grid;

		grid-template-columns:
			1fr;

		gap: 10px;

		margin-top:
			30px;
	}

	.hero-actions
	.btn {
		width: 100%;
	}

	.hero-contact {
		display: grid;

		gap: 14px;

		margin-top:
			34px;
	}

	.hero-slider {
		min-height:
			390px;

		box-shadow:
			10px 10px 0 rgba(217, 154, 43, 0.075);
	}

	.hero-slide__caption {
		right: 16px;
		bottom: 68px;
		left: 16px;
	}

	.hero-slider__chrome {
		right: 14px;
		bottom: 14px;
		left: 14px;
	}

	.hero-slider__button {
		width: 40px;
		height: 40px;
	}

	.hero-blueprint__grid-line {
		opacity: 0.5;
	}

	.hero-capability-rail__items {
		grid-template-columns:
			1fr;
	}

	.hero-capability-item {
		min-height: 62px;

		padding:
			12px 0;

		border-right: 0;

		border-bottom:
			1px solid rgba(255, 255, 255, 0.08);
	}

	.section-heading h2,
	.split-copy h2,
	.cta-copy h2 {
		font-size:
			clamp(36px, 10vw, 48px);
	}

	.section-heading-row {
		display: block;

		margin-bottom:
			42px;
	}

	.section-link {
		margin-top:
			24px;
	}

	.section-connector {
		display: none;
	}

	.section-topline {
		margin-bottom:
			40px;
	}

	.split-grid--single
	.split-copy {
		padding-left:
			22px;
	}

	.split-media {
		aspect-ratio:
			4 / 3;
	}

	.service-grid,
	.news-grid,
	.post-grid,
	.advantage-grid,
	.footer-grid,
	.project-gallery {
		grid-template-columns:
			1fr;
	}

	.service-stage__number {
		top: 14px;
		right: 14px;
	}

	.advantage-card {
		min-height: auto;

		padding:
			34px 24px;

		border-right: 0;

		border-bottom:
			1px solid rgba(255, 255, 255, 0.12);
	}

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

	.advantage-card__head {
		margin-bottom:
			34px;
	}

	.project-stage__slide {
		flex-basis:
			92%;
	}

	.project-stage
	.project-card
	.card-media {
		min-height:
			280px;
	}

	.project-stage
	.project-card
	.card-body {
		padding:
			30px 24px;
	}

	.project-stage
	.project-card
	.card-body h3 {
		font-size:
			28px;
	}

	.project-stage__slide-index {
		top: 14px;
		left: 14px;

		width: 42px;
		height: 42px;
	}

	.reference-item {
		flex-basis:
			210px;

		min-height:
			155px;
	}

	.reference-marquee__fade {
		width: 42px;
	}

	.cta-panel {
		min-height: 0;

		padding:
			42px 26px;
	}

	.cta-copy p {
		font-size:
			16px;
	}

	.page-hero {
		padding-block:
			60px;
	}

	.page-hero h1 {
		font-size:
			clamp(40px, 11vw, 56px);
	}

	.page-hero p {
		font-size:
			17px;
	}

	.featured-media {
		aspect-ratio:
			4 / 3;
	}

	.empty-state,
	.not-found {
		padding:
			28px;
	}

	.footer-grid {
		padding-block:
			58px 50px;
	}

}


/* ==========================================================
   RESPONSIVE — SMALL MOBILE
   ========================================================== */

@media (max-width: 430px) {

	.hero-grid {
		padding-block:
			50px 58px;
	}

	.hero-copy h1 {
		font-size:
			clamp(39px, 12vw, 50px);
	}

	.hero-slider {
		min-height:
			335px;
	}

	.hero-slide__caption {
		display: none;
	}

	.technical-field {
		inset: 6%;

		background-size:
			42px 42px;
	}

	.motion-eyebrow {
		gap: 10px;
	}

	.motion-eyebrow__line {
		width: 25px;
	}

	[data-reveal-section].is-visible
	.motion-eyebrow__line {
		width: 36px;
	}

	.section-heading h2,
	.split-copy h2,
	.cta-copy h2 {
		font-size:
			clamp(34px, 10vw, 42px);
	}

	.carousel-button {
		width: 46px;
		height: 46px;
	}

	.project-stage__slide {
		flex-basis:
			94%;
	}

	.card-body {
		padding:
			24px;
	}

}


/* ==========================================================
   RESPONSIVE — 350
   ========================================================== */

@media (max-width: 350px) {

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

	.hero-slider {
		min-height:
			305px;
	}

	.site-logo {
		max-width:
			145px;
	}

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	html {
		scroll-behavior:
			auto;
	}

	*,
	*::before,
	*::after {
		animation-duration:
			0.01ms !important;

		animation-iteration-count:
			1 !important;

		scroll-behavior:
			auto !important;

		transition-duration:
			0.01ms !important;
	}

	.js [data-reveal],
	.js [data-reveal-item],
	.js .bt-reveal {
		opacity:
			1 !important;

		transform:
			none !important;
	}

	.js
	.motion-title-mask > * {
		transform:
			none !important;
	}

	.reference-marquee__track {
		animation:
			none !important;
	}

}
/* ==========================================================
   CONTACT PAGE
   ========================================================== */

.contact-page {
	position: relative;
	overflow: clip;
	background: var(--color-bg);
}


/* ----------------------------------------------------------
   CONTACT HERO
   ---------------------------------------------------------- */

.contact-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;

	min-height:
		clamp(440px, 48vw, 650px);

	display: flex;
	align-items: center;

	background:
		linear-gradient(
			118deg,
			#071c27 0%,
			#0a2634 48%,
			#103b4c 100%
		);

	color: #fff;
}


.contact-hero::before {
	content: "";

	position: absolute;
	z-index: 3;

	top: 0;
	bottom: 0;
	left: 0;

	width: 5px;

	background:
		var(--color-accent);
}


.contact-hero::after {
	content: "";

	position: absolute;
	z-index: -1;

	inset: 0;

	background-image:
		linear-gradient(
			rgba(255, 255, 255, 0.035) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.035) 1px,
			transparent 1px
		);

	background-size:
		82px 82px;

	mask-image:
		linear-gradient(
			90deg,
			transparent 0%,
			rgba(0, 0, 0, 0.35) 42%,
			#000 100%
		);

	pointer-events: none;
}


.contact-hero__background {
	position: absolute;
	z-index: -1;

	inset: 0;

	pointer-events: none;
}


.contact-hero__grid {
	position: absolute;

	inset: 0;

	background:
		radial-gradient(
			circle at 77% 32%,
			rgba(217, 154, 43, 0.13),
			transparent 23%
		),
		radial-gradient(
			circle at 92% 72%,
			rgba(13, 106, 91, 0.18),
			transparent 24%
		);
}


.contact-hero__drawing {
	position: absolute;

	right: -5%;
	bottom: -7%;

	width:
		min(72vw, 1240px);

	height: 92%;

	opacity: 0.74;
}


/*
 * Burası ekranda gördüğümüz dev siyah SVG sorununu çözüyor.
 */

.contact-hero__route {
	fill: none;

	stroke:
		rgba(217, 154, 43, 0.75);

	stroke-width: 1.5;

	stroke-dasharray:
		9 11;

	vector-effect:
		non-scaling-stroke;
}


.contact-hero__route--secondary {
	stroke:
		rgba(255, 255, 255, 0.18);

	stroke-dasharray:
		4 13;
}


.contact-hero__node {
	fill:
		var(--color-accent);

	stroke:
		rgba(255, 255, 255, 0.7);

	stroke-width: 1;

	vector-effect:
		non-scaling-stroke;
}


.contact-hero .container {
	position: relative;
	z-index: 5;
}


.contact-hero__content {
	max-width: 900px;

	padding-block:
		clamp(84px, 9vw, 142px);
}


.contact-hero .eyebrow {
	color:
		var(--color-accent-light);
}


.contact-hero h1 {
	margin: 0;

	max-width: 900px;

	color: #fff;

	font-size:
		clamp(58px, 7vw, 108px);

	font-weight: 820;

	line-height: 0.94;

	letter-spacing:
		-0.065em;
}


.contact-hero__lead {
	max-width: 760px;

	margin:
		30px 0 0;

	color:
		rgba(255, 255, 255, 0.72);

	font-size:
		clamp(18px, 1.35vw, 21px);

	line-height: 1.75;
}


/* ----------------------------------------------------------
   CONTACT MAIN AREA
   ---------------------------------------------------------- */

.contact-section {
	background:
		linear-gradient(
			180deg,
			#f4f7f4 0%,
			var(--color-bg) 100%
		);
}


.contact-layout {
	display: grid;

	grid-template-columns:
		minmax(0, 0.92fr)
		minmax(520px, 1.08fr);

	align-items: start;

	gap:
		clamp(54px, 6vw, 100px);
}


.contact-details {
	min-width: 0;
}


.contact-details__heading {
	max-width: 650px;

	margin-bottom: 42px;
}


.contact-details__heading h2,
.contact-form-panel__top h2 {
	margin: 0;

	color:
		var(--color-primary);

	font-size:
		clamp(38px, 3.5vw, 58px);

	line-height: 1.03;

	letter-spacing:
		-0.05em;
}


.contact-details__heading > p {
	max-width: 610px;

	margin:
		24px 0 0;

	color:
		var(--color-muted);

	font-size: 17px;

	line-height: 1.8;
}


/* ----------------------------------------------------------
   CONTACT INFORMATION CARDS
   ---------------------------------------------------------- */

.contact-info-grid {
	display: grid;

	grid-template-columns:
		repeat(2, minmax(0, 1fr));

	gap: 1px;

	padding: 1px;

	background:
		var(--color-border);

	border:
		1px solid var(--color-border);
}


.contact-info-card {
	position: relative;

	display: flex;

	min-height: 158px;

	flex-direction: column;

	justify-content: flex-end;

	padding: 28px;

	overflow: hidden;

	background: #fff;

	transition:
		background 350ms ease,
		transform 350ms var(--ease-premium);
}


a.contact-info-card:hover {
	z-index: 2;

	background:
		var(--color-primary);

	transform:
		translateY(-3px);
}


.contact-info-card__index {
	position: absolute;

	top: 20px;
	right: 22px;

	color:
		rgba(16, 47, 64, 0.22);

	font-family:
		Georgia,
		"Times New Roman",
		serif;

	font-size: 13px;
}


.contact-info-card__label {
	margin-bottom: 8px;

	color:
		var(--color-accent);

	font-size: 10px;

	font-weight: 900;

	letter-spacing:
		0.1em;

	text-transform:
		uppercase;
}


.contact-info-card strong {
	max-width: 100%;

	color:
		var(--color-primary);

	font-size: 16px;

	font-weight: 800;

	line-height: 1.45;

	overflow-wrap:
		anywhere;
}


.contact-info-card__arrow {
	position: absolute;

	top: 20px;
	left: 22px;

	color:
		var(--color-secondary);

	font-size: 15px;

	transition:
		transform 350ms var(--ease-premium);
}


a.contact-info-card:hover
.contact-info-card__index {
	color:
		rgba(255, 255, 255, 0.28);
}


a.contact-info-card:hover
.contact-info-card__label {
	color:
		var(--color-accent-light);
}


a.contact-info-card:hover strong,
a.contact-info-card:hover
.contact-info-card__arrow {
	color: #fff;
}


a.contact-info-card:hover
.contact-info-card__arrow {
	transform:
		translate(3px, -3px);
}


.contact-info-card--address {
	grid-column:
		1 / -1;

	min-height: 150px;
}


.contact-info-card__address {
	max-width: 560px;

	color:
		var(--color-primary);

	font-size: 15px;

	line-height: 1.7;
}


.contact-info-card__address p {
	margin: 0;
}


/* ----------------------------------------------------------
   MAP
   ---------------------------------------------------------- */

.contact-map {
	margin-top: 28px;

	overflow: hidden;

	border:
		1px solid var(--color-border);

	background: #fff;

	box-shadow:
		var(--shadow-sm);
}


.contact-map__header {
	display: flex;

	align-items: center;
	justify-content: space-between;

	gap: 20px;

	min-height: 52px;

	padding:
		0 20px;

	border-bottom:
		1px solid var(--color-border);

	color:
		var(--color-primary);

	font-size: 10px;

	font-weight: 900;

	letter-spacing:
		0.1em;

	text-transform:
		uppercase;
}


.contact-map__header span:last-child {
	color:
		var(--color-accent);

	font-family:
		Georgia,
		"Times New Roman",
		serif;

	font-weight: 400;

	letter-spacing: 0;
}


.contact-map__frame {
	position: relative;

	aspect-ratio:
		16 / 9;

	background:
		var(--color-surface-strong);
}


.contact-map__frame iframe {
	position: absolute;

	inset: 0;

	width: 100%;
	height: 100%;

	border: 0;
}


.contact-map__link {
	display: flex;

	align-items: center;
	justify-content: space-between;

	gap: 20px;

	min-height: 76px;

	padding:
		20px 24px;

	color:
		var(--color-primary);

	font-size: 14px;

	font-weight: 850;

	transition:
		background 300ms ease,
		color 300ms ease;
}


.contact-map__link:hover {
	background:
		var(--color-primary);

	color: #fff;
}


/* ----------------------------------------------------------
   FORM PANEL
   ---------------------------------------------------------- */

.contact-form-panel {
	position: relative;

	min-width: 0;

	padding:
		clamp(34px, 4vw, 58px);

	background: #fff;

	border:
		1px solid var(--color-border);

	box-shadow:
		var(--shadow-lg);
}


.contact-form-panel::before {
	content: "";

	position: absolute;

	top: -1px;
	right: -1px;
	left: -1px;

	height: 3px;

	background:
		linear-gradient(
			90deg,
			var(--color-accent) 0 24%,
			var(--color-secondary) 24% 100%
		);
}


.contact-form-panel__top {
	display: grid;

	grid-template-columns:
		auto 1fr;

	align-items: start;

	gap: 24px;

	margin-bottom: 38px;

	padding-bottom: 32px;

	border-bottom:
		1px solid var(--color-border);
}


.contact-form-panel__number {
	padding-top: 7px;

	color:
		var(--color-accent);

	font-family:
		Georgia,
		"Times New Roman",
		serif;

	font-size: 16px;
}


.contact-form-panel__top
.eyebrow {
	margin-bottom: 12px;
}


.contact-form-panel__top h2 {
	font-size:
		clamp(34px, 3vw, 50px);
}


/* ----------------------------------------------------------
   FORM MESSAGES
   ---------------------------------------------------------- */

.contact-form-message {
	margin-bottom: 26px;

	padding:
		16px 18px;

	border-left:
		3px solid currentColor;

	font-size: 14px;

	font-weight: 750;

	line-height: 1.55;
}


.contact-form-message--success {
	background:
		rgba(13, 106, 91, 0.08);

	color:
		var(--color-secondary);
}


.contact-form-message--error {
	background:
		rgba(170, 55, 55, 0.08);

	color:
		#9c3434;
}


/* ----------------------------------------------------------
   FORM
   ---------------------------------------------------------- */

.contact-form {
	position: relative;
}


/*
 * Spam bot alanı.
 * Kullanıcı kesinlikle görmemeli.
 */

.contact-form__honeypot {
	position:
		absolute !important;

	left:
		-9999px !important;

	width:
		1px !important;

	height:
		1px !important;

	overflow:
		hidden !important;

	opacity:
		0 !important;

	pointer-events:
		none !important;
}


.contact-form__grid {
	display: grid;

	grid-template-columns:
		repeat(2, minmax(0, 1fr));

	gap:
		24px 22px;
}


.contact-field {
	display: grid;

	gap: 9px;

	min-width: 0;
}


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


.contact-field > span {
	color:
		var(--color-primary);

	font-size: 11px;

	font-weight: 900;

	letter-spacing:
		0.075em;

	text-transform:
		uppercase;
}


.contact-field em {
	color:
		var(--color-accent);

	font-style: normal;
}


.contact-field input,
.contact-field textarea {
	width: 100%;

	border:
		1px solid var(--color-border);

	border-radius: 0;

	outline: 0;

	background:
		var(--color-surface-soft);

	color:
		var(--color-text);

	transition:
		border-color 250ms ease,
		background 250ms ease,
		box-shadow 250ms ease;
}


.contact-field input {
	min-height: 56px;

	padding:
		0 17px;
}


.contact-field textarea {
	min-height: 190px;

	padding:
		15px 17px;

	resize: vertical;

	line-height: 1.65;
}


.contact-field input:hover,
.contact-field textarea:hover {
	border-color:
		rgba(16, 47, 64, 0.3);
}


.contact-field input:focus,
.contact-field textarea:focus {
	border-color:
		var(--color-secondary);

	background: #fff;

	box-shadow:
		0 0 0 3px rgba(13, 106, 91, 0.08);
}


/* ----------------------------------------------------------
   CONSENT
   ---------------------------------------------------------- */

.contact-consent {
	display: grid;

	grid-template-columns:
		18px 1fr;

	align-items: start;

	gap: 12px;

	margin-top: 25px;

	color:
		var(--color-muted);

	font-size: 13px;

	line-height: 1.6;

	cursor: pointer;
}


.contact-consent input {
	width: 17px;
	height: 17px;

	margin:
		3px 0 0;

	accent-color:
		var(--color-secondary);
}


/* ----------------------------------------------------------
   FORM FOOTER
   ---------------------------------------------------------- */

.contact-form__footer {
	display: flex;

	align-items: center;
	justify-content: space-between;

	gap: 26px;

	margin-top: 30px;

	padding-top: 26px;

	border-top:
		1px solid var(--color-border);
}


.contact-form__footer p {
	margin: 0;

	color:
		var(--color-muted);

	font-size: 12px;
}


.contact-submit {
	flex:
		0 0 auto;

	gap: 18px;

	min-width: 190px;

	cursor: pointer;
}


.contact-submit span:last-child {
	transition:
		transform 300ms var(--ease-premium);
}


.contact-submit:hover
span:last-child {
	transform:
		translateX(4px);
}


/* ----------------------------------------------------------
   BOTTOM STRIP
   ---------------------------------------------------------- */

.contact-bottom-strip {
	position: relative;

	overflow: hidden;

	background:
		var(--color-primary-deep);

	color: #fff;

	border-top:
		2px solid var(--color-accent);
}


.contact-bottom-strip::after {
	content: "";

	position: absolute;

	top: -140%;
	right: 11%;

	width: 320px;
	height: 320px;

	border:
		1px solid rgba(255, 255, 255, 0.06);

	transform:
		rotate(45deg);

	pointer-events: none;
}


.contact-bottom-strip__inner {
	position: relative;
	z-index: 2;

	display: grid;

	grid-template-columns:
		auto minmax(0, 1fr) auto;

	align-items: center;

	gap: 28px;

	min-height: 132px;
}


.contact-bottom-strip__inner
> span:first-child {
	color:
		var(--color-accent);

	font-family:
		Georgia,
		"Times New Roman",
		serif;

	font-size: 15px;
}


.contact-bottom-strip__inner p {
	margin: 0;

	color:
		rgba(255, 255, 255, 0.78);

	font-size:
		clamp(16px, 1.35vw, 19px);

	font-weight: 650;
}


.contact-bottom-strip__inner
> span:last-child {
	color:
		rgba(255, 255, 255, 0.26);

	font-size: 10px;

	font-weight: 900;

	letter-spacing:
		0.12em;

	white-space:
		nowrap;
}


/* ==========================================================
   CONTACT PAGE — RESPONSIVE
   ========================================================== */

@media (max-width: 1180px) {

	.contact-layout {
		grid-template-columns:
			minmax(0, 1fr);
	}


	.contact-details__heading {
		max-width: 780px;
	}


	.contact-info-grid {
		grid-template-columns:
			repeat(3, minmax(0, 1fr));
	}


	.contact-info-card--address {
		grid-column: auto;
	}


	.contact-form-panel {
		max-width: 920px;
	}

}


@media (max-width: 760px) {

	.contact-hero {
		min-height: 420px;
	}


	.contact-hero__content {
		padding-block:
			72px 78px;
	}


	.contact-hero h1 {
		font-size:
			clamp(48px, 13vw, 72px);
	}


	.contact-hero__drawing {
		right: -45%;

		width: 150vw;

		opacity: 0.42;
	}


	.contact-info-grid {
		grid-template-columns:
			1fr;
	}


	.contact-info-card--address {
		grid-column: auto;
	}


	.contact-form-panel {
		padding:
			30px 24px;
	}


	.contact-form__grid {
		grid-template-columns:
			1fr;
	}


	.contact-field--full {
		grid-column: auto;
	}


	.contact-form__footer {
		align-items: stretch;

		flex-direction: column;
	}


	.contact-submit {
		width: 100%;
	}


	.contact-bottom-strip__inner {
		grid-template-columns:
			auto 1fr;

		padding-block:
			28px;
	}


	.contact-bottom-strip__inner
	> span:last-child {
		display: none;
	}

}


@media (max-width: 520px) {

	.contact-hero::before {
		width: 3px;
	}


	.contact-hero__lead {
		margin-top: 24px;

		font-size: 16px;
	}


	.contact-details__heading h2,
	.contact-form-panel__top h2 {
		font-size: 34px;
	}


	.contact-info-card {
		min-height: 132px;

		padding:
			24px 22px;
	}


	.contact-form-panel__top {
		grid-template-columns:
			1fr;

		gap: 10px;
	}


	.contact-form-panel__number {
		padding-top: 0;
	}


	.contact-bottom-strip__inner {
		grid-template-columns:
			1fr;

		gap: 10px;
	}


	.contact-bottom-strip__inner
	> span:first-child {
		order: 2;
	}

}
/* ==========================================================
   HERO VIDEO PERFORMANCE
   Video oynarken dekoratif animasyonları dondur.
   ========================================================== */

.hero-section.is-video-slide
.hero-blueprint__route,

.hero-section.is-video-slide
.hero-blueprint__node,

.hero-section.is-video-slide
.hero-ambient__line,

.hero-section.is-video-slide
.hero-ambient__orb {
	animation-play-state:
		paused !important;
}
/* ==========================================================
   SERVICE ARCHIVE
   Hizmetler / Çözümler arşiv sayfası
   ========================================================== */


/* ----------------------------------------------------------
   PAGE
   ---------------------------------------------------------- */

.service-archive-page {
	overflow: clip;
	background:
		#eef2ef;
}


/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */

.service-archive-hero {
	position: relative;
	overflow: hidden;
}

.service-archive-hero .container {
	position: relative;
	z-index: 3;
}

.service-archive-hero h1 {
	max-width: 980px;
	margin:
		34px 0
		0;

	color:
		#fff;

	font-size:
		clamp(
			54px,
			6vw,
			92px
		);

	font-weight:
		800;

	line-height:
		0.98;

	letter-spacing:
		-0.055em;
}

.service-archive-hero__text {
	max-width: 700px;
	margin-top: 34px;

	color:
		rgba(
			255,
			255,
			255,
			0.7
		);

	font-size:
		18px;

	line-height:
		1.75;
}

.service-archive-hero__text p {
	margin:
		0;
}


/* ----------------------------------------------------------
   SERVICES SECTION
   ---------------------------------------------------------- */

.service-archive-section {
	position: relative;

	padding-top:
		clamp(
			90px,
			9vw,
			150px
		);

	padding-bottom:
		clamp(
			100px,
			10vw,
			170px
		);

	background:
		linear-gradient(
			180deg,
			#f2f5f2 0%,
			#e9eeeb 100%
		);
}

.service-archive-heading {
	max-width: 900px;

	margin-bottom:
		clamp(
			48px,
			6vw,
			82px
		);
}

.service-archive-heading h2 {
	max-width: 760px;
}


/* ----------------------------------------------------------
   GRID
   ---------------------------------------------------------- */

.service-archive-grid {
	display: grid;

	grid-template-columns:
		repeat(
			auto-fit,
			minmax(
				min(100%, 340px),
				1fr
			)
		);

	gap:
		1px;

	background:
		var(--color-border);

	border:
		1px solid
		var(--color-border);
}


/* ----------------------------------------------------------
   CARD
   ---------------------------------------------------------- */

.service-archive-card {
	position: relative;

	min-width: 0;

	margin: 0;

	background:
		#fff;

	overflow: hidden;
}

.service-archive-card__link {
	position: relative;

	display: flex;

	height: 100%;

	flex-direction: column;

	color:
		inherit;

	text-decoration:
		none;

	background:
		#fff;

	overflow: hidden;
}


/* ----------------------------------------------------------
   IMAGE
   ---------------------------------------------------------- */

.service-archive-card__media {
	position: relative;

	overflow: hidden;

	aspect-ratio:
		16 / 10;

	background:
		#dfe5e2;
}

.service-archive-card__image {
	display: block;

	width: 100%;
	height: 100%;

	object-fit:
		cover;

	transform:
		scale(1);

	transition:
		transform
		900ms
		var(--ease-premium);
}

.service-archive-card:hover
.service-archive-card__image {
	transform:
		scale(1.045);
}


/* Image overlay */

.service-archive-card__media-overlay {
	position: absolute;

	z-index: 2;

	inset: 0;

	background:
		linear-gradient(
			180deg,
			rgba(
				7,
				28,
				39,
				0.02
			)
			35%,
			rgba(
				7,
				28,
				39,
				0.38
			)
			100%
		);

	pointer-events:
		none;
}


/* ----------------------------------------------------------
   CARD NUMBER
   ---------------------------------------------------------- */

.service-archive-card__number {
	position: absolute;

	z-index: 4;

	top: 24px;
	left: 26px;

	display: inline-flex;

	align-items: center;

	min-width: 52px;

	color:
		#fff;

	font-size:
		14px;

	font-weight:
		800;

	letter-spacing:
		0.08em;
}

.service-archive-card__number::after {
	content: "";

	width: 34px;
	height: 1px;

	margin-left: 12px;

	background:
		var(--color-accent);
}


/* ----------------------------------------------------------
   TECHNICAL CORNERS
   ---------------------------------------------------------- */

.service-archive-card__corner {
	position: absolute;

	z-index: 4;

	width: 52px;
	height: 52px;

	pointer-events:
		none;
}

.service-archive-card__corner::before,
.service-archive-card__corner::after {
	content: "";

	position: absolute;

	background:
		var(--color-accent);
}

.service-archive-card__corner--top {
	top: 20px;
	right: 20px;
}

.service-archive-card__corner--top::before {
	top: 0;
	right: 0;

	width: 52px;
	height: 1px;
}

.service-archive-card__corner--top::after {
	top: 0;
	right: 0;

	width: 1px;
	height: 52px;
}

.service-archive-card__corner--bottom {
	right: 20px;
	bottom: 20px;
}

.service-archive-card__corner--bottom::before {
	right: 0;
	bottom: 0;

	width: 52px;
	height: 1px;
}

.service-archive-card__corner--bottom::after {
	right: 0;
	bottom: 0;

	width: 1px;
	height: 52px;
}


/* ----------------------------------------------------------
   PLACEHOLDER
   ---------------------------------------------------------- */

.service-archive-card__placeholder {
	display: flex;

	width: 100%;
	height: 100%;

	align-items: center;
	justify-content: center;

	background:
		linear-gradient(
			135deg,
			var(--color-primary-deep),
			var(--color-primary-soft)
		);
}

.service-archive-card__placeholder span {
	color:
		rgba(
			255,
			255,
			255,
			0.12
		);

	font-size:
		clamp(
			80px,
			9vw,
			150px
		);

	font-weight:
		800;

	line-height:
		1;
}


/* ----------------------------------------------------------
   CARD BODY
   ---------------------------------------------------------- */

.service-archive-card__body {
	position: relative;

	z-index: 3;

	display: flex;

	flex: 1;
	flex-direction: column;

	align-items: flex-start;

	min-height: 290px;

	padding:
		clamp(
			30px,
			3vw,
			46px
		);
}

.service-archive-card__meta {
	margin-bottom:
		22px;

	color:
		var(--color-accent);

	font-size:
		11px;

	font-weight:
		800;

	letter-spacing:
		0.14em;

	text-transform:
		uppercase;
}

.service-archive-card__body h2 {
	max-width: 460px;

	margin:
		0 0
		18px;

	color:
		var(--color-primary);

	font-size:
		clamp(
			25px,
			2.1vw,
			34px
		);

	font-weight:
		800;

	line-height:
		1.08;

	letter-spacing:
		-0.035em;

	transition:
		color
		350ms ease;
}

.service-archive-card:hover
.service-archive-card__body h2 {
	color:
		var(--color-secondary);
}

.service-archive-card__body p {
	max-width: 520px;

	margin:
		0 0
		32px;

	color:
		var(--color-muted);

	font-size:
		16px;

	line-height:
		1.7;
}


/* ----------------------------------------------------------
   ACTION
   ---------------------------------------------------------- */

.service-archive-card__action {
	display: inline-flex;

	align-items: center;

	gap: 14px;

	margin-top: auto;

	color:
		var(--color-primary);

	font-size:
		12px;

	font-weight:
		800;

	letter-spacing:
		0.04em;

	text-transform:
		uppercase;
}

.service-archive-card__action span {
	display: inline-flex;

	align-items: center;
	justify-content: center;

	width: 34px;
	height: 34px;

	border:
		1px solid
		var(--color-border);

	transition:
		transform 350ms
			var(--ease-premium),
		background 350ms ease,
		color 350ms ease,
		border-color 350ms ease;
}

.service-archive-card:hover
.service-archive-card__action span {
	color:
		#fff;

	background:
		var(--color-secondary);

	border-color:
		var(--color-secondary);

	transform:
		translate(
			4px,
			-4px
		);
}


/* ----------------------------------------------------------
   ANIMATED FRAME
   ---------------------------------------------------------- */

.service-archive-card__frame {
	position: absolute;

	z-index: 10;

	inset: 0;

	pointer-events:
		none;
}

.service-archive-card__frame > span {
	position: absolute;

	display: block;

	background:
		var(--color-accent);

	transition:
		transform
		600ms
		var(--ease-premium);
}


/* TOP */

.service-archive-card__frame
> span:nth-child(1) {
	top: 0;
	left: 0;

	width: 100%;
	height: 2px;

	transform:
		scaleX(0);

	transform-origin:
		left;
}


/* RIGHT */

.service-archive-card__frame
> span:nth-child(2) {
	top: 0;
	right: 0;

	width: 2px;
	height: 100%;

	transform:
		scaleY(0);

	transform-origin:
		top;
}


/* BOTTOM */

.service-archive-card__frame
> span:nth-child(3) {
	right: 0;
	bottom: 0;

	width: 100%;
	height: 2px;

	transform:
		scaleX(0);

	transform-origin:
		right;
}


/* LEFT */

.service-archive-card__frame
> span:nth-child(4) {
	bottom: 0;
	left: 0;

	width: 2px;
	height: 100%;

	transform:
		scaleY(0);

	transform-origin:
		bottom;
}


.service-archive-card:hover
.service-archive-card__frame
> span {
	transform:
		scale(1);
}


/* ==========================================================
   SINGLE SERVICE
   Şu anda yalnızca 1 hizmet olduğu için özel premium görünüm.
   Yeni hizmetler eklenince diğer kartlar normal grid olur.
   ========================================================== */

.service-archive-card:only-child
.service-archive-card__link {
	display: grid;

	grid-template-columns:
		minmax(
			0,
			1.12fr
		)
		minmax(
			360px,
			0.88fr
		);
}

.service-archive-card:only-child
.service-archive-card__media {
	height: 100%;

	min-height:
		520px;

	aspect-ratio:
		auto;
}

.service-archive-card:only-child
.service-archive-card__body {
	justify-content:
		center;

	min-height:
		520px;

	padding:
		clamp(
			48px,
			5vw,
			80px
		);
}

.service-archive-card:only-child
.service-archive-card__body h2 {
	max-width:
		520px;

	font-size:
		clamp(
			34px,
			3.4vw,
			54px
		);
}

.service-archive-card:only-child
.service-archive-card__body p {
	max-width:
		560px;

	font-size:
		18px;
}


/* ----------------------------------------------------------
   PAGINATION
   ---------------------------------------------------------- */

.service-archive-pagination {
	margin-top:
		60px;
}

.service-archive-pagination
.nav-links {
	display: flex;

	flex-wrap: wrap;

	align-items: center;

	gap: 8px;
}

.service-archive-pagination
.page-numbers {
	display: inline-flex;

	width: 44px;
	height: 44px;

	align-items: center;
	justify-content: center;

	color:
		var(--color-primary);

	background:
		transparent;

	border:
		1px solid
		var(--color-border);

	font-size:
		13px;

	font-weight:
		800;

	text-decoration:
		none;

	transition:
		background 250ms ease,
		color 250ms ease,
		border-color 250ms ease;
}

.service-archive-pagination
.page-numbers.current,

.service-archive-pagination
.page-numbers:hover {
	color:
		#fff;

	background:
		var(--color-secondary);

	border-color:
		var(--color-secondary);
}


/* ----------------------------------------------------------
   CTA
   ---------------------------------------------------------- */

.service-archive-cta {
	position: relative;

	background:
		#fff;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (
	max-width: 1100px
) {

	.service-archive-hero h1 {
		max-width:
			820px;

		font-size:
			clamp(
				52px,
				7vw,
				76px
			);
	}


	.service-archive-card:only-child
	.service-archive-card__link {
		grid-template-columns:
			1fr 1fr;
	}


	.service-archive-card:only-child
	.service-archive-card__media,

	.service-archive-card:only-child
	.service-archive-card__body {
		min-height:
			450px;
	}

}


/* ==========================================================
   MOBILE / TABLET PORTRAIT
   ========================================================== */

@media (
	max-width: 760px
) {

	.service-archive-hero h1 {
		margin-top:
			26px;

		font-size:
			clamp(
				44px,
				12vw,
				64px
			);

		line-height:
			1;
	}


	.service-archive-hero__text {
		margin-top:
			24px;

		font-size:
			16px;
	}


	.service-archive-section {
		padding-top:
			80px;

		padding-bottom:
			90px;
	}


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


	.service-archive-card:only-child
	.service-archive-card__link {
		display: flex;

		grid-template-columns:
			none;

		flex-direction:
			column;
	}


	.service-archive-card:only-child
	.service-archive-card__media {
		min-height:
			0;

		aspect-ratio:
			16 / 11;
	}


	.service-archive-card:only-child
	.service-archive-card__body {
		min-height:
			0;

		padding:
			32px 26px;
	}


	.service-archive-card:only-child
	.service-archive-card__body h2 {
		font-size:
			30px;
	}


	.service-archive-card:only-child
	.service-archive-card__body p {
		font-size:
			16px;
	}


	.service-archive-card__body {
		min-height:
			0;

		padding:
			28px 24px;
	}


	.service-archive-card__corner {
		width:
			36px;

		height:
			36px;
	}


	.service-archive-card__corner--top {
		top:
			14px;

		right:
			14px;
	}


	.service-archive-card__corner--bottom {
		right:
			14px;

		bottom:
			14px;
	}


	.service-archive-card__corner--top::before,
	.service-archive-card__corner--bottom::before {
		width:
			36px;
	}


	.service-archive-card__corner--top::after,
	.service-archive-card__corner--bottom::after {
		height:
			36px;
	}

}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (
	max-width: 520px
) {

	.service-archive-hero h1 {
		font-size:
			42px;

		letter-spacing:
			-0.045em;
	}


	.service-archive-card__body h2,

	.service-archive-card:only-child
	.service-archive-card__body h2 {
		font-size:
			27px;
	}


	.service-archive-card__number {
		top:
			18px;

		left:
			18px;
	}


	.service-archive-card__number::after {
		width:
			24px;
	}

}
/* ==========================================================
   SERVICE ARCHIVE - COMPACT CARDS
   ========================================================== */

.service-archive-card__media {
	aspect-ratio: 16 / 8.2;
}

.service-archive-card__body {
	min-height: 230px;
	padding: 30px 34px;
}

.service-archive-card__body h2 {
	font-size: clamp(24px, 1.8vw, 30px);
	margin-bottom: 14px;
}
/* ==========================================================
   SERVICE ARCHIVE - CARD WIDTH FIX
   ========================================================== */

.service-archive-grid {
	grid-template-columns:
		repeat(
			auto-fit,
			minmax(
				min(100%, 340px),
				520px
			)
		);

	justify-content: center;
}

/* Görseli de yeni kart oranına göre biraz daha kompakt tut */
.service-archive-card__media {
	aspect-ratio: 16 / 8.5;
}


/* TABLET */

@media (max-width: 900px) {

	.service-archive-grid {
		grid-template-columns:
			repeat(
				auto-fit,
				minmax(
					min(100%, 300px),
					1fr
				)
			);
	}

}


/* MOBILE */

@media (max-width: 620px) {

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

	.service-archive-card__media {
		aspect-ratio: 16 / 10;
	}

}
.service-archive-card__body p {
	font-size: 15px;
	line-height: 1.65;
	margin-bottom: 24px;
}

.service-archive-card__meta {
	margin-bottom: 16px;
}

@media (max-width: 760px) {

	.service-archive-card__media {
		aspect-ratio: 16 / 10;
	}

	.service-archive-card__body {
		min-height: 0;
		padding: 26px 24px;
	}

}
/* ==========================================================
   SERVICE ARCHIVE - FINAL GRID LAYOUT
   ========================================================== */

.service-archive-grid {
	width: 100%;
	max-width: 1120px;

	margin-left: auto;
	margin-right: auto;

	display: grid;

	grid-template-columns:
		repeat(
			auto-fit,
			minmax(
				min(100%, 340px),
				1fr
			)
		);

	gap: 24px;

	background: transparent;
	border: 0;
}


/* Kartları birbirinden bağımsız hale getir */

.service-archive-card {
	border: 1px solid var(--color-border);
	background: #fff;
}


/* Görsel yüksekliğini azalt */

.service-archive-card__media {
	aspect-ratio: 16 / 8;
}


/* İçeriği daha kompakt yap */

.service-archive-card__body {
	min-height: 215px;

	padding:
		28px
		30px;
}


.service-archive-card__meta {
	margin-bottom: 15px;
}


.service-archive-card__body h2 {
	margin-bottom: 13px;

	font-size:
		clamp(
			24px,
			1.65vw,
			29px
		);

	line-height: 1.1;
}


.service-archive-card__body p {
	margin-bottom: 22px;

	font-size: 15px;
	line-height: 1.65;
}


/* Kartlar arasındaki hover çizgisi kartın kendi sınırında çalışsın */

.service-archive-card__frame {
	inset: -1px;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

	.service-archive-grid {
		max-width: 720px;

		grid-template-columns:
			repeat(
				2,
				minmax(0, 1fr)
			);

		gap: 18px;
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 620px) {

	.service-archive-grid {
		max-width: 520px;

		grid-template-columns: 1fr;

		gap: 18px;
	}


	.service-archive-card__media {
		aspect-ratio: 16 / 9;
	}


	.service-archive-card__body {
		min-height: 0;

		padding:
			25px
			22px;
	}

}
/* ==========================================================
   HOME PROJECT CAROUSEL - COMPACT
   ========================================================== */

/* Proje kartını küçült */
.project-stage__slide {
	flex: 0 0 min(62%, 860px);
}

/* Kart yüksekliğini azalt */
.project-stage .project-card {
	grid-template-columns:
		minmax(0, 1.18fr)
		minmax(270px, 0.82fr);

	min-height: 410px;
}

/* İç alanı sıkılaştır */
.project-stage .project-card .card-body {
	padding: clamp(30px, 3vw, 44px);
}

/* Başlığı biraz küçült */
.project-stage .project-card .card-body h3 {
	font-size: clamp(25px, 2vw, 34px);
	line-height: 1.08;
}

/* Görsel yüksekliği karta uysun */
.project-stage .project-card .card-media {
	min-height: 410px;
}

/* Kartlar arasındaki boşluk */
.project-carousel-track {
	gap: 22px;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1000px) {

	.project-stage__slide {
		flex-basis: 78%;
	}

	.project-stage .project-card {
		grid-template-columns: 1fr 0.8fr;
		min-height: 380px;
	}

	.project-stage .project-card .card-media {
		min-height: 380px;
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 700px) {

	.project-stage__slide {
		flex-basis: 92%;
	}

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

	.project-stage .project-card .card-media {
		height: auto;
		min-height: 0;
		aspect-ratio: 16 / 10;
	}

	.project-stage .project-card .card-body {
		padding: 26px 24px;
	}

}
/* ==========================================================
   PROJECT ARCHIVE
   Projeler arşiv sayfası
   ========================================================== */


/* ----------------------------------------------------------
   PAGE
   ---------------------------------------------------------- */

.project-archive-page {
	overflow: clip;

	background:
		#eef2ef;
}


/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */

.project-archive-hero {
	position: relative;

	overflow: hidden;
}

.project-archive-hero .container {
	position: relative;

	z-index: 3;
}

.project-archive-hero h1 {
	max-width: 960px;

	margin:
		30px 0
		0;

	color:
		#fff;

	font-size:
		clamp(
			52px,
			5.5vw,
			86px
		);

	font-weight:
		800;

	line-height:
		0.98;

	letter-spacing:
		-0.055em;
}

.project-archive-hero__text {
	max-width: 700px;

	margin-top:
		30px;

	color:
		rgba(
			255,
			255,
			255,
			0.70
		);

	font-size:
		17px;

	line-height:
		1.75;
}

.project-archive-hero__text p {
	margin: 0;
}


/* ==========================================================
   PROJECT SECTION
   ========================================================== */

.project-archive-section {
	position: relative;

	padding-top:
		clamp(
			82px,
			8vw,
			130px
		);

	padding-bottom:
		clamp(
			95px,
			9vw,
			145px
		);

	background:
		linear-gradient(
			180deg,
			#f2f5f2 0%,
			#e9eeeb 100%
		);
}

.project-archive-heading {
	max-width:
		850px;

	margin-bottom:
		clamp(
			42px,
			5vw,
			68px
		);
}

.project-archive-heading h2 {
	max-width:
		720px;
}


/* ==========================================================
   GRID
   ========================================================== */

.project-archive-grid {
	display: grid;

	width: 100%;

	max-width:
		1180px;

	margin:
		0 auto;

	grid-template-columns:
		repeat(
			3,
			minmax(
				0,
				1fr
			)
		);

	gap:
		24px;
}


/* Tek proje varsa ortada ve gereksiz büyük olmadan göster */

.project-archive-card:only-child {
	grid-column:
		1 / -1;

	width:
		min(
			100%,
			620px
		);

	justify-self:
		center;
}


/* ==========================================================
   CARD
   ========================================================== */

.project-archive-card {
	position: relative;

	min-width: 0;

	margin: 0;

	background:
		#fff;

	border:
		1px solid
		var(--color-border);

	overflow: hidden;

	transition:
		transform
		450ms
		var(--ease-premium),
		box-shadow
		450ms ease;
}

.project-archive-card:hover {
	transform:
		translateY(-6px);

	box-shadow:
		0 24px 60px
		rgba(
			7,
			28,
			39,
			0.12
		);
}

.project-archive-card__link {
	position: relative;

	display: flex;

	height: 100%;

	flex-direction:
		column;

	color:
		inherit;

	text-decoration:
		none;

	background:
		#fff;

	overflow: hidden;
}


/* ==========================================================
   IMAGE
   ========================================================== */

.project-archive-card__media {
	position: relative;

	overflow: hidden;

	aspect-ratio:
		16 / 10;

	background:
		#dfe5e2;
}

.project-archive-card__image {
	display: block;

	width: 100%;
	height: 100%;

	object-fit:
		cover;

	transform:
		scale(1);

	transition:
		transform
		900ms
		var(--ease-premium);
}

.project-archive-card:hover
.project-archive-card__image {
	transform:
		scale(1.045);
}


/* ----------------------------------------------------------
   IMAGE OVERLAY
   ---------------------------------------------------------- */

.project-archive-card__overlay {
	position: absolute;

	z-index: 2;

	inset: 0;

	background:
		linear-gradient(
			180deg,
			rgba(
				7,
				28,
				39,
				0.01
			)
			40%,
			rgba(
				7,
				28,
				39,
				0.38
			)
			100%
		);

	pointer-events:
		none;
}


/* ==========================================================
   NUMBER
   ========================================================== */

.project-archive-card__number {
	position: absolute;

	z-index: 5;

	top:
		20px;

	left:
		20px;

	display:
		inline-flex;

	align-items:
		center;

	color:
		#fff;

	font-size:
		12px;

	font-weight:
		900;

	letter-spacing:
		0.08em;
}

.project-archive-card__number::after {
	content: "";

	display: block;

	width:
		28px;

	height:
		1px;

	margin-left:
		10px;

	background:
		var(--color-accent);
}


/* ==========================================================
   FEATURED LABEL
   ========================================================== */

.project-archive-card__featured {
	position: absolute;

	z-index: 5;

	right:
		18px;

	bottom:
		18px;

	padding:
		8px
		11px;

	color:
		#fff;

	background:
		rgba(
			7,
			28,
			39,
			0.82
		);

	font-size:
		9px;

	font-weight:
		900;

	letter-spacing:
		0.10em;

	text-transform:
		uppercase;

	backdrop-filter:
		blur(8px);
}


/* ==========================================================
   TECHNICAL CORNERS
   ========================================================== */

.project-archive-card__corners {
	position: absolute;

	z-index: 4;

	inset: 0;

	pointer-events:
		none;
}

.project-archive-card__corners
span {
	position: absolute;

	width:
		40px;

	height:
		40px;
}


/* Sağ üst */

.project-archive-card__corners
span:first-child {
	top:
		16px;

	right:
		16px;

	border-top:
		1px solid
		var(--color-accent);

	border-right:
		1px solid
		var(--color-accent);
}


/* Sol alt */

.project-archive-card__corners
span:last-child {
	left:
		16px;

	bottom:
		16px;

	border-left:
		1px solid
		var(--color-accent);

	border-bottom:
		1px solid
		var(--color-accent);
}


/* ==========================================================
   PLACEHOLDER
   ========================================================== */

.project-archive-card__placeholder {
	display: flex;

	width: 100%;
	height: 100%;

	align-items: center;
	justify-content: center;

	background:
		linear-gradient(
			135deg,
			var(--color-primary-deep),
			var(--color-primary-soft)
		);
}

.project-archive-card__placeholder
span {
	color:
		rgba(
			255,
			255,
			255,
			0.10
		);

	font-size:
		clamp(
			70px,
			7vw,
			110px
		);

	font-weight:
		900;

	line-height:
		1;
}


/* ==========================================================
   BODY
   ========================================================== */

.project-archive-card__body {
	position: relative;

	z-index: 3;

	display: flex;

	flex:
		1;

	flex-direction:
		column;

	align-items:
		flex-start;

	min-height:
		250px;

	padding:
		28px;
}


/* ==========================================================
   CATEGORY
   ========================================================== */

.project-archive-card__categories {
	display: flex;

	flex-wrap: wrap;

	gap:
		7px 10px;

	margin-bottom:
		16px;

	color:
		var(--color-accent);

	font-size:
		10px;

	font-weight:
		900;

	letter-spacing:
		0.11em;

	text-transform:
		uppercase;
}

.project-archive-card__categories
span:not(:last-child)::after {
	content:
		"/";

	margin-left:
		10px;

	color:
		rgba(
			16,
			47,
			64,
			0.28
		);
}


/* ==========================================================
   TITLE
   ========================================================== */

.project-archive-card__body
h2 {
	max-width:
		100%;

	margin:
		0 0
		14px;

	color:
		var(--color-primary);

	font-size:
		clamp(
			23px,
			1.7vw,
			29px
		);

	font-weight:
		800;

	line-height:
		1.08;

	letter-spacing:
		-0.035em;

	transition:
		color
		300ms ease;
}

.project-archive-card:hover
.project-archive-card__body
h2 {
	color:
		var(--color-secondary);
}


/* ==========================================================
   DESCRIPTION
   ========================================================== */

.project-archive-card__body
p {
	margin:
		0 0
		26px;

	color:
		var(--color-muted);

	font-size:
		14px;

	line-height:
		1.7;
}


/* ==========================================================
   FOOTER / ACTION
   ========================================================== */

.project-archive-card__footer {
	display: flex;

	width: 100%;

	align-items:
		center;

	margin-top:
		auto;

	padding-top:
		18px;

	border-top:
		1px solid
		var(--color-border);
}

.project-archive-card__action {
	display:
		inline-flex;

	align-items:
		center;

	gap:
		12px;

	color:
		var(--color-primary);

	font-size:
		11px;

	font-weight:
		900;

	letter-spacing:
		0.045em;

	text-transform:
		uppercase;
}

.project-archive-card__action
> span {
	display:
		inline-flex;

	width:
		32px;

	height:
		32px;

	align-items:
		center;

	justify-content:
		center;

	border:
		1px solid
		var(--color-border);

	transition:
		transform
		350ms
		var(--ease-premium),
		color
		350ms ease,
		background
		350ms ease,
		border-color
		350ms ease;
}

.project-archive-card:hover
.project-archive-card__action
> span {
	color:
		#fff;

	background:
		var(--color-secondary);

	border-color:
		var(--color-secondary);

	transform:
		translate(
			4px,
			-4px
		);
}


/* ==========================================================
   HOVER FRAME
   ========================================================== */

.project-archive-card__frame {
	position: absolute;

	z-index: 10;

	inset:
		-1px;

	pointer-events:
		none;
}

.project-archive-card__frame
> span {
	position: absolute;

	display: block;

	background:
		var(--color-accent);

	transition:
		transform
		600ms
		var(--ease-premium);
}


/* Üst */

.project-archive-card__frame
> span:nth-child(1) {
	top: 0;
	left: 0;

	width: 100%;
	height: 2px;

	transform:
		scaleX(0);

	transform-origin:
		left;
}


/* Sağ */

.project-archive-card__frame
> span:nth-child(2) {
	top: 0;
	right: 0;

	width: 2px;
	height: 100%;

	transform:
		scaleY(0);

	transform-origin:
		top;
}


/* Alt */

.project-archive-card__frame
> span:nth-child(3) {
	right: 0;
	bottom: 0;

	width: 100%;
	height: 2px;

	transform:
		scaleX(0);

	transform-origin:
		right;
}


/* Sol */

.project-archive-card__frame
> span:nth-child(4) {
	left: 0;
	bottom: 0;

	width: 2px;
	height: 100%;

	transform:
		scaleY(0);

	transform-origin:
		bottom;
}

.project-archive-card:hover
.project-archive-card__frame
> span {
	transform:
		scale(1);
}


/* ==========================================================
   PAGINATION
   ========================================================== */

.project-archive-pagination {
	margin-top:
		58px;
}

.project-archive-pagination
.nav-links {
	display: flex;

	flex-wrap: wrap;

	align-items: center;

	justify-content:
		center;

	gap:
		8px;
}

.project-archive-pagination
.page-numbers {
	display:
		inline-flex;

	width:
		44px;

	height:
		44px;

	align-items:
		center;

	justify-content:
		center;

	color:
		var(--color-primary);

	background:
		transparent;

	border:
		1px solid
		var(--color-border);

	font-size:
		12px;

	font-weight:
		900;

	text-decoration:
		none;

	transition:
		color 250ms ease,
		background 250ms ease,
		border-color 250ms ease;
}

.project-archive-pagination
.page-numbers.current,

.project-archive-pagination
.page-numbers:hover {
	color:
		#fff;

	background:
		var(--color-secondary);

	border-color:
		var(--color-secondary);
}


/* ==========================================================
   CTA
   ========================================================== */

.project-archive-cta {
	position: relative;

	background:
		#fff;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1050px) {

	.project-archive-grid {
		max-width:
			820px;

		grid-template-columns:
			repeat(
				2,
				minmax(
					0,
					1fr
				)
			);

		gap:
			20px;
	}


	.project-archive-card:only-child {
		grid-column:
			1 / -1;
	}


	.project-archive-hero h1 {
		max-width:
			820px;

		font-size:
			clamp(
				50px,
				7vw,
				72px
			);
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 700px) {

	.project-archive-hero h1 {
		margin-top:
			24px;

		font-size:
			clamp(
				42px,
				11vw,
				58px
			);

		line-height:
			1;
	}


	.project-archive-hero__text {
		margin-top:
			22px;

		font-size:
			16px;
	}


	.project-archive-section {
		padding-top:
			76px;

		padding-bottom:
			88px;
	}


	.project-archive-grid {
		max-width:
			520px;

		grid-template-columns:
			1fr;

		gap:
			18px;
	}


	.project-archive-card:only-child {
		grid-column:
			auto;

		width:
			100%;
	}


	.project-archive-card__media {
		aspect-ratio:
			16 / 10;
	}


	.project-archive-card__body {
		min-height:
			0;

		padding:
			24px;
	}


	.project-archive-card__body
	h2 {
		font-size:
			25px;
	}


	.project-archive-card__body
	p {
		font-size:
			14px;
	}

}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 480px) {

	.project-archive-hero h1 {
		font-size:
			40px;

		letter-spacing:
			-0.045em;
	}


	.project-archive-card__body {
		padding:
			22px;
	}


	.project-archive-card__body
	h2 {
		font-size:
			23px;
	}


	.project-archive-card__number {
		top:
			16px;

		left:
			16px;
	}


	.project-archive-card__corners
	span:first-child {
		top:
			12px;

		right:
			12px;
	}


	.project-archive-card__corners
	span:last-child {
		left:
			12px;

		bottom:
			12px;
	}

}