@font-face {
	font-family: 'WalsheimBold';
	src: url('./fonts/GT-Walsheim-Pro-Bold.ttf') format('truetype');
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'WalsheimLight';
	src: url('./fonts/GT-Walsheim-Pro-Light.ttf') format('truetype');
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'WalsheimMedium';
	src: url('./fonts/GT-Walsheim-Pro-Medium.ttf') format('truetype');
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'WalsheimRegular';
	src: url('./fonts/GT-Walsheim-Pro-Regular.ttf') format('truetype');
	font-style: normal;
	font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* ---------- Preloader ---------- */

#preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: #1e1e1e;
}

.pre-fill {
	position: absolute;
	inset: 0;
	background: #000;
	transform-origin: bottom center;
	transform: scaleY(0);
}

.pre-percent {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: 'WalsheimBold', sans-serif;
	font-size: clamp(200px, 40vw, 600px);
	line-height: 1;
	letter-spacing: -0.04em;
	white-space: nowrap;
	user-select: none;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	background-image: linear-gradient(to bottom, #303030 100%, #101010 100%);
}

/* ---------- Base ---------- */

html, body {
	background: #000;
	color: #EDEEEE;
	font-family: 'WalsheimMedium', sans-serif;
	-webkit-font-smoothing: antialiased;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ---------- Background image + Three.js canvas stack ---------- */

/* Image layer: sits below canvas (earlier in DOM, same z-index = canvas paints on top) */
#bg-image-layer {
	position: fixed;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	pointer-events: none;
}

/* Frame canvas — JS draws cover-cropped frames here */
#bg-image-layer canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

/* Slight dark tint so images don't overpower the text */
#bg-image-layer::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.82);
}

#bg-canvas {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 0;
	pointer-events: none;
}

/* ---------- Hero ---------- */

#hero {
	position: relative;
	width: 100%;
	height: 100vh;
	z-index: 1;
}

.hero-content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 24px;
	perspective: 800px;
	perspective-origin: 50% 50%;
	pointer-events: none;
}

.logo-tilt {
	transform-style: preserve-3d;
	will-change: transform;
	pointer-events: auto;
	cursor: default;
}

.logo-pulse {
	display: block;
	transform-origin: center;
	transform-style: preserve-3d;
	transition: filter 600ms ease, transform 600ms cubic-bezier(.2,.7,.2,1);
	filter: drop-shadow(0 10px 30px rgba(237, 238, 238, 0.05));
}

.logo-tilt:hover .logo-pulse {
	animation: logoPulse 2200ms ease-in-out infinite;
	filter: drop-shadow(0 24px 50px rgba(237, 238, 238, 0.14));
}

@keyframes logoPulse {
	0%, 100% { transform: translateZ(20px) scale(1); }
	50%       { transform: translateZ(28px) scale(1.035); }
}

@media (prefers-reduced-motion: reduce) {
	.logo-tilt:hover .logo-pulse { animation: none; }
}

.logo {
	width: 240px;
	height: auto;
	display: block;
	backface-visibility: hidden;
}

/* ---------- Reveal halves ---------- */

.reveal-halves {
	position: fixed;
	inset: 0;
	z-index: 10;
	pointer-events: none;
	opacity: 0;
}

.half {
	position: absolute;
	inset: 0;
	will-change: transform;
	transform: translate3d(0,0,0);
	overflow: hidden;
}

.half--left  { clip-path: inset(0 50% 0 0); }
.half--right { clip-path: inset(0 0 0 50%); }

.half__snapshot {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	user-select: none;
	-webkit-user-drag: none;
}

.half__logo-mount {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 24px;
}

.half__logo-mount .logo { width: 240px; height: auto; display: block; }

/* When the reveal is active: hide the hero logo (halves carry a clone), show the halves */
body.reveal-active .hero-content  { opacity: 0; }
body.reveal-active .reveal-halves { opacity: 1; }

/* ---------- Hero text block ---------- */

.text-block {
	position: absolute;
	left: 50%;
	bottom: 14%;
	transform: translateX(-50%);
	z-index: 2;
	opacity: 0;
	pointer-events: none;
	max-width: 480px;
	width: 90%;
	text-align: center;
	will-change: opacity;
}

.text-block__accent {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 22px;
}

.text-block__accent svg { display: block; }

.text-block__title {
	font-family: 'WalsheimBold', sans-serif;
	font-size: 40px;
	line-height: 1.05;
	letter-spacing: -0.03em;
	color: #EDEEEE;
	text-transform: none;
	margin-bottom: 22px;
}

.text-block__title .char { display: inline-block; will-change: filter, opacity; }

.text-block__sub {
	font-family: 'WalsheimMedium', sans-serif;
	font-size: 24px;
	line-height: 1.6;
	color: rgba(237, 238, 238, 0.65);
}

.text-block__sub .char { display: inline-block; will-change: filter, opacity; }

/* ---------- Fixed UI chrome ---------- */

#site-logo {
	position: fixed;
	top: 24px;
	left: 24px;
	z-index: 200;
	opacity: 0;
	pointer-events: none;
	line-height: 0;
	transition: opacity 500ms ease;
}

#site-logo.visible { opacity: 1; pointer-events: auto; }
#site-logo img { display: block; width: 20px; height: auto; }

#hamburger-btn {
	position: fixed;
	top: 24px;
	right: 24px;
	z-index: 400;
	opacity: 0;
	pointer-events: none;
	background: none;
	border: none;
	padding: 4px;
	cursor: pointer;
	line-height: 0;
	transition: opacity 500ms ease;
}

#hamburger-btn.visible { opacity: 1; pointer-events: auto; }

.hb-icon { display: block; overflow: visible; }

.hb-rect {
	transform-box: fill-box;
	transform-origin: center;
	transition:
		transform 420ms cubic-bezier(0.77, 0, 0.18, 1),
		opacity   280ms ease;
}

/* Hamburger → X: center bar rotates 45°, left bar slides to center + scales + rotates, right bar disappears */
#hamburger-btn.is-open .hb-rect--center { transform: rotate(45deg); }
#hamburger-btn.is-open .hb-rect--left   { transform: translate(7px, -4.5px) rotate(-45deg) scaleY(2.5); }
#hamburger-btn.is-open .hb-rect--right  { opacity: 0; transform: translate(-7px, -4.5px) scale(0); }

/* ── Nav menu overlay ── */
#nav-menu {
	position: fixed;
	inset: 0;
	z-index: 350;
	background: #000;
	clip-path: circle(0% at calc(100% - 35px) 35px);
	transition: clip-path 650ms cubic-bezier(0.77, 0, 0.18, 1);
	pointer-events: none;
	overflow: hidden;
}

/* Grain texture overlay */
#nav-menu::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	opacity: 0.04;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 300px 300px;
}

#nav-menu.is-open {
	clip-path: circle(150vmax at calc(100% - 35px) 35px);
	pointer-events: auto;
}

.nav-menu__inner {
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 80px 44px 40px;
	max-width: 420px;
}

/* ── Stamp ── */
.nav-menu__stamp {
	font-family: 'WalsheimLight', sans-serif;
	font-size: 9px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: rgba(237,238,238,0.18);
	margin-bottom: 28px;
	opacity: 0;
	transition: opacity 200ms ease;
}
#nav-menu.is-open .nav-menu__stamp {
	opacity: 1;
	transition: opacity 600ms ease 200ms;
}

/* ── Nav links ── */
.nav-menu__nav {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-top: 1px solid rgba(237,238,238,0.07);
}

.nav-menu__link {
	position: relative;
	display: flex;
	align-items: baseline;
	gap: 14px;
	text-decoration: none;
	color: rgba(237,238,238,0.5);
	font-family: 'WalsheimBold', sans-serif;
	font-size: clamp(46px, 9vw, 68px);
	letter-spacing: -0.04em;
	line-height: 1;
	padding: 13px 0;
	border-bottom: 1px solid rgba(237,238,238,0.07);
	overflow: hidden;
	opacity: 0;
	transform: translateX(-18px);
	transition: opacity 200ms ease, transform 200ms ease, color 300ms ease;
}

/* Sweep underline on hover */
.nav-menu__link::after {
	content: '';
	position: absolute;
	bottom: -1px; left: 0;
	width: 100%; height: 1px;
	background: rgba(237,238,238,0.38);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 380ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu__link:hover { color: #EDEEEE; }
.nav-menu__link:hover::after { transform: scaleX(1); }
.nav-menu__link:hover .nav-menu__link-num { color: rgba(237,238,238,0.42); }

/* Slide in from left */
#nav-menu.is-open .nav-menu__link:nth-child(1) {
	opacity: 1; transform: none;
	transition: opacity 500ms ease 290ms, transform 500ms cubic-bezier(0.23,1,0.32,1) 290ms, color 300ms ease;
}
#nav-menu.is-open .nav-menu__link:nth-child(2) {
	opacity: 1; transform: none;
	transition: opacity 500ms ease 370ms, transform 500ms cubic-bezier(0.23,1,0.32,1) 370ms, color 300ms ease;
}
#nav-menu.is-open .nav-menu__link:nth-child(3) {
	opacity: 1; transform: none;
	transition: opacity 500ms ease 450ms, transform 500ms cubic-bezier(0.23,1,0.32,1) 450ms, color 300ms ease;
}

.nav-menu__link-num {
	font-family: 'WalsheimLight', sans-serif;
	font-size: 9px;
	letter-spacing: 0.28em;
	color: rgba(237,238,238,0.2);
	align-self: flex-start;
	margin-top: 15px;
	flex-shrink: 0;
	width: 18px;
	transition: color 300ms ease;
}

/* ── Bottom strip: author + CTA ── */
.nav-menu__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 22px;
	border-top: 1px solid rgba(237,238,238,0.07);
}

.nav-menu__author {
	display: flex;
	align-items: center;
	gap: 11px;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 200ms ease, transform 200ms ease;
}
#nav-menu.is-open .nav-menu__author {
	opacity: 1; transform: none;
	transition: opacity 450ms ease 550ms, transform 450ms cubic-bezier(0.23,1,0.32,1) 550ms;
}

.nav-menu__avatar {
	position: relative;
	width: 52px; height: 52px;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid rgba(237,238,238,0.18);
	background: rgba(237,238,238,0.06);
	flex-shrink: 0;
	display: flex; align-items: center; justify-content: center;
}
.nav-menu__avatar img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
}
.nav-menu__initials {
	font-family: 'WalsheimBold', sans-serif;
	font-size: 14px;
	letter-spacing: -0.01em;
	color: rgba(237,238,238,0.4);
}
.nav-menu__name {
	display: block;
	font-family: 'WalsheimBold', sans-serif;
	font-size: 14px;
	letter-spacing: -0.01em;
	color: #EDEEEE;
	margin-bottom: 5px;
}
.nav-menu__role {
	display: block;
	font-family: 'WalsheimLight', sans-serif;
	font-size: 11px;
	letter-spacing: 0.18em;
	color: rgba(237,238,238,0.55);
}
.nav-menu__instagram {
	text-decoration: none;
	transition: color 250ms ease;
}
.nav-menu__instagram:hover { color: #EDEEEE; }

/* CTA — sharp architectural tab */
.nav-menu__cta {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	flex-shrink: 0;
	padding: 10px 16px;
	border: 1px solid rgba(237,238,238,0.14);
	border-radius: 2px;
	color: rgba(237,238,238,0.6);
	font-family: 'WalsheimLight', sans-serif;
	font-size: 10px;
	letter-spacing: 0.18em;
	text-decoration: none;
	white-space: nowrap;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 200ms ease, transform 200ms ease, color 280ms ease, border-color 280ms ease, background 280ms ease;
}
#nav-menu.is-open .nav-menu__cta {
	opacity: 1; transform: none;
	transition: opacity 450ms ease 620ms, transform 450ms cubic-bezier(0.23,1,0.32,1) 620ms, color 280ms ease, border-color 280ms ease, background 280ms ease;
}
.nav-menu__cta:hover {
	color: #EDEEEE;
	border-color: rgba(237,238,238,0.3);
	background: rgba(237,238,238,0.04);
}

@media (max-width: 768px) {
	.nav-menu__inner { padding: 80px 28px 36px; }
	.nav-menu__bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}

#music-btn {
	position: fixed;
	bottom: 24px;
	left: 24px;
	z-index: 200;
	opacity: 0;
	pointer-events: none;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	line-height: 0;
	transition: opacity 500ms ease;
}

#music-btn.visible { opacity: 1; pointer-events: auto; }
#music-btn:hover .eq-bars { opacity: 0.6; }

.eq-bars {
	display: flex;
	align-items: flex-end;
	gap: 3px;
	height: 20px;
	transition: opacity 250ms;
}

.eq-bar {
	width: 2px;
	height: 20px;
	background: #EDEEEE;
	border-radius: 1px;
	transform-origin: bottom center;
}

.eq-bar:nth-child(1) { animation: eq1 3.4s ease-in-out infinite  0.0s; }
.eq-bar:nth-child(2) { animation: eq2 2.8s ease-in-out infinite -1.3s; }
.eq-bar:nth-child(3) { animation: eq3 4.0s ease-in-out infinite -2.6s; }
.eq-bar:nth-child(4) { animation: eq4 3.1s ease-in-out infinite -0.8s; }

@keyframes eq1 { 0%,100% { transform:scaleY(.12); } 50% { transform:scaleY(.52); } }
@keyframes eq2 { 0%,100% { transform:scaleY(.12); } 50% { transform:scaleY(.74); } }
@keyframes eq3 { 0%,100% { transform:scaleY(.12); } 50% { transform:scaleY(.46); } }
@keyframes eq4 { 0%,100% { transform:scaleY(.12); } 50% { transform:scaleY(.62); } }

/* ═══════════════════════════════════════════════════════════════════════════ */
/* SECTIONS                                                                    */
/* ═══════════════════════════════════════════════════════════════════════════ */

.section {
	position: relative;
	z-index: 1;
	min-height: 100vh;
	padding: 140px 80px 120px;
	background: transparent;
	max-width: 1360px;
}

.section--alt { background: transparent; }

.section-label {
	display: block;
	font-family: 'WalsheimLight', sans-serif;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: none;
	color: rgba(237,238,238,0.4);
	margin-bottom: 48px;
}

.section-heading {
	font-family: 'WalsheimBold', sans-serif;
	font-size: clamp(48px, 7vw, 110px);
	line-height: 0.95;
	letter-spacing: -0.035em;
	color: #EDEEEE;
	text-transform: none;
	margin-bottom: 40px;
}

.section-sub {
	font-family: 'WalsheimMedium', sans-serif;
	font-size: 24px;
	line-height: 1.65;
	color: rgba(237,238,238,0.82);
	max-width: 560px;
	margin-bottom: 64px;
}

/* ---------- 01 Services ---------- */

.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	margin-top: 40px;
}

.service-col {
	padding: 56px 48px 56px 0px;
}

.service-col__thumb {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #111111;
	margin-top: 36px;
}

.service-col__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.service-col__thumb::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	transition: opacity 0.45s ease;
}

.service-col__thumb:hover::after {
	opacity: 0;
}


.service-col__num {
	font-family: 'WalsheimLight', sans-serif;
	font-size: 12px;
	letter-spacing: 0.22em;
	color: rgba(237,238,238,0.6);
	margin-bottom: 28px;
}

.service-col__title {
	font-family: 'WalsheimBold', sans-serif;
	font-size: clamp(32px, 3.2vw, 52px);
	letter-spacing: -0.02em;
	color: #EDEEEE;
	margin-bottom: 20px;
	text-transform: none;
}

.service-col__desc {
	font-family: 'WalsheimMedium', sans-serif;
	font-size: clamp(16px, 1.4vw, 22px);
	line-height: 1.6;
	color: rgba(237,238,238,0.82);
}

/* ---------- 03 Process ---------- */

.process-steps { margin-top: 40px; }

.process-step { margin-bottom: 0; }

.process-rule {
	border: none;
	border-top: 1px solid rgba(237,238,238,0.25);
	transform-origin: left center;
	transform: scaleX(0);
	margin-bottom: 0;
}

.process-step__inner {
	display: grid;
	grid-template-columns: 64px 1fr 2fr;
	gap: 0 40px;
	padding: 40px 0;
	align-items: start;
}

.process-step__num {
	font-family: 'WalsheimLight', sans-serif;
	font-size: 11px;
	letter-spacing: 0.22em;
	color: rgba(237,238,238,0.6);
	padding-top: 4px;
}

.process-step__title {
	font-family: 'WalsheimBold', sans-serif;
	font-size: clamp(22px, 2.8vw, 40px);
	letter-spacing: -0.03em;
	color: #EDEEEE;
}

.process-step__body {
	font-family: 'WalsheimMedium', sans-serif;
	font-size: 24px;
	line-height: 1.65;
	color: rgba(237,238,238,0.82);
	max-width: 420px;
}

/* ---------- Case Studies ---------- */

.section--case {
	padding: 0;
}

.cs-hero {
	position: sticky;
	top: 0;
	height: 100vh;
	overflow: hidden;
}

.cs-hero-img {
	width: 100%;
	height: 115%;
	object-fit: cover;
	object-position: center;
	display: block;
	will-change: transform;
}

.cs-content {
	background: #000;
	padding: 80px 80px 40px;
	position: relative;
	z-index: 2;
}

.cs-label {
	display: block;
	font-family: 'WalsheimLight', sans-serif;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: none;
	color: rgba(237,238,238,0.6);
	margin-bottom: 24px;
}

.cs-title {
	font-family: 'WalsheimBold', sans-serif;
	font-size: clamp(48px, 8vw, 130px);
	line-height: 0.92;
	letter-spacing: -0.04em;
	text-transform: none;
	color: #EDEEEE;
	margin-bottom: 48px;
}

.cs-meta {
	display: flex;
	gap: 48px;
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(237,238,238,0.2);
}

.cs-meta-item {
	font-family: 'WalsheimMedium', sans-serif;
	font-size: 18px;
	color: rgba(237,238,238,0.45);
}

.cs-meta-item span {
	display: block;
	font-family: 'WalsheimLight', sans-serif;
	font-size: 16px;
	letter-spacing: 0.2em;
	text-transform: none;
	color: rgba(237,238,238,0.45);
	margin-bottom: 4px;
}

.cs-body {
	font-family: 'WalsheimMedium', sans-serif;
	font-size: 20px;
	line-height: 1.7;
	color: rgba(237,238,238,0.8);
	max-width: 1200px;
	margin-bottom: 40px;
}

.cs-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'WalsheimLight', sans-serif;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: none;
	color: #EDEEEE;
	text-decoration: none;
	border-bottom: 1px solid rgba(237,238,238,0.3);
	padding-bottom: 4px;
	transition: border-color 300ms ease;
}

.cs-link:hover { border-color: #EDEEEE; }

/* ---------- Case Video ---------- */

.cs-video-wrap {
	background: #000;
	padding: 0 80px 80px;
}

.cs-video-player {
	position: relative;
	line-height: 0;
}

.cs-video {
	display: block;
	width: 100%;
	max-width: 1200px;
	height: auto;
	cursor: pointer;
}

.cs-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: opacity 300ms ease, transform 300ms ease;
}

.cs-play-btn svg {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}

.cs-play-btn:hover {
	transform: translate(-50%, -50%) scale(1.08);
}

.cs-play-btn.is-hidden {
	opacity: 0;
	pointer-events: none;
}

/* ---------- Interludes ---------- */

.section--interlude {
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: transparent;
	padding: 80px;
}

.interlude-quote {
	font-family: 'WalsheimLight', sans-serif;
	font-size: clamp(32px, 5vw, 80px);
	line-height: 1.1;
	letter-spacing: -0.01em;
	color: rgba(237,238,238,0.72);
	font-style: normal;
	max-width: 860px;
}

/* ---------- 04 AI Manifesto ---------- */

.section--ai { background: transparent; }

.ai-sub {
	font-family: 'WalsheimMedium', sans-serif;
	font-size: 24px;
	line-height: 1.7;
	color: rgba(237,238,238,0.82);
	max-width: 560px;
	margin-top: 20px;
}

/* ---------- 05 Contact (full-screen redesign) ---------- */

.section--contact-full {
	position: relative;
	z-index: 1;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

/* Video background */
.ct-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.ct-bg__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ct-bg__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right,  rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.82) 55%, rgba(0,0,0,0.93) 100%),
		linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 25%, rgba(0,0,0,0.15) 75%, rgba(0,0,0,0.78) 100%);
}

/* Inner two-column grid */
.ct-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	padding: 140px 80px 80px;
	flex: 1;
	align-items: center;
}

/* ── Left column ── */

.ct-heading {
	font-family: 'WalsheimBold', sans-serif;
	font-size: clamp(48px, 6vw, 96px);
	line-height: 0.95;
	letter-spacing: -0.035em;
	color: #EDEEEE;
	text-transform: none;
	margin-bottom: 48px;
}

.ct-author {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 40px;
	padding: 28px 0;
	border-top: 1px solid rgba(237,238,238,0.08);
	border-bottom: 1px solid rgba(237,238,238,0.08);
}

.ct-author__avatar {
	position: relative;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid rgba(237,238,238,0.18);
	background: rgba(237,238,238,0.05);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ct-author__avatar img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ct-author__initials {
	font-family: 'WalsheimBold', sans-serif;
	font-size: 16px;
	letter-spacing: -0.02em;
	color: rgba(237,238,238,0.38);
}

.ct-author__name {
	display: block;
	font-family: 'WalsheimBold', sans-serif;
	font-size: 17px;
	letter-spacing: -0.01em;
	color: #EDEEEE;
	margin-bottom: 4px;
}

.ct-author__role {
	display: block;
	font-family: 'WalsheimLight', sans-serif;
	font-size: 11px;
	letter-spacing: 0.2em;
	color: rgba(237,238,238,0.38);
}

/* Reuse existing .contact-email / .contact-links / .contact-link */
.contact-email {
	display: inline-block;
	font-family: 'WalsheimMedium', sans-serif;
	font-size: 20px;
	color: rgba(237,238,238,0.65);
	text-decoration: none;
	border-bottom: 1px solid rgba(237,238,238,0.3);
	padding-bottom: 4px;
	margin-bottom: 32px;
	transition: color 300ms, border-color 300ms;
}

.contact-email:hover { color: #EDEEEE; border-color: #EDEEEE; }

.contact-links {
	display: flex;
	gap: 32px;
	margin-bottom: 0;
}

.contact-link {
	font-family: 'WalsheimLight', sans-serif;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: none;
	color: rgba(237,238,238,0.5);
	text-decoration: none;
	transition: color 300ms;
}

.contact-link:hover { color: #EDEEEE; }

/* ── Right column: form ── */

.ct-right {
	position: relative;
}

.ct-form {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ct-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.ct-field {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 8px;
}

.ct-label {
	font-family: 'WalsheimLight', sans-serif;
	font-size: 10px;
	letter-spacing: 0.26em;
	color: rgba(237,238,238,0.85);
	pointer-events: none;
	user-select: none;
}

.ct-input {
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(237,238,238,0.45);
	color: #EDEEEE;
	font-family: 'WalsheimMedium', sans-serif;
	font-size: 17px;
	line-height: 1.5;
	padding: 14px 0;
	outline: none;
	transition: border-color 350ms ease;
	-webkit-appearance: none;
	border-radius: 0;
}

.ct-input:focus { border-color: #EDEEEE; }

/* Chrome autofill override — prevents white background injection */
.ct-input:-webkit-autofill,
.ct-input:-webkit-autofill:hover,
.ct-input:-webkit-autofill:focus {
	-webkit-box-shadow: 0 0 0 1000px #000 inset !important;
	-webkit-text-fill-color: #EDEEEE !important;
	caret-color: #EDEEEE;
	border-bottom-color: rgba(237,238,238,0.45) !important;
}

.ct-input::placeholder {
	color: rgba(237,238,238,0.6);
	font-family: 'WalsheimLight', sans-serif;
}

.ct-textarea {
	resize: none;
	min-height: 110px;
}

/* ── Submit button ── */

.ct-submit {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	background: transparent;
	color: #EDEEEE;
	border: 1px solid rgba(237,238,238,0.28);
	padding: 18px 32px;
	font-family: 'WalsheimMedium', sans-serif;
	font-size: 13px;
	letter-spacing: 0.12em;
	cursor: pointer;
	margin-top: 32px;
	align-self: flex-start;
	position: relative;
	overflow: hidden;
	transition: gap 300ms ease, border-color 350ms ease;
}

.ct-submit::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(237,238,238,0.07);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 500ms cubic-bezier(0.76, 0, 0.24, 1);
}

.ct-submit:hover::before  { transform: scaleX(1); }
.ct-submit:hover          { border-color: rgba(237,238,238,0.6); gap: 22px; }

.ct-submit__text,
.ct-submit__icon          { position: relative; z-index: 1; }

/* ── Thank-you state ── */

.ct-thanks {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 24px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(20px);
	transition: opacity 600ms ease, transform 600ms ease;
}

.ct-thanks--visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.ct-thanks__check {
	width: 44px;
	height: 44px;
	border: 1px solid rgba(237,238,238,0.28);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #EDEEEE;
}

.ct-thanks__msg {
	font-family: 'WalsheimBold', sans-serif;
	font-size: clamp(28px, 3.5vw, 52px);
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: #EDEEEE;
}

/* ── Footer inside section ── */

.ct-footer {
	position: relative;
	z-index: 1;
	margin: 0 80px;
	padding-bottom: 40px;
}

.site-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 40px;
	border-top: 1px solid rgba(237,238,238,0.08);
	font-family: 'WalsheimLight', sans-serif;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: none;
	color: rgba(237,238,238,0.4);
}

.footer-instagram {
	color: rgba(237,238,238,0.4);
	text-decoration: none;
	font-family: 'WalsheimLight', sans-serif;
	font-size: 11px;
	letter-spacing: 0.18em;
	transition: color 250ms ease;
}
.footer-instagram:hover { color: #EDEEEE; }

/* ═══════════════════════════════════════════════════════════════════════════ */
/* RESPONSIVE                                                                   */
/* ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
	.section { padding: 100px 24px 80px; }

	.text-block {
		bottom: 12%;
		max-width: min(440px, 85vw);
	}

	.text-block__title { font-size: 28px; }
	.text-block__sub   { font-size: 14px; }

	.logo, .half__logo-mount .logo { width: 180px; }

.services-grid { grid-template-columns: 1fr; }
	.service-col { padding: 36px 0 36px 0; border-right: none; }
	.service-col:nth-child(n+2) { border-top: 1px solid rgba(237,238,238,0.2); }

	.process-step__inner { grid-template-columns: 40px 1fr; }
	.process-step__body { grid-column: 2; }

	.cs-content { padding: 48px 24px 80px; }
	.cs-meta { flex-wrap: wrap; gap: 24px; }

	.cs-video-wrap { padding: 0 24px 60px; }

	.ct-inner {
		grid-template-columns: 1fr;
		gap: 56px;
		padding: 100px 24px 60px;
	}

	.ct-row { grid-template-columns: 1fr; gap: 0; }

	.ct-footer { margin: 0 24px; }

	.site-footer { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
	.section-heading { font-size: 40px; }
	.cs-title { font-size: 40px; }
}

@media (prefers-reduced-motion: reduce) {
	.logo-tilt:hover .logo-pulse { animation: none; }
}
