:root {
	--bg: #070707;
	--cream: #f3efe6;
	--white: #fff;
	--muted: #9a9a9a;
	--line: rgba(255, 255, 255, 0.11);
	--gold: #d7b56d;
	--gold2: #f3d89e;
	--max: 1240px;
	--header: 78px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body.tmw-site {
	margin: 0;
	background: var(--bg);
	color: var(--white);
	font-family: "DM Sans", "Segoe UI", sans-serif;
	overflow-x: hidden;
	line-height: 1.5;
}

body.tmw-site::after {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	opacity: 0.028;
	z-index: 80;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.85' numOctaves='3' stitchTiles='stitch' type='fractalNoise'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.tmw-site a { color: inherit; text-decoration: none; }
body.tmw-site img { max-width: 100%; display: block; }
body.tmw-site button,
body.tmw-site input,
body.tmw-site select,
body.tmw-site textarea { font: inherit; }

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

.skip-link {
	position: absolute;
	left: 12px;
	top: -48px;
	z-index: 100;
	background: var(--gold);
	color: #111;
	padding: 10px 14px;
	border-radius: 999px;
	font-weight: 700;
}

.skip-link:focus { top: 12px; }

body.tmw-site :focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
}

.container {
	width: min(var(--max), calc(100% - 40px));
	margin: 0 auto;
}

.tmw-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(7, 7, 7, 0.78);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.tmw-header.is-stuck {
	border-bottom-color: var(--line);
	background: rgba(7, 7, 7, 0.92);
}

body.admin-bar .tmw-header { top: 32px; }

.nav {
	min-height: var(--header);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	position: relative;
}

.logo {
	font-family: Manrope, "Segoe UI", sans-serif;
	font-weight: 800;
	font-size: 22px;
	letter-spacing: -0.04em;
	flex: 0 0 auto;
}

.logo i { font-style: normal; color: var(--gold); }

.navlinks {
	display: flex;
	align-items: center;
	gap: 28px;
	color: #aaa;
	font-size: 13px;
}

.navlinks a { transition: color 0.2s ease; }
.navlinks a:hover { color: #fff; }

.nav-mobile-cta { display: none; }

.nav-toggle {
	display: none;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: transparent;
	color: #fff;
	place-items: center;
	cursor: pointer;
	padding: 0;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
	display: block;
	width: 16px;
	height: 1.5px;
	background: #fff;
	position: relative;
	transition: 0.25s var(--ease);
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 22px;
	border-radius: 100px;
	border: 1px solid var(--line);
	background: transparent;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.25s var(--ease), border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover { transform: translateY(-2px); border-color: #555; }
.btn.gold { background: var(--gold); color: #090909; border-color: var(--gold); }
.btn.gold:hover { background: var(--gold2); }
.btn:disabled { opacity: 0.7; cursor: wait; transform: none; }

.hero {
	position: relative;
	min-height: min(920px, 100svh);
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	filter: grayscale(100%);
	opacity: 0.48;
	transform: scale(1.04);
	animation: ken 28s ease-in-out infinite alternate;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, #050505 4%, rgba(5, 5, 5, 0.88) 42%, rgba(5, 5, 5, 0.18) 100%),
		linear-gradient(180deg, rgba(7, 7, 7, 0.2) 0%, transparent 28%, #070707 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 88px 0 72px;
	max-width: 1000px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	border: 1px solid var(--line);
	border-radius: 100px;
	padding: 8px 13px;
	color: #c5c5c5;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 10px;
}

.dot {
	width: 6px;
	height: 6px;
	background: var(--gold);
	border-radius: 50%;
	box-shadow: 0 0 15px var(--gold);
	animation: pulse 2.4s ease-in-out infinite;
}

h1,
.section-head h2,
.visual-content h2,
.quote-layout h2,
.inner-title {
	font-family: Manrope, "Segoe UI", sans-serif;
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 0.94;
	margin: 0;
}

h1 {
	font-size: clamp(46px, 8vw, 108px);
	margin: 26px 0 24px;
	max-width: 14ch;
}

h1 span,
.visual-content h2 span { color: var(--gold); }

.hero-copy {
	font-size: clamp(16px, 1.5vw, 18px);
	line-height: 1.7;
	color: #bbb;
	max-width: 640px;
	margin: 0;
}

.hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 32px;
}

.hero-facts {
	display: flex;
	flex-wrap: wrap;
	margin-top: 64px;
	border-top: 1px solid var(--line);
	max-width: 820px;
}

.fact {
	padding: 20px 32px 0 0;
	margin-right: 32px;
	border-right: 1px solid var(--line);
}

.fact:last-child { border: 0; margin-right: 0; }

.fact strong {
	font-family: Manrope, "Segoe UI", sans-serif;
	font-weight: 700;
	font-size: 24px;
	display: block;
}

.fact small {
	color: #777;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.marquee {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 18px 0;
	overflow: hidden;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-size: 11px;
}

.marquee-track {
	display: flex;
	width: max-content;
	align-items: center;
	animation: ticker 32s linear infinite;
}

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

.marquee span { margin: 0 8px; }
.marquee b { color: #aaa; font-weight: 500; margin: 0 22px; }

section { padding: 112px 0; }

.kicker {
	color: var(--gold);
	font-weight: 700;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	margin-bottom: 14px;
}

.section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 40px;
	margin-bottom: 52px;
}

.section-head h2 { font-size: clamp(36px, 5vw, 68px); }

.section-head > p {
	max-width: 420px;
	color: #888;
	line-height: 1.7;
	margin: 0;
}

.intro {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 72px;
}

.intro h3 {
	font-family: Manrope, "Segoe UI", sans-serif;
	font-weight: 600;
	font-size: clamp(24px, 2.4vw, 30px);
	line-height: 1.28;
	letter-spacing: -0.03em;
	margin: 0;
}

.intro-copy { color: #909090; line-height: 1.8; font-size: 16px; }
.intro-copy p { margin: 0; }
.intro-copy p + p { margin-top: 18px; }

.signature {
	margin-top: 32px;
	display: flex;
	align-items: center;
	gap: 15px;
	color: #bbb;
}

.signature .line {
	width: 60px;
	height: 1px;
	background: var(--gold);
	transform-origin: left center;
	animation: draw 1.1s var(--ease) both;
}

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

.service {
	background: #0b0b0b;
	padding: 28px 28px 32px;
	min-height: 430px;
	display: flex;
	flex-direction: column;
	transition: background 0.35s ease, transform 0.35s var(--ease);
}

.service:hover { background: #151515; transform: translateY(-4px); }

.service img {
	height: 132px;
	width: 100%;
	object-fit: cover;
	filter: grayscale(100%);
	opacity: 0.5;
	margin-bottom: 26px;
	transition: opacity 0.4s ease, transform 0.6s var(--ease);
}

.service:hover img { opacity: 0.85; transform: scale(1.03); }

.service-num { color: #555; font-size: 11px; letter-spacing: 0.08em; }
.service h3 {
	font-family: Manrope, "Segoe UI", sans-serif;
	font-weight: 700;
	font-size: 28px;
	margin: 10px 0 8px;
	letter-spacing: -0.03em;
}
.service p { color: #888; font-size: 14px; line-height: 1.65; margin: 0; }
.service-link { margin-top: auto; padding-top: 22px; color: var(--gold); font-size: 13px; font-weight: 600; }

.visual-band {
	height: min(640px, 78vw);
	min-height: 420px;
	position: relative;
	overflow: hidden;
}

.visual-band img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.48) saturate(0.65);
}

.visual-band::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 72%),
		linear-gradient(180deg, #070707, transparent 28%, rgba(0, 0, 0, 0.35));
}

.visual-content {
	position: absolute;
	z-index: 2;
	inset: 0;
	display: flex;
	align-items: center;
}

.visual-content h2 { font-size: clamp(40px, 6.4vw, 88px); max-width: 12ch; }

.cases {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: 18px;
}

.case {
	position: relative;
	overflow: hidden;
	background: #111;
	min-height: 540px;
}

.case.small { min-height: 261px; }

.case img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--ease);
}

.case:hover img { transform: scale(1.06); }

.case::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.88));
}

.case-info { position: absolute; z-index: 2; bottom: 0; left: 0; right: 0; padding: 28px; }
.case-info small { color: var(--gold); text-transform: uppercase; letter-spacing: 0.16em; font-size: 10px; }
.case-info h3 {
	font-family: Manrope, "Segoe UI", sans-serif;
	font-weight: 700;
	font-size: clamp(22px, 2vw, 30px);
	margin: 8px 0;
	letter-spacing: -0.03em;
}
.case-info p { color: #aaa; font-size: 13px; margin: 0; }

.case-stat {
	position: absolute;
	right: 22px;
	top: 22px;
	z-index: 2;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(0, 0, 0, 0.38);
	backdrop-filter: blur(8px);
	padding: 12px 14px;
}

.case-stat strong {
	font-family: Manrope, "Segoe UI", sans-serif;
	font-weight: 700;
	font-size: 24px;
	color: var(--gold);
	display: block;
}

.case-stat span { font-size: 9px; color: #bbb; text-transform: uppercase; letter-spacing: 0.08em; }
.case-side { display: grid; gap: 18px; }

.results { background: var(--cream); color: #101010; }
.results .section-head > p { color: #555; }

.results-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid #b7b1a6;
	border-bottom: 1px solid #b7b1a6;
}

.result { padding: 36px 22px; border-right: 1px solid #b7b1a6; }
.result:last-child { border-right: 0; }

.result strong {
	font-family: Manrope, "Segoe UI", sans-serif;
	font-weight: 800;
	font-size: clamp(32px, 4vw, 52px);
	letter-spacing: -0.04em;
	display: block;
}

.result span {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #555;
}

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

.step {
	padding: 36px 28px 8px 0;
	border-right: 1px solid var(--line);
	margin-right: 28px;
	min-height: 230px;
}

.step:last-child { border-right: 0; margin-right: 0; }
.step-num { color: var(--gold); font-family: Manrope, "Segoe UI", sans-serif; font-weight: 700; font-size: 12px; }
.step h3 {
	font-family: Manrope, "Segoe UI", sans-serif;
	font-weight: 700;
	font-size: 24px;
	margin: 36px 0 12px;
	letter-spacing: -0.03em;
}
.step p { color: #858585; font-size: 14px; line-height: 1.65; margin: 0; }

.industries { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

.industry {
	height: 250px;
	position: relative;
	overflow: hidden;
}

.industry img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.5);
	transition: transform 0.5s var(--ease), filter 0.5s ease;
}

.industry:hover img { transform: scale(1.06); filter: brightness(0.72); }

.industry::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75));
}

.industry span {
	position: absolute;
	z-index: 2;
	bottom: 18px;
	left: 18px;
	right: 18px;
	font-family: Manrope, "Segoe UI", sans-serif;
	font-weight: 700;
	font-size: 20px;
}

.testimonial {
	display: grid;
	grid-template-columns: 0.28fr 1fr;
	gap: 40px;
	align-items: center;
}

.quote-mark {
	font-family: Manrope, "Segoe UI", sans-serif;
	font-weight: 800;
	font-size: clamp(90px, 12vw, 140px);
	color: var(--gold);
	line-height: 0.7;
}

.testimonial blockquote {
	margin: 0;
	font-family: Manrope, "Segoe UI", sans-serif;
	font-weight: 600;
	font-size: clamp(26px, 3.6vw, 48px);
	line-height: 1.18;
	letter-spacing: -0.035em;
}

.testimonial cite {
	display: block;
	margin-top: 24px;
	color: #777;
	font-style: normal;
	font-size: 13px;
}

.quote-section {
	background: #111;
	position: relative;
	overflow: hidden;
}

.quote-section::before {
	content: "";
	position: absolute;
	width: 560px;
	height: 560px;
	border-radius: 50%;
	right: -160px;
	top: -240px;
	background: radial-gradient(circle, rgba(215, 181, 109, 0.22), transparent 66%);
	animation: drift 14s ease-in-out infinite alternate;
}

.quote-layout {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 72px;
	align-items: start;
}

.quote-layout h2 { font-size: clamp(40px, 5vw, 72px); }
.quote-layout > div > p { color: #888; margin: 20px 0 0; max-width: 420px; line-height: 1.7; }

.form {
	border: 1px solid var(--line);
	background: #090909;
	padding: 32px;
}

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }

.field label {
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #777;
	display: block;
	margin-bottom: 7px;
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid #282828;
	background: #111;
	color: #eee;
	padding: 14px;
	border-radius: 6px;
	outline: none;
}

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

textarea { min-height: 120px; resize: vertical; }
.form .btn { width: 100%; margin-top: 4px; }

.form-note {
	margin-top: 14px;
	padding: 14px;
	border-radius: 6px;
	font-size: 13px;
	line-height: 1.5;
}

.form-note.is-ok {
	border: 1px solid rgba(215, 181, 109, 0.35);
	background: rgba(215, 181, 109, 0.08);
	color: #dec58f;
}

.form-note.is-error {
	border: 1px solid rgba(255, 120, 120, 0.35);
	background: rgba(255, 80, 80, 0.08);
	color: #f0b4b4;
}

.faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}

details { background: #0b0b0b; padding: 22px 24px; }

summary {
	cursor: pointer;
	font-family: Manrope, "Segoe UI", sans-serif;
	font-weight: 600;
	font-size: 17px;
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: center;
}

summary::-webkit-details-marker { display: none; }

summary::after {
	content: "+";
	color: var(--gold);
	font-size: 22px;
	line-height: 1;
	flex: 0 0 auto;
}

details[open] summary::after { content: "−"; }
details p { color: #888; line-height: 1.7; font-size: 14px; padding-top: 14px; margin: 0; }

.footer {
	border-top: 1px solid var(--line);
	padding: 56px 0 24px;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 32px;
	padding-bottom: 48px;
}

.footer h4 {
	font-family: Manrope, "Segoe UI", sans-serif;
	font-weight: 700;
	font-size: 17px;
	margin: 0 0 14px;
}

.footer p,
.footer a {
	color: #777;
	font-size: 13px;
	line-height: 1.5;
}

.footer-top a { display: block; padding: 4px 0; }
.footer a:hover { color: #fff; }
.footer-top > div > p { margin: 14px 0 0; max-width: 300px; }
.footer-gold { color: var(--gold) !important; }

.footer-bottom {
	border-top: 1px solid var(--line);
	padding-top: 18px;
	display: flex;
	justify-content: space-between;
	gap: 12px;
	color: #555;
	font-size: 11px;
}

.inner-page { padding: 90px 0 120px; }
.inner-title { font-size: clamp(40px, 6vw, 72px); margin-bottom: 18px; }
.inner-lead { color: #999; max-width: 520px; }
.inner-copy { color: #c8c8c8; max-width: 760px; font-size: 17px; line-height: 1.75; }
.inner-copy p { margin: 0 0 16px; }

.rise {
	opacity: 0;
	animation: rise 0.95s var(--ease) forwards;
	animation-delay: calc(var(--d, 0) * 110ms + 60ms);
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
	transition-delay: calc(var(--d, 0) * 80ms);
}

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

@keyframes rise {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: none; }
}

@keyframes ken {
	from { transform: scale(1.02); }
	to { transform: scale(1.1); }
}

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

@keyframes pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(215, 181, 109, 0.35); }
	50% { box-shadow: 0 0 0 7px rgba(215, 181, 109, 0); }
}

@keyframes draw {
	from { transform: scaleX(0); }
	to { transform: scaleX(1); }
}

@keyframes drift {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(-30px, 24px, 0); }
}

@media (max-width: 1100px) {
	.services { grid-template-columns: 1fr 1fr; }
	.process,
	.results-grid,
	.industries { grid-template-columns: 1fr 1fr; }
	.step { margin-right: 0; padding-right: 22px; }
	.step:nth-child(2) { border-right: 0; }
	.footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
	.nav-desktop-cta { display: none; }
	.nav-toggle { display: grid; }
	.nav-mobile-cta { display: inline-flex; margin-top: 12px; align-self: flex-start; }

	.navlinks {
		display: none;
		position: absolute;
		top: calc(100% + 1px);
		left: 0;
		right: 0;
		width: auto;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 6px 22px 22px;
		background: rgba(8, 8, 8, 0.97);
		border-bottom: 1px solid var(--line);
	}

	.navlinks.is-open { display: flex; }

	.navlinks a {
		padding: 15px 4px;
		border-bottom: 1px solid var(--line);
		font-size: 16px;
		color: #ddd;
	}

	.intro,
	.quote-layout,
	.testimonial,
	.cases { grid-template-columns: 1fr; }

	.case,
	.case.small { min-height: 380px; }
	.hero-content { padding: 56px 0 48px; }
	.hero-facts { margin-top: 40px; }
	section { padding: 84px 0; }
	.section-head { align-items: flex-start; }
}

@media (max-width: 640px) {
	.container { width: min(var(--max), calc(100% - 32px)); }
	.section-head { display: block; }
	.section-head > p { margin-top: 16px; }
	.services,
	.industries,
	.results-grid,
	.process,
	.grid2,
	.footer-top,
	.faq-grid { grid-template-columns: 1fr; }
	.step,
	.result { border-right: 0; border-bottom: 1px solid var(--line); margin-right: 0; min-height: 0; }
	.results .result { border-bottom-color: #b7b1a6; }
	.result:last-child,
	.step:last-child { border-bottom: 0; }
	.fact { border-right: 0; margin-right: 0; padding-right: 0; min-width: 42%; }
	.service { min-height: 0; }
	.service:hover { transform: none; }
	.visual-band { height: 460px; min-height: 0; }
	.industry { height: 210px; }
	.form { padding: 20px; }
	.footer-bottom { display: block; }
	.footer-bottom div + div { margin-top: 8px; }
	.quote-mark { line-height: 0.8; }
}

@media (max-width: 782px) {
	body.admin-bar .tmw-header { top: 46px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.rise,
	.reveal,
	.hero-bg img,
	.marquee-track,
	.dot,
	.signature .line,
	.quote-section::before {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}
