:root {
	--paper: #f4f0e8;
	--paper-2: #ebe5da;
	--ink: #080808;
	--charcoal: #101010;
	--charcoal-2: #171717;
	--muted: #6d675f;
	--line: rgba(8, 8, 8, 0.14);
	--line-dark: rgba(244, 240, 232, 0.16);
	--red: #e52323;
	--red-dark: #b81515;
	--white: #fffaf1;
	--ease: cubic-bezier(0.19, 1, 0.22, 1);
	--container: min(100% - 40px, 1320px);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	text-rendering: geometricPrecision;
}

body::before {
	position: fixed;
	inset: 0;
	z-index: -1;
	content: "";
	background:
		linear-gradient(90deg, rgba(8, 8, 8, 0.032) 1px, transparent 1px) 0 0 / 96px 96px,
		var(--paper);
	pointer-events: none;
}

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

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

button,
input,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

::selection {
	background: var(--red);
	color: var(--white);
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	padding: 10px 14px;
	background: var(--ink);
	color: var(--white);
	transform: translateY(-160%);
}

.skip-link:focus {
	transform: translateY(0);
}

.container {
	width: var(--container);
	margin-inline: auto;
}

.narrow {
	max-width: 820px;
}

.section {
	padding: clamp(72px, 9vw, 138px) 0;
}

.dark {
	background: var(--ink);
	color: var(--white);
}

.center {
	text-align: center;
}

.eyebrow {
	margin: 0 0 16px;
	color: var(--red);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2 {
	letter-spacing: 0;
	line-height: 0.94;
}

h1 {
	margin-bottom: 28px;
	font-size: clamp(40px, 6.2vw, 92px);
	font-weight: 850;
}

h2 {
	margin-bottom: 24px;
	font-size: clamp(30px, 4.2vw, 58px);
	font-weight: 820;
}

h3 {
	margin-bottom: 10px;
	font-size: clamp(17px, 1.55vw, 22px);
	line-height: 1.1;
}

p {
	color: var(--muted);
}

.dark p,
.dark .lead {
	color: rgba(255, 250, 241, 0.74);
}

.lead {
	font-size: clamp(17px, 1.8vw, 23px);
	line-height: 1.25;
	color: var(--ink);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(244, 240, 232, 0.86);
	border-bottom: 1px solid transparent;
	backdrop-filter: blur(18px);
	transition: border-color 300ms var(--ease), background 300ms var(--ease);
}

.site-header.is-scrolled {
	border-color: var(--line);
	background: rgba(244, 240, 232, 0.94);
}

.header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 30px;
	min-height: 76px;
}

.wordmark,
.footer-brand {
	display: inline-block;
	font-size: 19px;
	font-weight: 900;
	line-height: 0.95;
	letter-spacing: 0;
}

.nav-list {
	display: flex;
	justify-content: center;
	gap: clamp(18px, 3vw, 44px);
	padding: 0;
	margin: 0;
	list-style: none;
}

.nav-list a {
	position: relative;
	font-size: 13px;
	font-weight: 750;
}

.nav-list a::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 2px;
	content: "";
	background: var(--red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 280ms var(--ease);
}

.nav-list a:hover::after,
.current-menu-item > a::after,
.nav-list a.is-current::after {
	transform: scaleX(1);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 46px;
	padding: 0 24px;
	border: 1px solid var(--ink);
	background: transparent;
	color: var(--ink);
	font-size: 13px;
	font-weight: 850;
	overflow: hidden;
	transition: transform 300ms var(--ease), background 300ms var(--ease), color 300ms var(--ease), border-color 300ms var(--ease);
}

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

.btn-red {
	border-color: var(--red);
	background: var(--red);
	color: var(--white);
}

.btn-red:hover {
	border-color: var(--red-dark);
	background: var(--red-dark);
}

.btn-light {
	border-color: rgba(255, 250, 241, 0.46);
	color: var(--white);
}

.btn-light:hover {
	background: var(--white);
	color: var(--red);
}

.btn-outline:hover {
	background: var(--ink);
	color: var(--white);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
}

.menu-toggle span {
	display: block;
	width: 20px;
	height: 1px;
	margin: 6px auto;
	background: var(--ink);
	transition: transform 280ms var(--ease);
}

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

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

.hero {
	min-height: calc(92vh - 76px);
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding-top: clamp(54px, 7vw, 104px);
}

.hero-grid,
.split-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
	align-items: center;
	gap: clamp(44px, 7vw, 112px);
}

.hero-kicker {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	color: var(--red);
	font-size: 11px;
	font-weight: 850;
	text-transform: uppercase;
}

.hero-kicker span {
	width: 42px;
	height: 2px;
	background: var(--red);
}

.hero-copy h1 {
	max-width: 780px;
	margin-bottom: clamp(24px, 3vw, 40px);
	font-size: clamp(52px, 7vw, 104px);
	line-height: 0.9;
}

.hero-copy h1 span {
	display: block;
}

.hero-copy p {
	max-width: 590px;
	font-size: clamp(16px, 1.55vw, 20px);
}

.hero-meta-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	max-width: 720px;
	margin-top: clamp(38px, 5vw, 72px);
	background: var(--line);
}

.hero-meta-strip span {
	display: grid;
	gap: 8px;
	min-height: 96px;
	padding: 18px 20px;
	background: rgba(244, 240, 232, 0.92);
	color: var(--muted);
	font-size: 12px;
	font-weight: 750;
	text-transform: uppercase;
}

.hero-meta-strip strong {
	color: var(--ink);
	font-size: 14px;
	line-height: 1;
}

.hero-media,
.hero-canvas {
	position: relative;
	overflow: hidden;
	background: var(--paper-2);
	transform-style: preserve-3d;
}

.hero-canvas {
	display: grid;
	grid-template-columns: 1.18fr 0.82fr 0.58fr;
	grid-template-rows: minmax(190px, 0.95fr) minmax(160px, 0.78fr) minmax(112px, 0.45fr);
	gap: 8px;
	min-height: clamp(560px, 62vw, 760px);
	background: transparent;
	overflow: visible;
}

.hero-media.slim {
	aspect-ratio: 1.35;
}

.hero-media::before,
.hero-canvas::before {
	position: absolute;
	inset: -18px;
	z-index: 1;
	content: "";
	border: 1px solid rgba(8, 8, 8, 0.1);
	pointer-events: none;
}

.kinetic-frame::after {
	position: absolute;
	right: 0;
	bottom: -10px;
	left: 0;
	z-index: 2;
	height: 4px;
	content: "";
	background: var(--red);
	transform: scaleX(0.18);
	transform-origin: left;
	animation: worthyScan 4.8s var(--ease) infinite;
}

.hero-panel {
	position: relative;
	overflow: hidden;
	background: var(--ink);
	color: var(--white);
}

.hero-panel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.hero-panel:hover img {
	filter: saturate(1.05) contrast(1.04);
	transform: scale(1.055);
}

.hero-panel-main {
	grid-column: 1 / span 2;
	grid-row: 1 / span 2;
}

.hero-panel-main::after,
.hero-panel-work::after,
.hero-panel-mini::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, rgba(8, 8, 8, 0), rgba(8, 8, 8, 0.28));
}

.hero-panel-red {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	grid-column: 3;
	grid-row: 1;
	padding: 24px;
	background: var(--red);
}

.hero-panel-red span {
	font-size: 13px;
	font-weight: 900;
}

.hero-panel-red strong {
	max-width: 180px;
	font-size: clamp(20px, 2.35vw, 30px);
	line-height: 0.96;
}

.hero-panel-work {
	grid-column: 3;
	grid-row: 2;
}

.hero-panel-work small {
	position: absolute;
	right: 14px;
	bottom: 14px;
	z-index: 2;
	padding: 8px 10px;
	background: rgba(8, 8, 8, 0.72);
	color: var(--white);
	font-size: 11px;
	font-weight: 850;
	text-transform: uppercase;
}

.hero-panel-dark {
	display: grid;
	grid-column: 1;
	grid-row: 3;
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid rgba(255, 250, 241, 0.12);
	background: var(--ink);
}

.hero-panel-dark span {
	display: grid;
	place-items: center;
	border-right: 1px solid rgba(255, 250, 241, 0.12);
	color: rgba(255, 250, 241, 0.8);
	font-size: 11px;
	font-weight: 850;
	text-transform: uppercase;
}

.hero-panel-dark span:last-child {
	border-right: 0;
}

.hero-panel-mini {
	grid-column: 2 / span 2;
	grid-row: 3;
}

.hero-live-card {
	position: absolute;
	right: clamp(18px, 4vw, 42px);
	bottom: clamp(44px, 6vw, 86px);
	z-index: 5;
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 12px 16px;
	align-items: center;
	width: min(360px, 78%);
	padding: 18px;
	border: 1px solid rgba(255, 250, 241, 0.22);
	background: rgba(8, 8, 8, 0.82);
	color: var(--white);
	backdrop-filter: blur(16px);
}

.hero-live-card .play-pulse {
	position: relative;
	right: auto;
	bottom: auto;
	width: 54px;
	height: 54px;
	grid-row: span 2;
}

.hero-live-card strong {
	font-size: 16px;
	line-height: 1;
	text-transform: uppercase;
}

.hero-live-card small {
	color: rgba(255, 250, 241, 0.66);
	font-size: 12px;
}

.media-badge {
	position: absolute;
	top: 22px;
	left: 22px;
	z-index: 3;
	padding: 9px 12px;
	background: var(--ink);
	color: var(--white);
	font-size: 11px;
	font-weight: 850;
	text-transform: uppercase;
}

.play-pulse {
	position: absolute;
	right: 24px;
	bottom: 24px;
	z-index: 3;
	width: 64px;
	height: 64px;
	border: 1px solid rgba(255, 250, 241, 0.72);
	border-radius: 50%;
	background: rgba(8, 8, 8, 0.52);
}

.play-pulse::before {
	position: absolute;
	top: 50%;
	left: 53%;
	content: "";
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid var(--white);
	transform: translate(-50%, -50%);
}

.play-pulse::after {
	position: absolute;
	inset: -10px;
	content: "";
	border: 1px solid rgba(229, 35, 35, 0.7);
	border-radius: 50%;
	animation: worthyPulse 2.2s var(--ease) infinite;
}

.hero-media > img,
.service-visual img,
.case-card img,
.gallery-grid img,
.team-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 800ms var(--ease);
}

.hero-media:hover img,
.case-card:hover img,
.service-block:hover .service-visual img {
	transform: scale(1.045);
}

.showreel-rail {
	overflow: hidden;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: var(--paper);
}

.showreel-track {
	display: flex;
	width: max-content;
	animation: worthyMarquee 28s linear infinite;
}

.showreel-track span {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 70px;
	padding: 0 clamp(26px, 5vw, 72px);
	color: var(--ink);
	font-size: clamp(14px, 1.45vw, 20px);
	font-weight: 850;
	text-transform: uppercase;
}

.showreel-track span::after {
	position: absolute;
	right: -4px;
	width: 8px;
	height: 8px;
	content: "";
	background: var(--red);
	border-radius: 50%;
}

.thinking h2 {
	max-width: 920px;
	margin-inline: auto;
}

.thinking-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: clamp(42px, 6vw, 86px);
	border-top: 1px solid var(--line-dark);
	border-bottom: 1px solid var(--line-dark);
}

.thinking-card {
	position: relative;
	min-height: 210px;
	padding: 34px;
	border-right: 1px solid var(--line-dark);
	transition: background 300ms var(--ease);
}

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

.thinking-card:hover {
	background: var(--charcoal-2);
}

.thinking-card .mark,
.service-card span,
.service-number,
.timeline-step span {
	color: var(--red);
	font-size: 13px;
	font-weight: 850;
}

.thinking-card i {
	position: absolute;
	right: 28px;
	bottom: 24px;
	color: var(--white);
	font-style: normal;
}

.section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: clamp(34px, 5vw, 70px);
}

.section-heading h2 {
	margin-bottom: 0;
}

.link-arrow,
.text-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 0;
	background: transparent;
	color: var(--red);
	font-weight: 850;
}

.link-arrow::after,
.text-link::after {
	content: ">";
}

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

.featured-service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.service-card {
	position: relative;
	min-height: 210px;
	padding: 28px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	overflow: hidden;
	transition: background 300ms var(--ease), color 300ms var(--ease), transform 300ms var(--ease), box-shadow 300ms var(--ease);
	will-change: transform;
}

.service-card::before {
	position: absolute;
	inset: auto 0 0;
	height: 3px;
	content: "";
	background: var(--red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 420ms var(--ease);
}

.service-card p {
	max-width: 250px;
	font-size: 14px;
}

.service-card i,
.case-card i {
	position: absolute;
	right: 24px;
	bottom: 22px;
	font-style: normal;
	transition: transform 300ms var(--ease);
}

.service-card:hover {
	z-index: 2;
	background: var(--ink);
	color: var(--white);
	transform: translateY(-8px);
	box-shadow: 0 24px 52px rgba(8, 8, 8, 0.14);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-card:hover p {
	color: rgba(255, 250, 241, 0.72);
}

.service-card:hover i,
.case-card:hover i {
	transform: translateX(5px);
}

.case-band {
	padding-block: clamp(62px, 8vw, 120px);
}

.case-editorial-grid {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	grid-auto-rows: minmax(210px, 20vw);
	gap: 10px;
}

.case-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 260px;
	padding: 28px;
	overflow: hidden;
	background: var(--charcoal);
	color: var(--white);
	transform-style: preserve-3d;
	will-change: transform;
	transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
}

.case-card::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	width: 100%;
	height: 3px;
	content: "";
	background: var(--red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 420ms var(--ease);
}

.case-card:hover {
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
	transform: translateY(-6px);
}

.case-card:hover::before {
	transform: scaleX(1);
}

.case-card.is-large {
	grid-row: span 2;
}

.case-card img,
.case-overlay {
	position: absolute;
	inset: 0;
}

.case-overlay {
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.82));
	transition: background 360ms var(--ease);
}

.case-card:hover .case-overlay {
	background:
		linear-gradient(180deg, rgba(229, 35, 35, 0.12), rgba(8, 8, 8, 0.88));
}

.case-card strong,
.case-card small,
.case-card i {
	position: relative;
	z-index: 2;
}

.case-card strong {
	font-size: 21px;
	line-height: 1;
}

.case-card small {
	margin-top: 8px;
	color: rgba(255, 250, 241, 0.76);
	font-size: 13px;
}

.case-card p {
	position: relative;
	z-index: 2;
	max-width: 420px;
	max-height: 0;
	margin: 10px 0 0;
	overflow: hidden;
	color: rgba(255, 250, 241, 0.72);
	font-size: 14px;
	transition: max-height 360ms var(--ease);
}

.case-card:hover p {
	max-height: 80px;
}

.timeline {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0;
	padding-top: 34px;
	border-top: 1px solid var(--line);
}

.process .timeline {
	grid-template-columns: repeat(5, 1fr);
}

.timeline.compact {
	grid-template-columns: repeat(4, 1fr);
}

.dark .timeline {
	border-color: var(--line-dark);
}

.timeline-step {
	position: relative;
	padding: 28px 22px 0 0;
}

.timeline-step::before {
	position: absolute;
	top: -39px;
	left: 0;
	width: 8px;
	height: 8px;
	content: "";
	background: var(--red);
	border-radius: 50%;
}

.timeline-step p {
	font-size: 14px;
}

.why-worthy .split-layout,
.philosophy .split-layout,
.contact-form-section .split-layout {
	align-items: start;
}

.value-list {
	display: grid;
	gap: 1px;
	background: var(--line);
}

.value-list.three {
	grid-template-columns: repeat(3, 1fr);
}

.value-card {
	padding: clamp(26px, 4vw, 48px);
	background: var(--paper);
	transition: background 300ms var(--ease), color 300ms var(--ease);
}

.value-card p {
	max-height: 0;
	margin: 0;
	overflow: hidden;
	transition: max-height 420ms var(--ease);
}

.value-card:hover {
	background: var(--ink);
	color: var(--white);
}

.value-card:hover p {
	max-height: 140px;
	color: rgba(255, 250, 241, 0.74);
}

.page-hero {
	padding-top: clamp(96px, 11vw, 170px);
}

.page-hero h1 {
	font-size: clamp(38px, 5vw, 68px);
}

.service-blocks {
	padding-top: 0;
}

.service-block {
	display: grid;
	grid-template-columns: 1fr 0.9fr;
	gap: clamp(34px, 6vw, 96px);
	align-items: center;
	padding: clamp(44px, 6vw, 88px) 0;
	border-top: 1px solid var(--line);
}

.service-block:nth-child(even) .service-copy {
	order: 2;
}

.service-block.is-dark {
	margin-inline: calc((100vw - min(100% - 40px, 1320px)) / -2);
	padding-inline: calc((100vw - min(100% - 40px, 1320px)) / 2);
	background: var(--ink);
	color: var(--white);
}

.service-block.is-dark p,
.service-block.is-dark li {
	color: rgba(255, 250, 241, 0.75);
}

.service-copy ul,
.case-row ul {
	padding-left: 18px;
	margin-bottom: 28px;
	color: var(--muted);
}

.service-copy li + li,
.case-row li + li {
	margin-top: 8px;
}

.service-visual {
	overflow: hidden;
	aspect-ratio: 1.58;
	background: var(--paper-2);
}

.filter-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 34px;
}

.filter-tabs button {
	min-height: 34px;
	padding: 0 18px;
	border: 1px solid var(--line);
	background: transparent;
	font-size: 13px;
	font-weight: 800;
}

.filter-tabs button.is-active,
.filter-tabs button:hover {
	border-color: var(--red);
	background: var(--red);
	color: var(--white);
}

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

.portfolio-card {
	aspect-ratio: 1.25;
}

.portfolio-card.is-hidden {
	display: none;
}

.load-more {
	display: flex;
	margin: 48px auto 0;
}

.case-hero {
	padding: 34px 0 0;
}

.back-link {
	display: inline-block;
	margin-bottom: 24px;
	color: rgba(255, 250, 241, 0.7);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.case-title-row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.case-title-row h1 {
	margin-bottom: 8px;
	font-size: clamp(40px, 5.2vw, 68px);
}

.case-title-row span {
	color: var(--white);
	font-weight: 800;
}

.case-hero-image {
	width: 100%;
	height: clamp(360px, 54vw, 720px);
	object-fit: cover;
}

.case-info {
	padding: 32px 0;
	border-bottom: 1px solid var(--line);
}

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

.info-grid span {
	display: block;
	margin-bottom: 6px;
	color: var(--muted);
	font-size: 12px;
}

.case-content {
	padding-top: 56px;
}

.case-row {
	display: grid;
	grid-template-columns: 0.45fr 1fr;
	gap: clamp(28px, 7vw, 120px);
	padding: 34px 0;
	border-bottom: 1px solid var(--line);
}

.case-row h2 {
	margin-bottom: 0;
	font-size: clamp(23px, 2.3vw, 32px);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	padding: 42px 0;
}

.gallery-grid img {
	aspect-ratio: 1.25;
	background: var(--paper-2);
}

.case-nav {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	padding: 34px 0;
	border-top: 1px solid var(--line);
}

.case-nav > div:last-child {
	text-align: right;
}

.case-nav a {
	font-size: 13px;
}

.case-nav strong {
	font-size: 15px;
}

.grid-icon {
	font-size: 26px;
}

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

.team-card {
	padding: 14px;
	background: var(--charcoal-2);
}

.team-card img {
	aspect-ratio: 1;
	margin-bottom: 20px;
	background: var(--ink);
}

.contact-panel {
	display: grid;
	gap: 14px;
	padding: clamp(30px, 5vw, 54px);
	background: var(--ink);
	color: var(--white);
}

.contact-panel h2 {
	font-size: 28px;
}

.social-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 20px;
	color: var(--red);
}

.contact-form,
.booking-form {
	display: grid;
	gap: 18px;
}

label {
	display: grid;
	gap: 8px;
	color: inherit;
	font-size: 13px;
	font-weight: 800;
}

input,
textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 0;
	background: rgba(255, 250, 241, 0.78);
	color: var(--ink);
	outline: none;
	transition: border-color 240ms var(--ease), background 240ms var(--ease);
}

input {
	min-height: 48px;
	padding: 0 14px;
}

textarea {
	min-height: 116px;
	padding: 14px;
	resize: vertical;
}

input:focus,
textarea:focus {
	border-color: var(--red);
	background: var(--white);
}

.dark input,
.dark textarea,
.contact-form input,
.contact-form textarea {
	border-color: var(--line-dark);
	background: rgba(255, 250, 241, 0.08);
	color: var(--white);
}

.site-footer {
	background: var(--ink);
	color: var(--white);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: clamp(30px, 6vw, 90px);
	padding: clamp(46px, 7vw, 86px) 0;
}

.footer-grid h3 {
	margin: 0 0 18px;
	color: rgba(255, 250, 241, 0.58);
	font-size: 13px;
	text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
	display: block;
	margin-bottom: 10px;
	color: rgba(255, 250, 241, 0.78);
	font-size: 14px;
}

.footer-grid a:hover,
.footer-bottom a {
	color: var(--red);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 24px 0;
	border-top: 1px solid var(--line-dark);
}

.footer-bottom p {
	margin: 0;
	color: rgba(255, 250, 241, 0.68);
	font-size: 13px;
}

.applause-section {
	position: relative;
	overflow: hidden;
	background: #f8f8f6;
	color: var(--ink);
}

.applause-dot,
.schedule-orb {
	position: absolute;
	top: clamp(34px, 6vw, 92px);
	left: clamp(20px, 8vw, 142px);
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--ink);
}

.applause-heading {
	text-align: center;
}

.applause-heading p {
	margin: 0 0 clamp(34px, 5vw, 72px);
	color: var(--ink);
	font-size: clamp(20px, 2vw, 32px);
	font-weight: 450;
	letter-spacing: 0.42em;
	text-transform: uppercase;
}

.testimonial-marquee {
	width: 100%;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.testimonial-track {
	display: flex;
	gap: clamp(18px, 2.6vw, 42px);
	width: max-content;
	padding: 0 0 clamp(18px, 3vw, 38px);
	animation: testimonialSlide 36s linear infinite;
}

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

.testimonial-card {
	position: relative;
	display: grid;
	align-content: space-between;
	width: clamp(310px, 28vw, 430px);
	min-height: clamp(340px, 34vw, 470px);
	padding: clamp(34px, 4vw, 58px);
	background: rgba(255, 255, 255, 0.74);
	box-shadow: 0 20px 90px rgba(8, 8, 8, 0.045);
	overflow: hidden;
}

.testimonial-card::before {
	position: absolute;
	top: 20px;
	left: 30px;
	content: "\201C";
	color: rgba(8, 8, 8, 0.045);
	font-family: Georgia, serif;
	font-size: 190px;
	line-height: 1;
}

.testimonial-card p {
	position: relative;
	z-index: 1;
	margin: 0;
	color: #333;
	font-size: clamp(20px, 2vw, 29px);
	line-height: 1.42;
}

.testimonial-person {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 10px;
	padding-top: 34px;
	border-top: 1px solid rgba(8, 8, 8, 0.09);
}

.testimonial-person span {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(8, 8, 8, 0.18);
	border-radius: 50%;
	background: var(--paper);
	color: var(--red);
	font-weight: 900;
}

.testimonial-person strong,
.testimonial-person small {
	font-family: "Courier New", monospace;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.testimonial-person small {
	color: #626262;
}

.schedule-call {
	position: relative;
	min-height: clamp(360px, 32vw, 500px);
	overflow: hidden;
	background: #030303;
	color: var(--white);
}

.schedule-orb {
	z-index: 2;
	top: 0;
	background: var(--white);
	box-shadow: 0 0 34px rgba(255, 255, 255, 0.48);
	transform: translateY(-50%);
}

.schedule-bg {
	position: absolute;
	inset: -24% -8%;
	background:
		radial-gradient(ellipse at 70% 30%, rgba(255, 255, 255, 0.18), transparent 34%),
		repeating-linear-gradient(8deg, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 15px),
		repeating-linear-gradient(94deg, rgba(92, 185, 220, 0.16) 0 1px, transparent 1px 58px);
	filter: blur(0.3px);
	opacity: 0.66;
	transform: perspective(900px) rotateX(60deg) rotateZ(-7deg) translateY(-10%);
	animation: scheduleDrift 14s ease-in-out infinite alternate;
}

.schedule-bg::after {
	position: absolute;
	inset: 12% 0 0;
	content: "";
	background: radial-gradient(ellipse at 52% 42%, transparent 0 28%, rgba(3, 3, 3, 0.95) 56%);
}

.schedule-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	align-items: center;
	gap: clamp(34px, 7vw, 120px);
	min-height: inherit;
}

.schedule-copy h2,
.schedule-date strong {
	margin: 0;
	color: var(--white);
	font-size: clamp(34px, 4.1vw, 62px);
	font-weight: 850;
	line-height: 0.96;
	text-shadow: 0 0 24px rgba(255, 255, 255, 0.28);
}

.schedule-button {
	margin-top: 34px;
	border-radius: 999px;
	padding-inline: 34px;
	text-transform: uppercase;
}

.schedule-date p {
	margin: 0 0 18px;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(22px, 2.6vw, 38px);
	font-weight: 760;
	line-height: 1.08;
}

.site-footer {
	background: #f8f8f6;
	color: var(--ink);
}

.footer-minimal {
	display: grid;
	grid-template-columns: 1.15fr 1.1fr 0.9fr 0.7fr;
	gap: clamp(28px, 7vw, 120px);
	padding: clamp(42px, 6vw, 78px) 16px clamp(64px, 8vw, 108px);
}

.footer-minimal p,
.footer-minimal address,
.footer-bottom p,
.footer-bottom a {
	color: #707070;
	font-style: normal;
	font-size: clamp(14px, 1.25vw, 19px);
	line-height: 1.5;
}

.footer-contact-line,
.footer-minimal strong,
.footer-minimal address span,
.social-stack a {
	display: block;
	color: #1d2730;
	font-size: clamp(15px, 1.3vw, 20px);
	font-weight: 430;
}

.footer-contact-line + .copy-btn {
	margin-bottom: 10px;
}

.copy-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	margin-left: 8px;
	border: 1px solid #b8b8b8;
	border-radius: 3px;
	background: transparent;
	color: transparent;
	font-size: 0;
	vertical-align: text-bottom;
}

.copy-btn::before {
	width: 9px;
	height: 9px;
	content: "";
	border: 1px solid #9b9b9b;
	box-shadow: 3px -3px 0 -1px #f8f8f6, 3px -3px 0 0 #b8b8b8;
}

.copy-btn.is-copied {
	border-color: var(--red);
}

.footer-minimal p {
	margin: 0 0 8px;
}

.social-stack {
	display: grid;
	gap: 12px;
	text-align: right;
}

.social-stack a:hover,
.footer-bottom a:hover,
.footer-contact-line:hover {
	color: var(--red);
}

.footer-bottom {
	display: grid;
	grid-template-columns: 1.35fr repeat(3, 1fr) auto;
	align-items: center;
	gap: 24px;
	padding: 34px 16px 42px;
	border-top: 1px solid rgba(8, 8, 8, 0.08);
	background: #f3f3f2;
}

.footer-bottom p {
	margin: 0;
}

.back-top {
	font-size: 30px !important;
	line-height: 1;
}

@keyframes testimonialSlide {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-50% - 21px));
	}
}

@keyframes scheduleDrift {
	from {
		transform: perspective(900px) rotateX(60deg) rotateZ(-9deg) translate3d(-1.5%, -11%, 0);
	}
	to {
		transform: perspective(900px) rotateX(62deg) rotateZ(-5deg) translate3d(1.5%, -6%, 0);
	}
}

.booking-modal[hidden] {
	display: none;
}

.booking-modal {
	position: fixed;
	inset: 0;
	z-index: 300;
	display: grid;
	place-items: center;
	padding: 20px;
	animation: worthyFade 260ms var(--ease);
}

.modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 8, 8, 0.76);
	backdrop-filter: blur(8px);
}

.modal-panel {
	position: relative;
	z-index: 1;
	width: min(100%, 760px);
	max-height: min(860px, calc(100vh - 40px));
	overflow: auto;
	padding: clamp(28px, 5vw, 56px);
	background: var(--paper);
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
	animation: worthyModal 420ms var(--ease);
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 18px;
	width: 40px;
	height: 40px;
	border: 0;
	background: transparent;
	font-size: 32px;
	line-height: 1;
}

.modal-progress {
	height: 3px;
	margin-bottom: 28px;
	background: rgba(8, 8, 8, 0.12);
}

.modal-progress span {
	display: block;
	width: 20%;
	height: 100%;
	background: var(--red);
	transition: width 320ms var(--ease);
}

.form-step {
	display: none;
}

.form-step.is-active {
	display: grid;
	gap: 18px;
}

.field-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.check-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.check-grid label {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid var(--line);
}

.check-grid input {
	width: auto;
	min-height: auto;
}

.modal-actions {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: 16px;
}

.form-message {
	min-height: 22px;
	margin: 0;
	color: var(--red);
	font-weight: 800;
}

.confirmation h2 {
	color: var(--red);
}

.reveal {
	opacity: 0;
	clip-path: inset(0 0 18% 0);
	transform: translateY(30px);
	transition: opacity 800ms var(--ease), transform 800ms var(--ease), clip-path 800ms var(--ease);
}

.reveal.is-visible {
	opacity: 1;
	clip-path: inset(0 0 0 0);
	transform: translateY(0);
}

.reveal.is-visible:nth-child(2) {
	transition-delay: 90ms;
}

.reveal.is-visible:nth-child(3) {
	transition-delay: 160ms;
}

.cursor-dot {
	position: fixed;
	z-index: 500;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--red);
	pointer-events: none;
	opacity: 0;
	transform: translate(-50%, -50%);
	transition: opacity 180ms var(--ease);
	mix-blend-mode: multiply;
}

@keyframes worthyMarquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@keyframes worthyScan {
	0%,
	100% {
		transform: scaleX(0.18);
	}
	50% {
		transform: scaleX(1);
	}
}

@keyframes worthyPulse {
	from {
		opacity: 0.9;
		transform: scale(0.78);
	}
	to {
		opacity: 0;
		transform: scale(1.36);
	}
}

@keyframes worthyFade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes worthyModal {
	from {
		opacity: 0;
		transform: translateY(24px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 1024px) {
	.header-inner {
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.site-nav {
		position: fixed;
		inset: 76px 0 auto;
		display: none;
		padding: 28px 20px;
		background: var(--paper);
		border-bottom: 1px solid var(--line);
	}

	.site-nav.is-open {
		display: block;
	}

	.nav-list {
		display: grid;
		justify-content: stretch;
		gap: 18px;
	}

	.nav-list a {
		font-size: 22px;
	}

	.menu-toggle {
		display: block;
	}

	.hero-grid,
	.split-layout,
	.service-block,
	.case-row {
		grid-template-columns: 1fr;
	}

	.hero-meta-strip {
		grid-template-columns: 1fr;
	}

	.hero-canvas {
		grid-template-columns: 1fr 0.72fr;
		grid-template-rows: minmax(300px, 1fr) 150px 120px;
		min-height: 620px;
	}

	.hero-panel-main {
		grid-column: 1 / span 2;
		grid-row: 1;
	}

	.hero-panel-red {
		grid-column: 1;
		grid-row: 2;
	}

	.hero-panel-work {
		grid-column: 2;
		grid-row: 2;
	}

	.hero-panel-dark {
		grid-column: 1;
		grid-row: 3;
	}

	.hero-panel-mini {
		grid-column: 2;
		grid-row: 3;
	}

	.service-block:nth-child(even) .service-copy {
		order: initial;
	}

	.service-card-grid,
	.featured-service-grid,
	.portfolio-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.thinking-grid,
	.timeline,
	.value-list.three,
	.team-grid,
	.gallery-grid,
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.timeline {
		gap: 28px;
	}

	.case-editorial-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	:root {
		--container: min(100% - 28px, 1320px);
	}

	.section {
		padding: 62px 0;
	}

	.header-cta {
		display: none;
	}

	.hero {
		min-height: auto;
		padding-top: 40px;
	}

	.hero-media,
	.hero-canvas {
		aspect-ratio: 0.9;
	}

	.hero-copy h1 {
		font-size: clamp(44px, 13vw, 68px);
	}

	.hero-meta-strip {
		grid-template-columns: 1fr;
	}

	.hero-meta-strip span {
		min-height: 74px;
	}

	.hero-canvas {
		display: block;
		min-height: auto;
		aspect-ratio: auto;
	}

	.hero-canvas::before,
	.hero-panel-red,
	.hero-panel-dark {
		display: none;
	}

	.hero-panel-main {
		height: 430px;
	}

	.hero-panel-work,
	.hero-panel-mini {
		height: 160px;
		margin-top: 8px;
	}

	.hero-live-card {
		right: 14px;
		bottom: 14px;
		width: calc(100% - 28px);
	}

	.showreel-track span {
		min-height: 54px;
		padding-inline: 28px;
		font-size: 14px;
	}

	.section-heading,
	.footer-bottom,
	.case-title-row,
	.modal-actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.service-card-grid,
	.featured-service-grid,
	.thinking-grid,
	.timeline,
	.value-list.three,
	.portfolio-grid,
	.team-grid,
	.gallery-grid,
	.info-grid,
	.footer-grid,
	.field-grid,
	.check-grid {
		grid-template-columns: 1fr;
	}

	.thinking-card {
		border-right: 0;
		border-bottom: 1px solid var(--line-dark);
	}

	.case-card.is-large {
		grid-row: span 1;
	}

	.case-nav {
		grid-template-columns: 1fr;
	}

	.case-nav > div:last-child {
		text-align: left;
	}

	.modal-panel {
		padding-top: 54px;
	}
}

@media (max-width: 1024px) {
	.schedule-inner,
	.footer-minimal,
	.footer-bottom {
		grid-template-columns: 1fr 1fr;
	}

	.social-stack {
		text-align: left;
	}
}

@media (max-width: 700px) {
	.applause-dot,
	.schedule-orb {
		left: 18px;
		width: 26px;
		height: 26px;
	}

	.applause-heading p {
		letter-spacing: 0.22em;
	}

	.testimonial-marquee {
		mask-image: none;
	}

	.testimonial-card {
		width: min(82vw, 360px);
		min-height: 360px;
		padding: 30px;
	}

	.schedule-call {
		min-height: 430px;
	}

	.schedule-inner,
	.footer-minimal,
	.footer-bottom {
		grid-template-columns: 1fr;
	}

	.schedule-inner {
		align-content: center;
	}

	.footer-minimal,
	.footer-bottom {
		padding-inline: 14px;
	}

	.social-stack {
		gap: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
		animation-duration: 0.001ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
		clip-path: none;
	}

	.showreel-track,
	.testimonial-track,
	.schedule-bg,
	.kinetic-frame::after,
	.play-pulse::after {
		animation: none !important;
	}
}
