/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Hanlding Updates
-----------------------------------------------------------------*/
*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
	--ink: #16181c;
	--muted: #626975;
	--line: #e2e5ea;
	--paper: #f6f4f1;
	--surface: #ffffff;
	--dark: #101418;
	--dark-soft: #171c22;
	--accent: #e2232a;
	--accent-dark: #a8141a;
	--blue: #177cc1;
	--green: #72a843;
	--shadow: 0 18px 45px rgba(18, 23, 30, 0.12);
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--surface);
	color: var(--ink);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0;
	overflow-x: hidden;
}

body.nav-open {
	overflow: hidden;
}

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

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

button,
input,
select,
textarea {
	font: inherit;
	letter-spacing: 0;
}

section {
	scroll-margin-top: 96px;
}

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

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	border-bottom: 1px solid rgba(226, 229, 234, 0.9);
	backdrop-filter: blur(14px);
}

.header-inner {
	min-height: 88px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.brand {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
}

.brand img {
	width: 150px;
	height: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	font-size: 15px;
	font-weight: 800;
	color: #2d3239;
}

.site-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	padding: 12px 14px;
	border-radius: 6px;
	white-space: nowrap;
	transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
	background: #f1f3f6;
	color: var(--accent);
	outline: none;
}

.site-nav a.is-current {
	background: #f1f3f6;
	color: var(--accent);
}

.site-nav .nav-cta {
	margin-left: 6px;
	padding-inline: 18px;
	background: var(--accent);
	color: #fff;
	box-shadow: 0 10px 24px rgba(226, 35, 42, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
	background: var(--accent-dark);
	color: #fff;
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	color: var(--ink);
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.hero {
	min-height: 86svh;
	display: flex;
	align-items: center;
	padding: 132px 0 72px;
	color: #fff;
	background:
		linear-gradient(90deg, rgba(8, 12, 16, 0.95) 0%, rgba(8, 12, 16, 0.78) 36%, rgba(8, 12, 16, 0.22) 70%, rgba(8, 12, 16, 0.08) 100%),
		url("../images/touch-ajans-hero.png") center / cover no-repeat;
}

.hero-content {
	width: calc(100% - 40px);
	max-width: 1160px;
}

.page-hero {
	padding: 142px 0 72px;
	background:
		linear-gradient(90deg, rgba(8, 12, 16, 0.92), rgba(8, 12, 16, 0.68)),
		url("../images/touch-ajans-hero.png") center / cover no-repeat;
	color: #fff;
}

.page-hero h1 {
	max-width: 840px;
	margin: 0;
	font-size: 54px;
	line-height: 1.08;
	font-weight: 800;
}

.page-hero p:not(.eyebrow) {
	max-width: 680px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 19px;
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	font-weight: 700;
}

.breadcrumb a {
	color: #fff;
}

.breadcrumb span::before {
	content: "/";
	margin-right: 8px;
	color: rgba(255, 255, 255, 0.45);
}

.seo-copy {
	max-width: 820px;
}

.seo-copy h2 {
	margin: 0 0 18px;
	font-size: 38px;
	line-height: 1.18;
}

.seo-copy p {
	margin: 0 0 18px;
	color: var(--muted);
	font-size: 18px;
}

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

.detail-card {
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(18, 23, 30, 0.05);
}

.detail-card h2,
.detail-card h3 {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.25;
}

.detail-card p,
.detail-card li {
	color: var(--muted);
}

.detail-card ul {
	display: grid;
	gap: 8px;
	margin: 14px 0 0;
	padding-left: 18px;
}

.process-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	counter-reset: process;
}

.process-list article {
	position: relative;
	padding: 28px;
	border-radius: 8px;
	background: var(--dark);
	color: #fff;
	counter-increment: process;
}

.process-list article::before {
	content: counter(process, decimal-leading-zero);
	display: block;
	margin-bottom: 22px;
	color: #ff6267;
	font-weight: 800;
}

.process-list h3 {
	margin: 0 0 10px;
	font-size: 20px;
}

.process-list p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
}

.page-cta {
	padding: 48px;
	border-radius: 8px;
	background: var(--dark);
	color: #fff;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
}

.page-cta h2 {
	margin: 0 0 10px;
	font-size: 34px;
	line-height: 1.18;
}

.page-cta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
}

.content-media {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
	gap: 48px;
	align-items: center;
}

.content-media img {
	width: 100%;
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.eyebrow {
	margin: 0 0 14px;
	color: var(--accent);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.hero .eyebrow,
.section-ink .eyebrow,
.quote-section .eyebrow,
.production-section .eyebrow {
	color: #ff6267;
}

.hero h1 {
	max-width: 700px;
	margin: 0;
	font-size: 64px;
	line-height: 1.02;
	font-weight: 800;
	overflow-wrap: break-word;
}

.hero-lead {
	max-width: 620px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 19px;
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 22px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-weight: 800;
	line-height: 1.2;
	cursor: pointer;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-1px);
	outline: none;
}

.button-primary {
	background: var(--accent);
	color: #fff;
	box-shadow: 0 14px 30px rgba(226, 35, 42, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
	background: var(--accent-dark);
	color: #fff;
}

.button-light {
	border-color: rgba(255, 255, 255, 0.54);
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

.button-light:hover,
.button-light:focus-visible {
	background: #fff;
	color: var(--ink);
}

.hero-proof {
	width: min(760px, 100%);
	margin-top: 48px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(10, 14, 18, 0.52);
	backdrop-filter: blur(12px);
}

.hero-proof div {
	padding: 18px;
	border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof div:last-child {
	border-right: 0;
}

.hero-proof strong {
	display: block;
	font-size: 18px;
	color: #fff;
}

.hero-proof span {
	display: block;
	margin-top: 3px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
}

.trust-strip {
	background: var(--dark);
	color: #fff;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(255, 255, 255, 0.12);
}

.trust-grid div {
	min-height: 96px;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 22px;
	background: var(--dark);
}

.trust-grid i {
	color: var(--green);
	font-size: 28px;
}

.trust-grid span {
	font-weight: 700;
	line-height: 1.35;
}

.section {
	padding: 92px 0;
}

.section-soft {
	background: var(--paper);
}

.split-section {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
	gap: 68px;
	align-items: start;
}

.section-title h2,
.section-heading h2,
.quote-copy h2,
.production-panel h2,
.contact-grid h2 {
	margin: 0;
	color: var(--ink);
	font-size: 42px;
	line-height: 1.14;
	font-weight: 800;
	overflow-wrap: break-word;
}

.section-title p:not(.eyebrow),
.section-copy p,
.quote-copy p,
.production-panel p,
.contact-grid p {
	margin: 0 0 18px;
	color: var(--muted);
	font-size: 18px;
}

.section-heading {
	max-width: 760px;
	margin-bottom: 44px;
}

.pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 26px;
}

.pill-list span {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 8px 13px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	font-size: 14px;
	font-weight: 700;
}

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

.service-card {
	min-height: 244px;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(18, 23, 30, 0.05);
}

.service-card i,
.digital-grid i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 20px;
	border-radius: 8px;
	background: rgba(226, 35, 42, 0.09);
	color: var(--accent);
	font-size: 25px;
}

.service-card h2,
.service-card h3,
.talent-item h2,
.talent-item h3,
.digital-grid h2,
.digital-grid h3 {
	margin: 0 0 10px;
	font-size: 21px;
	line-height: 1.25;
}

.service-card p,
.talent-item p,
.digital-grid p {
	margin: 0;
	color: var(--muted);
}

.card-link,
.text-link {
	display: inline-flex;
	align-items: center;
	margin-top: 18px;
	color: var(--accent);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
}

.card-link:hover,
.card-link:focus-visible,
.text-link:hover,
.text-link:focus-visible {
	color: var(--accent-dark);
	outline: none;
}

.section-ink .text-link,
.production-panel .text-link {
	color: #fff;
}

.section-ink .text-link:hover,
.section-ink .text-link:focus-visible,
.production-panel .text-link:hover,
.production-panel .text-link:focus-visible {
	color: rgba(255, 255, 255, 0.72);
}

.projects-section {
	background: #fff;
}

.projects-heading {
	max-width: 820px;
	margin: 0 auto 58px;
	text-align: center;
}

.projects-heading h2 {
	margin: 0;
	color: #585a60;
	font-size: 58px;
	line-height: 1.08;
	font-weight: 800;
	text-transform: uppercase;
}

.projects-heading p:not(.eyebrow) {
	max-width: 640px;
	margin: 18px auto 0;
	color: var(--muted);
	font-size: 18px;
}

.project-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 48px;
}

.project-filters button {
	min-height: 42px;
	padding: 9px 16px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: transparent;
	color: #61656d;
	font-weight: 800;
	cursor: pointer;
	transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.project-filters button::after {
	content: "";
	display: inline-block;
	width: 4px;
	height: 4px;
	margin-left: 18px;
	border-radius: 50%;
	background: #c4c7ce;
	vertical-align: middle;
}

.project-filters button:last-child::after {
	display: none;
}

.project-filters button:hover,
.project-filters button:focus-visible,
.project-filters button.is-active {
	border-color: rgba(226, 35, 42, 0.18);
	background: rgba(226, 35, 42, 0.07);
	color: var(--accent);
	outline: none;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-flow: dense;
	gap: 26px;
}

.project-card {
	position: relative;
	overflow: hidden;
	min-height: 360px;
	border-radius: 8px;
	background: var(--dark);
	box-shadow: var(--shadow);
	transition: transform 180ms ease, opacity 180ms ease;
}

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

.project-card:hover {
	transform: translateY(-3px);
}

.project-card-wide {
	grid-column: span 2;
}

.project-card-tall {
	grid-row: span 2;
	min-height: 746px;
}

.project-card img {
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	transition: transform 320ms ease;
}

.project-card:hover img {
	transform: scale(1.035);
}

.project-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(12, 16, 20, 0.04) 20%, rgba(12, 16, 20, 0.88) 100%);
	pointer-events: none;
}

.project-card-body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 26px;
	color: #fff;
}

.project-card-body span {
	display: block;
	margin-bottom: 9px;
	color: #ff6267;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.project-card-body h2,
.project-card-body h3 {
	margin: 0 0 8px;
	color: #fff;
	font-size: 23px;
	line-height: 1.22;
}

.project-card-body p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
}

.section-ink {
	background: var(--dark);
	color: #fff;
}

.talent-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: 44px;
	align-items: center;
}

.section-ink .section-title h2,
.section-ink .section-title p {
	color: #fff;
}

.section-ink .section-title p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.72);
}

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

.talent-item {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	background: var(--dark-soft);
}

.talent-item img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	background: #e7e7e7;
}

.talent-item h3,
.talent-item p {
	padding: 0 18px;
}

.talent-item h3 {
	margin-top: 18px;
	color: #fff;
}

.talent-item p {
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.68);
}

.production-section {
	color: #fff;
	background:
		linear-gradient(90deg, rgba(13, 17, 22, 0.94), rgba(13, 17, 22, 0.82)),
		url("../images/events/parallax/home.jpg") center / cover fixed;
}

.production-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
	gap: 48px;
	align-items: center;
	padding: 56px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(8, 12, 16, 0.5);
}

.production-panel h2,
.production-panel p {
	color: #fff;
}

.production-panel p {
	color: rgba(255, 255, 255, 0.76);
}

.check-list {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 16px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.88);
	font-weight: 700;
}

.check-list i {
	margin-top: 3px;
	color: var(--green);
}

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

.digital-grid article {
	padding: 26px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
}

.quote-section {
	background: var(--dark);
	color: #fff;
}

.quote-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
	gap: 56px;
	align-items: start;
}

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

.quote-copy p {
	color: rgba(255, 255, 255, 0.72);
}

.contact-lines {
	display: grid;
	gap: 12px;
	margin-top: 30px;
}

.contact-lines a,
.contact-card a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
}

.contact-lines i,
.contact-card i {
	color: var(--accent);
}

.quote-form {
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: #fff;
	color: var(--ink);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.quote-form label {
	display: block;
	margin: 0 0 7px;
	font-size: 13px;
	font-weight: 800;
	color: #333942;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
	width: 100%;
	margin: 0 0 16px;
	padding: 13px 14px;
	border: 1px solid #d8dde5;
	border-radius: 8px;
	background: #fff;
	color: var(--ink);
	outline: none;
}

.quote-form textarea {
	resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(226, 35, 42, 0.12);
}

.quote-form .button {
	width: 100%;
	margin-top: 4px;
	border: 0;
}

.botcheck {
	position: absolute;
	left: -9999px;
	width: 1px !important;
	height: 1px;
	opacity: 0;
}

.form-message {
	display: none;
	margin: 0 0 16px;
	padding: 12px 14px;
	border-radius: 8px;
	font-weight: 700;
}

.form-message:not(:empty) {
	display: block;
	background: #f2f4f7;
	color: #303641;
}

.form-message.is-success {
	background: #eaf6ec;
	color: #23622b;
}

.form-message.is-error {
	background: #fdeced;
	color: #9b181e;
}

.contact-section {
	background: #fff;
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
	gap: 48px;
	align-items: center;
}

.contact-card {
	display: grid;
	gap: 16px;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--paper);
}

.social-links {
	display: flex;
	gap: 10px;
	margin-top: 6px;
}

.social-links a {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: #fff;
	border: 1px solid var(--line);
}

.site-footer {
	padding: 34px 0;
	border-top: 1px solid var(--line);
	background: #fff;
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.footer-inner img {
	width: 122px;
}

.footer-inner nav {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	font-weight: 700;
}

.footer-inner p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

@media (max-width: 1120px) {
	.nav-toggle {
		display: inline-flex;
	}

	.site-nav {
		position: absolute;
		top: calc(100% + 10px);
		right: 20px;
		width: calc(100vw - 40px);
		max-width: 380px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		padding: 12px;
		border: 1px solid var(--line);
		border-radius: 8px;
		background: #fff;
		box-shadow: var(--shadow);
	}

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

	.site-nav a {
		justify-content: flex-start;
	}

	.site-nav .nav-cta {
		margin-left: 0;
		justify-content: center;
	}
}

@media (max-width: 920px) {
	.hero h1 {
		font-size: 44px;
	}

	.hero-proof,
	.trust-grid,
	.service-grid,
	.detail-grid,
	.process-list,
	.content-media,
	.projects-grid,
	.talent-layout,
	.talent-grid,
	.production-panel,
	.split-section,
	.digital-grid,
	.quote-layout,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.hero-proof div {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	}

	.hero-proof div:last-child {
		border-bottom: 0;
	}

	.trust-grid {
		gap: 0;
	}

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

	.production-panel {
		padding: 34px;
	}

	.page-cta {
		grid-template-columns: 1fr;
	}

	.project-card-wide,
	.project-card-tall {
		grid-column: auto;
		grid-row: auto;
	}

	.project-card,
	.project-card-tall {
		min-height: 420px;
	}
}

@media (max-width: 700px) {
	.container,
	.hero-content {
		width: 100%;
		max-width: none;
		padding-left: 14px;
		padding-right: 14px;
	}

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

	.brand img {
		width: 126px;
	}

	.nav-toggle {
		position: absolute;
		top: 15px;
		right: 14px;
		z-index: 1002;
	}

	.hero {
		min-height: auto;
		padding: 118px 0 58px;
		background:
			linear-gradient(90deg, rgba(8, 12, 16, 0.96) 0%, rgba(8, 12, 16, 0.86) 58%, rgba(8, 12, 16, 0.48) 100%),
			url("../images/touch-ajans-hero.png") 64% center / cover no-repeat;
	}

	.page-hero {
		padding: 112px 0 56px;
	}

	.hero h1,
	.page-hero h1,
	.section-title h2,
	.section-heading h2,
	.projects-heading h2,
	.seo-copy h2,
	.quote-copy h2,
	.production-panel h2,
	.contact-grid h2 {
		font-size: 32px;
		line-height: 1.16;
	}

	.hero h1,
	.hero-lead,
	.hero .eyebrow {
		max-width: 100%;
	}

	.hero-lead,
	.page-hero p:not(.eyebrow),
	.section-title p:not(.eyebrow),
	.section-copy p,
	.seo-copy p,
	.quote-copy p,
	.production-panel p,
	.contact-grid p {
		font-size: 16px;
	}

	.hero-actions,
	.button {
		width: 100%;
	}

	.section {
		padding: 64px 0;
	}

	.projects-heading {
		margin-bottom: 34px;
		text-align: left;
	}

	.projects-heading p:not(.eyebrow) {
		margin-left: 0;
		margin-right: 0;
	}

	.project-filters {
		justify-content: flex-start;
		gap: 8px;
		margin-bottom: 28px;
	}

	.project-filters button {
		min-height: 38px;
		padding: 8px 12px;
		font-size: 14px;
	}

	.project-filters button::after {
		display: none;
	}

	.project-card,
	.project-card-tall {
		min-height: 360px;
	}

	.project-card-body {
		padding: 22px;
	}

	.talent-grid {
		grid-template-columns: 1fr;
	}

	.production-section {
		background-attachment: scroll;
	}

	.quote-form {
		padding: 22px;
	}

	.page-cta {
		padding: 28px;
	}

	.page-cta h2 {
		font-size: 28px;
	}

	.footer-inner {
		align-items: flex-start;
		flex-direction: column;
	}
}
