:root {
	--bg: #090909;
	--bg-soft: #111;
	--bg-card: #151515;
	--text: #f5f1ea;
	--muted: #bfb7aa;
	--line: rgba(255, 255, 255, 0.08);
	--accent: #d0a86f;
	--accent-2: #e8c798;
	--shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
	--radius: 24px;
	--container: 1180px;
}
.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

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

/* RESET */
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: "Inter", sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
}

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

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

/* LAYOUT */
.container {
	width: min(calc(100% - 2rem), var(--container));
	margin: 0 auto;
}

.section {
	padding: 70px 0;
}

/* TYPOGRAPHY */
h1,
h2,
h3 {
	margin: 0;
	line-height: 1.05;
}

h1 {
	font-size: clamp(3rem, 6vw, 5.5rem);
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
}

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

.section-label,
.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.75rem;
	color: var(--accent-2);
	margin-bottom: 10px;
}
.project-media video {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

/* HEADER */
/* .header {
	position: sticky;
	top: 0;
	background: rgba(9, 9, 9, 0.85);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
	z-index: 999;
} */

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;

	background: rgba(0, 0, 0, 0.8); /* semi-transparent */
	backdrop-filter: blur(10px);     /* glass effect */
}

main {
	margin-top: 80px; /* adjust based on header height */
}

.header.scrolled {
	background: rgba(0, 0, 0, 0.95);
}

.nav-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 70px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
}

.brand-mark,
.brand-text {
	font-size: 1rem;
}

.brand-logo {
	width: 150px;
	height: auto;
	object-fit: contain;
}

.desktop-nav {
	display: flex;
	gap: 20px;
}

.desktop-nav a {
	opacity: 0.8;
}

.desktop-nav a:hover {
	opacity: 1;
}

/* IMPORTANT DESKTOP FIX */
.menu-toggle,
.mobile-menu {
	display: none;
}

/* HERO */
.hero {
	position: relative;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 40px;
	align-items: center;
	padding: 80px 0;
}


.hero-content {
	max-width: 520px;
}

.hero-subtext {
	font-size: 1.2rem;
	color: var(--text);
}

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

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

.btn {
	padding: 12px 20px;
	border-radius: 999px;
	border: 1px solid var(--line);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0 !important;
	padding: 12px 24px;
	border-radius: 999px;
	background: var(--accent);
	color: #111;
	border: none;
	cursor: pointer;
	font-weight: 700;
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.05);
}

/* HERO STATS */
.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 30px;
}

.hero-stats div {
	background: var(--bg-card);
	border: 1px solid var(--line);
	padding: 14px;
	border-radius: 16px;
}

.hero-stats strong {
	display: block;
	font-size: 1.3rem;
}

.hero-stats span {
	color: var(--muted);
	font-size: 0.9rem;
}

/* INTRO */
.intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
	align-items: start;
}

/* SECTION HEAD */
.section-head {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 30px;
}

.section-head h2 {
	max-width: 700px;
}

/* FILTER */
.filter-tabs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	padding: 6px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--line);
	border-radius: 999px;
}

.tab {
	padding: 8px 16px;
	border-radius: 999px;
	border: none;
	background: transparent;
	color: var(--muted);
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.25s ease;
}

.tab:hover {
	color: var(--text);
	background: rgba(255, 255, 255, 0.08);
}

.tab.active {
	background: var(--accent);
	color: #111;
	font-weight: 600;
}

/* PROJECT GRID */
.project-grid {
	display: grid;
	gap: 28px;
}

.project-card {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	border-radius: 28px;
	overflow: hidden;
	background: var(--bg-card);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	transition: 0.3s ease;
}

.project-card:nth-child(even) {
	grid-template-columns: 0.95fr 1.05fr;
}

.project-card:nth-child(even) .project-media {
	order: 2;
}

.project-media {
	min-height: 260px;
}

.project-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.project-body {
	padding: 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.project-body h3 {
	margin: 10px 0;
}

.project-body a {
	margin-top: 12px;
	color: var(--accent-2);
}

.pill {
	display: inline-flex;
	width: fit-content;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--accent-2);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* ABOUT */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
	align-items: center;
}

.section-dark {
	background: #070707;
}

.card-frame {
	border-radius: 28px;
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

/* SERVICES */
.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.service-card {
	padding: 24px;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

/* PRESS */
.section-accent {
	background: #0f0c08;
}

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

.press-card {
	padding: 22px;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.press-card span {
	color: var(--accent-2);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.75rem;
}

/* CTA */
.cta-inner {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 30px;
	align-items: center;
	padding: 40px;
	border-radius: 28px;
	background: linear-gradient(135deg, #16120d, #221a12);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-text h2 {
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	line-height: 1.1;
	max-width: 600px;
}

.cta-text .eyebrow {
	margin-bottom: 14px;
	color: var(--accent-2);
}

.cta-action {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.cta-action .btn-primary {
	padding: 14px 26px;
	font-size: 1rem;
}

/* CONTACT */
.contact-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 40px;
	align-items: start;
}

.contact-lead {
	max-width: 520px;
}

.contact-list {
	list-style: none;
	padding: 0;
	margin: 24px 0 0;
	display: grid;
	gap: 12px;
}

.contact-list a {
	color: var(--accent);
}

.contact-list a:hover {
	text-decoration: underline;
}

.contact-form {
	padding: 32px;
	border-radius: 24px;
	background: var(--bg-card);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.contact-form label {
	display: block;
	margin-bottom: 20px;
}

.contact-form span {
	display: block;
	margin-bottom: 8px;
	font-size: 0.9rem;
	color: #e6dccb;
	letter-spacing: 0.03em;
}

.field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 14px 16px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	color: var(--text);
	transition: all 0.2s ease;
	font-family: inherit;
}

.contact-form select {
	appearance: none;
	background-color: #111;
	color: #fff;
	border: 1px solid #333;
	outline: none;
	font-size: 14px;
	background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 16px;
}

.contact-form select option {
	background-color: #111;
	color: #fff;
}

.contact-form select option:checked {
	background-color: #2563eb;
	color: #000;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.4);
}

.contact-form textarea {
	min-height: 140px;
	resize: none;
}

.form-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.form-note {
	margin-top: 12px;
	font-size: 0.9rem;
	color: var(--muted);
}

/* FOOTER */
.footer {
	margin-top: 80px;
	padding: 60px 0 30px;
	border-top: 1px solid var(--line);
	background: linear-gradient(180deg, #0b0b0b, #090909);
}

.footer-wrap {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 40px;
	align-items: start;
}

.footer-brand h3 {
	font-size: 1.3rem;
	margin-bottom: 10px;
}

.footer-brand p {
	max-width: 420px;
	font-size: 0.95rem;
	color: var(--muted);
}

.footer-links {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.footer-links a {
	font-size: 0.95rem;
	color: var(--muted);
	position: relative;
	transition: 0.3s ease;
}

.footer-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0%;
	height: 1px;
	background: var(--accent);
	transition: 0.3s ease;
}

.footer-links a:hover {
	color: var(--text);
}

.footer-links a:hover::after {
	width: 100%;
}

.footer-bottom {
	margin-top: 40px;
	padding-top: 16px;
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: var(--muted);
}

.footer-social {
	display: flex;
	gap: 14px;
}

.footer-social a {
	opacity: 0.7;
	transition: 0.3s ease;
}

.footer-social a:hover {
	opacity: 1;
	transform: translateY(-2px);
}

/* TOAST */
.toast {
	position: fixed;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -60%) scale(0.9);

	background: #111;
	color: #fff;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: 14px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.3);

	opacity: 0;
	transition: all 0.3s ease;
	z-index: 9999;
}


.toast.show {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

/* LOADER */
.loader-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s ease;
	z-index: 9999;
}

.loader-overlay.show {
	opacity: 1;
	visibility: visible;
}

.loader-spinner {
	width: 50px;
	height: 50px;
	border: 4px solid var(--accent);
	border-top: 4px solid transparent;
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* =========================
   PREMIUM MOBILE UX
========================= */

@media (max-width: 980px) {
	.container {
		width: min(100% - 24px, 720px);
	}

	.header {
		background: rgba(9, 9, 9, 0.9);
		backdrop-filter: blur(18px);
	}

	.nav-wrap {
		min-height: 72px;
	}

	.desktop-nav {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
		gap: 5px;
		width: 44px;
		height: 44px;
		border: 1px solid rgba(255, 255, 255, 0.14);
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.06);
		cursor: pointer;
		color: var(--text);
	}

	.menu-toggle span {
		display: block;
		width: 18px;
		height: 2px;
		margin: 0 auto;
		background: currentColor;
		transition: transform 0.25s ease, opacity 0.25s ease;
	}

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

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

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

	.mobile-menu {
		position: fixed;
		inset: 80px 12px auto 12px;
		z-index: 998;
		display: grid;
		gap: 8px;
		padding: 16px;
		border-radius: 24px;
		background: rgba(15, 15, 15, 0.94);
		backdrop-filter: blur(20px);
		border: 1px solid rgba(255, 255, 255, 0.12);
		box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
		transform: translateY(-14px);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.25s ease, transform 0.25s ease;
	}

	.mobile-menu.is-open {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}

	.mobile-menu a {
		padding: 14px 16px;
		border-radius: 16px;
		color: #fff;
		background: rgba(255, 255, 255, 0.04);
	}

	.hero {
		display: block;
		padding: 54px 0 42px;
	}

	.hero-content {
		max-width: none;
	}

	.hero-content h1 {
		font-size: clamp(2.7rem, 12vw, 4.2rem);
		line-height: 0.96;
		max-width: 8ch;
	}

	.hero-subtext {
		font-size: 1.1rem;
		max-width: 28ch;
	}

	.hero-copy {
		max-width: 34ch;
		font-size: 0.96rem;
	}

	.hero-actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 24px;
	}

	.hero-actions .btn {
		width: 100%;
		justify-content: center;
		min-height: 52px;
	}

	.hero-stats {
		grid-template-columns: 1fr;
		gap: 10px;
		margin-top: 24px;
	}

	.hero-stats div {
		border-radius: 18px;
		padding: 16px;
	}

	.section {
		padding: 52px 0;
	}

	.intro-grid,
	.about-grid,
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.section-head {
		gap: 14px;
	}

	.section-head h2,
	.intro-grid h2,
	.about-copy h2,
	.contact-grid h2,
	.cta-inner h2 {
		font-size: clamp(1.8rem, 8vw, 2.7rem);
		line-height: 1.02;
	}

	.filter-tabs {
		width: 100%;
		display: flex;
		flex-wrap: nowrap;
		gap: 10px;
		overflow-x: auto;
		padding: 6px;
		scroll-snap-type: x mandatory;
		border-radius: 999px;
	}

	.filter-tabs::-webkit-scrollbar {
		display: none;
	}

	.tab {
		flex: 0 0 auto;
		scroll-snap-align: start;
		min-height: 42px;
		padding: 10px 16px;
	}

	.project-card,
	.project-card:nth-child(even) {
		grid-template-columns: 1fr;
	}

	.project-card:nth-child(even) .project-media {
		order: initial;
	}

	.project-media {
		min-height: auto;
	}

	.project-media img {
		height: 260px;
		width: 100%;
		object-fit: cover;
	}

	.project-body {
		padding: 22px;
	}

	.services-grid,
	.press-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.cta-inner {
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 28px 22px;
	}

	.cta-action {
		justify-content: flex-start;
		width: 100%;
	}

	.cta-action .btn-primary {
		width: 100%;
	}

	.field-row {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.contact-form {
		padding: 22px;
	}

	.contact-form input,
	.contact-form select,
	.contact-form textarea {
		min-height: 48px;
		font-size: 16px;
	}

	.contact-form textarea {
		min-height: 130px;
	}

	.form-actions .btn-primary {
		width: 100%;
		min-height: 52px;
	}

	.contact-list li {
		word-break: break-word;
	}

	.footer-wrap {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer-links {
		justify-content: flex-start;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 10px;
		align-items: flex-start;
	}
}

@media (max-width: 520px) {
	.brand {
		gap: 4px;
	}

	.brand-mark,
	.brand-text {
		font-size: 0.9rem;
	}

	.hero-content h1 {
		font-size: clamp(2.45rem, 14vw, 3.6rem);
	}

	.section {
		padding: 44px 0;
	}

	.project-media img {
		height: 235px;
	}

	.toast {
		left: 16px;
		right: 16px;
		bottom: 16px;
		top: auto;
		width: auto;
		transform: translateY(20px);
	}

	.toast.show {
		transform: translateY(0);
	}
}

/* =========================
   ENTERTAINMENT INDUSTRY ANIMATION UPGRADE
========================= */

/* Cinematic background texture */
.site-shell {
	position: relative;
	overflow: hidden;
}

.site-shell::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: -1;
	background:
		radial-gradient(circle at 20% 20%, rgba(208, 168, 111, 0.08), transparent 28%),
		radial-gradient(circle at 80% 30%, rgba(232, 199, 152, 0.06), transparent 30%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

/* Film grain effect */
.site-shell::after {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 99999;
	opacity: 0.035;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
	mix-blend-mode: screen;
}

/* Hero cinematic animation */
.hero-content {
	animation: heroFadeUp 0.9s ease both;
}

@keyframes heroFadeUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero h1 {
	position: relative;
	background: linear-gradient(90deg, #fff, #e8c798, #fff);
	background-size: 200% auto;
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	animation: titleShine 5s linear infinite;
}

@keyframes titleShine {
	to {
		background-position: 200% center;
	}
}

/* Marquee strip for entertainment feel */
.intro-strip {
	position: relative;
	overflow: hidden;
}

.intro-strip::after {
	content: "FILMS  •  MUSIC VIDEOS  •  AI ADS  •  WEB SERIES  •  COMMERCIALS  •  BRAND STORIES";
	position: absolute;
	left: 0;
	bottom: 10px;
	white-space: nowrap;
	font-size: clamp(2rem, 7vw, 5rem);
	font-weight: 800;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.035);
	animation: marqueeMove 26s linear infinite;
}

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

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

/* Reveal animation */
.reveal {
	opacity: 0;
	transform: translateY(34px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Project card premium hover */
.project-card {
	position: relative;
	isolation: isolate;
}

.project-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(120deg,
			transparent,
			rgba(208, 168, 111, 0.12),
			transparent);
	transform: translateX(-120%);
	transition: transform 0.6s ease;
}

.project-card:hover::before {
	transform: translateX(120%);
}

.project-card:hover {
	transform: translateY(-8px);
	border-color: rgba(208, 168, 111, 0.28);
}

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

.project-media {
	overflow: hidden;
}

.project-media img {
	transition: transform 0.7s ease;
}

/* Service card glow */
.service-card,
.press-card {
	transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover,
.press-card:hover {
	transform: translateY(-6px);
	border-color: rgba(208, 168, 111, 0.26);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

/* Cinematic CTA pulse */
.cta-inner {
	position: relative;
	overflow: hidden;
}

.cta-inner::after {
	content: "";
	position: absolute;
	inset: -60%;
	background: conic-gradient(from 180deg,
			transparent,
			rgba(208, 168, 111, 0.18),
			transparent,
			rgba(232, 199, 152, 0.12),
			transparent);
	animation: rotateGlow 10s linear infinite;
	z-index: 0;
}

.cta-inner>* {
	position: relative;
	z-index: 1;
}

@keyframes rotateGlow {
	to {
		transform: rotate(360deg);
	}
}

/* Button magnetic-like hover */
.btn,
.btn-primary,
.btn-secondary {
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(208, 168, 111, 0.18);
}

/* Press cards cinematic quote look */
.press-card h3 {
	color: var(--text);
}

.press-card p {
	font-style: italic;
}

/* Contact form premium focus */
.contact-form {
	position: relative;
	overflow: hidden;
}

.contact-form::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 24px;
	pointer-events: none;
	background: linear-gradient(135deg,
			rgba(208, 168, 111, 0.12),
			transparent 35%,
			transparent 70%,
			rgba(232, 199, 152, 0.08));
}

.contact-form>* {
	position: relative;
	z-index: 1;
}

/* Footer cinematic line */
.footer {
	position: relative;
}

.footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 8%;
	right: 8%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Mobile animation tuning */
@media (max-width: 768px) {
	.intro-strip::after {
		font-size: 2.4rem;
		bottom: 0;
	}

	.project-card:hover {
		transform: none;
	}

	.service-card:hover,
	.press-card:hover {
		transform: none;
	}

	.project-media video {
    height: 235px;
  }
}

/* =========================
   AI + PRODUCTION HOUSE UI UPGRADE
========================= */

.hero {
	position: relative;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 30px 0 auto auto;
	width: 420px;
	height: 420px;
	background:
		radial-gradient(circle, rgba(208, 168, 111, 0.16), transparent 60%),
		radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.12), transparent 55%);
	filter: blur(30px);
	pointer-events: none;
	opacity: 0.8;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-content::after {
	content: "AI WORKFLOW ACTIVE";
	display: inline-flex;
	margin-top: 26px;
	padding: 9px 13px;
	border-radius: 999px;
	border: 1px solid rgba(208, 168, 111, 0.22);
	background: rgba(208, 168, 111, 0.08);
	color: var(--accent-2);
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	font-weight: 800;
}

.hero h1 {
	text-shadow: 0 0 40px rgba(208, 168, 111, 0.08);
}

.eyebrow {
	color: var(--accent-2);
}

/* AI scan line */
.hero-content::before {
	content: "";
	position: absolute;
	left: 0;
	top: -18px;
	width: 180px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--accent), transparent);
	animation: aiScanLine 2.8s ease-in-out infinite;
}

@keyframes aiScanLine {
	0% {
		transform: translateX(0);
		opacity: 0.15;
	}

	50% {
		transform: translateX(120px);
		opacity: 0.9;
	}

	100% {
		transform: translateX(0);
		opacity: 0.15;
	}
}

/* Service chips */
.service-card {
	position: relative;
	overflow: hidden;
}

.service-chip {
	display: inline-flex;
	margin-bottom: 14px;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(208, 168, 111, 0.08);
	border: 1px solid rgba(208, 168, 111, 0.18);
	color: var(--accent-2);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.13em;
	font-weight: 800;
}

.ai-service {
	background:
		radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 42%),
		linear-gradient(180deg, #191511, #111);
}

.service-card::after {
	content: "";
	position: absolute;
	inset: auto 20px 20px 20px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(208, 168, 111, 0.55), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.service-card:hover::after {
	opacity: 1;
}

/* Production pipeline strip */
.services-grid {
	position: relative;
}

.services-grid::before {
	content: "CONCEPT  →  PRODUCTION  →  POST  →  DELIVERY";
	position: absolute;
	top: -34px;
	left: 0;
	color: rgba(232, 199, 152, 0.38);
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	font-weight: 800;
}

/* Make project cards feel AI/production-led */
.project-body::before {
	content: "AI + PRODUCTION READY";
	display: inline-flex;
	width: fit-content;
	margin-bottom: 12px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.12);
	color: #9bbcff;
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	font-weight: 800;
}

/* Contact form feels more project-intake oriented */
.contact-form::after {
	content: "Project Intake · Production Planning · AI Assisted Workflow";
	display: block;
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid var(--line);
	color: var(--accent-2);
	font-size: 0.78rem;
	letter-spacing: 0.08em;
}

/* Mobile tuning */
@media (max-width: 768px) {
	.hero::before {
		width: 260px;
		height: 260px;
		opacity: 0.55;
	}

	.services-grid::before {
		position: static;
		display: block;
		margin-bottom: 16px;
		line-height: 1.7;
	}

	.hero-content::before {
		display: none;
	}
}

/* HERO VIDEO BACKGROUND */
.hero {
	position: relative;
	overflow: hidden;
}

.hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.95) contrast(1.1);
}

/* cinematic overlay */
.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)),
		radial-gradient(circle at 30% 30%, rgba(208, 168, 111, 0.18), transparent 40%);
}

/* content stays above video */
.hero-content {
	position: relative;
	z-index: 2;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.2),
			rgba(0, 0, 0, 0.6) 60%,
			#090909 100%);
	z-index: 1;
}

@media (max-width: 768px) {
	.hero-media video {
		display: none;
	}

	.hero-media {
		background: url('assets/hero-fallback.jpg') center/cover no-repeat;
	}
}

.hero-media video {
	animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
	from {
		transform: scale(1);
	}

	to {
		transform: scale(1.08);
	}
}

/* =========================
   PROJECT MODAL
========================= */

.view-more-btn {
	width: fit-content;
	margin-top: 12px;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid rgba(208, 168, 111, 0.35);
	background: rgba(208, 168, 111, 0.08);
	color: var(--accent-2);
	font-weight: 700;
	cursor: pointer;
	transition: 0.25s ease;
}

.view-more-btn:hover {
	background: var(--accent);
	color: #111;
	transform: translateY(-2px);
}

.project-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.project-modal.is-open {
	display: flex;
}

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

.project-modal-box {
	position: relative;
	z-index: 2;
	width: min(920px, 100%);
	max-height: 90vh;
	overflow-y: auto;
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	background: #111;
	border: 1px solid var(--line);
	border-radius: 28px;
	box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 3;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 1.8rem;
	cursor: pointer;
}

.modal-media {
	min-height: 420px;
	background: #000;
}

.modal-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.modal-content {
	padding: 34px;
}

.modal-content h2 {
	margin: 16px 0;
	font-size: clamp(2rem, 4vw, 3rem);
}

.modal-details {
	display: grid;
	gap: 14px;
	margin: 24px 0;
}

.modal-details div {
	padding: 14px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--line);
}

.modal-details strong {
	display: block;
	color: var(--accent-2);
	margin-bottom: 4px;
}

.modal-details span {
	color: var(--muted);
}

.modal-cta {
	margin-top: 8px;
}

@media (max-width: 768px) {
	.project-modal-box {
		grid-template-columns: 1fr;
	}

	.modal-media {
		min-height: 240px;
	}

	.modal-content {
		padding: 24px;
	}
}

.about-offers {
	margin: 20px 0;
}

.about-offers p {
	margin-bottom: 10px;
	color: var(--text);
}

.about-offers ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.about-offers li {
	color: var(--muted);
	padding: 10px 12px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--line);
}

.hide {
	display: none !important;
}
