:root {
  --black: #050505;
  --ink: #101010;
  --panel: #141414;
  --panel-2: #1d1a14;
  --text: #f8f4ec;
  --muted: #b9b1a3;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #f4a000;
  --gold-2: #ffc247;
  --white: #ffffff;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), padding 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.84);
  border-color: var(--line);
  backdrop-filter: blur(18px);
  padding-block: 12px;
}

.brand img {
  width: 148px;
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5));
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav a {
  transition: color 0.25s var(--ease);
}

.nav a:hover {
  color: var(--gold-2);
}

.nav-cta {
  border: 1px solid rgba(244, 160, 0, 0.55);
  padding: 10px 15px;
  color: var(--gold-2);
}

.menu-toggle {
  display: none;
}

.section-dark {
  background: var(--black);
}

.section-panel {
  background: linear-gradient(180deg, #0b0b0b, #15120d);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 5vw, 72px) 34px;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 38% 30%, rgba(244, 160, 0, 0.2), transparent 25%),
    radial-gradient(circle at 74% 24%, rgba(255, 255, 255, 0.15), transparent 24%),
    radial-gradient(circle at 16% 80%, rgba(255, 255, 255, 0.06), transparent 25%);
  mix-blend-mode: screen;
}

.hero-media,
.hero-media video,
.hero-media img,
.cta-bg,
.cta-bg img {
  position: absolute;
  inset: 0;
}

.hero-media video,
.hero-media img,
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(0.82);
  transform: scale(1.01);
  animation: slowZoom 22s ease-in-out infinite alternate;
}

.hero-media img {
  object-position: 50% 42%;
}

.hero-poster {
  opacity: 0.22;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-media::after,
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.82) 0%, rgba(5, 5, 5, 0.34) 34%, rgba(5, 5, 5, 0.08) 64%, rgba(5, 5, 5, 0.48) 100%),
    linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0.28) 24%, rgba(5, 5, 5, 0) 58%);
}

.film-grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.38) 0 1px, transparent 1px);
  background-size: 7px 7px;
  mix-blend-mode: overlay;
}

.scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(244, 160, 0, 0.14), transparent);
  height: 34%;
  top: -34%;
  animation: scan 7s ease-in-out infinite;
}

.hero-mark {
  position: absolute;
  right: clamp(-170px, -3vw, -40px);
  top: 8vh;
  width: min(52vw, 720px);
  opacity: 0.13;
  mix-blend-mode: screen;
  filter: blur(0.2px) drop-shadow(0 0 44px rgba(244, 160, 0, 0.4));
}

.flight-path {
  position: absolute;
  z-index: 2;
  right: 14vw;
  top: 12vh;
  width: min(42vw, 620px);
  opacity: 0.36;
  pointer-events: none;
}

.flight-path svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.flight-path path {
  fill: none;
  stroke: rgba(255, 194, 71, 0.76);
  stroke-width: 2;
  stroke-dasharray: 10 16;
  filter: drop-shadow(0 0 12px rgba(244, 160, 0, 0.46));
  animation: flight 9s linear infinite;
}

.hero-layout {
  position: relative;
  z-index: 3;
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.34fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
  padding: clamp(18px, 2.6vw, 28px);
  border-left: 1px solid rgba(244, 160, 0, 0.48);
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.56), rgba(5, 5, 5, 0));
  backdrop-filter: blur(3px);
}

.brand-line,
.section-heading p,
.project-card span {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 18px;
}

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

h1 {
  font-size: clamp(3.6rem, 9vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: 0;
  margin-bottom: 26px;
  max-width: 900px;
}

h2 {
  font-size: clamp(2.15rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.16;
  margin-bottom: 12px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  max-width: 650px;
  margin-bottom: 34px;
}

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

.showreel-card {
  position: relative;
  align-self: end;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 5, 5, 0.22);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  opacity: 0.86;
}

.showreel-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(244, 160, 0, 0.46);
  transform: translate(7px, -7px);
  pointer-events: none;
}

.showreel-screen {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
}

.showreel-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.1);
  animation: reelPan 12s ease-in-out infinite alternate;
}

.showreel-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.5)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.08) 18px 19px);
  mix-blend-mode: screen;
  opacity: 0.36;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(244, 160, 0, 0.92);
  color: #130d00;
  display: grid;
  place-items: center;
  padding-left: 5px;
  cursor: pointer;
  box-shadow: 0 0 0 12px rgba(244, 160, 0, 0.12), 0 18px 40px rgba(0, 0, 0, 0.4);
  animation: pulse 2.4s ease-in-out infinite;
}

.timecode {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 850;
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid var(--line);
  padding: 8px 10px;
}

.showreel-meta {
  display: grid;
  gap: 8px;
  padding: 18px 4px 2px;
}

.showreel-meta span {
  color: var(--gold-2);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.showreel-meta strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.22;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 14px 20px;
  font-size: 0.92rem;
  font-weight: 850;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

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

.button.primary {
  background: var(--gold);
  color: #160f00;
  border-color: var(--gold);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.hero-footer {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin: 22px auto 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.hero-ticker {
  position: relative;
  z-index: 3;
  width: calc(100% + 144px);
  margin: 46px -72px 0;
  display: flex;
  gap: 34px;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.34);
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.4rem, 3.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.hero-ticker span {
  padding: 18px 0;
  animation: ticker 24s linear infinite;
}

.hero-ticker span:nth-child(even) {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 194, 71, 0.7);
}

.hero-footer div {
  padding: 18px;
  background: rgba(5, 5, 5, 0.38);
}

.hero-footer strong {
  display: block;
  color: var(--gold-2);
  font-size: 1.55rem;
  line-height: 1;
}

.hero-footer span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  margin-top: 8px;
}

section:not(.hero) {
  padding: clamp(74px, 11vw, 142px) clamp(18px, 5vw, 72px);
}

.section-heading,
.portfolio-head,
.difference,
.cta-content,
.footer {
  max-width: var(--max);
  margin-inline: auto;
}

.azerta-intro {
  padding-top: clamp(86px, 12vw, 156px) !important;
}

.intro-lines {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: clamp(26px, 4vw, 48px);
}

.intro-lines h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3rem, 8.4vw, 8.6rem);
  line-height: 0.88;
}

.intro-lines h2 span {
  display: block;
  color: var(--gold);
}

.intro-lines p {
  width: min(760px, 100%);
  margin: 0 0 0 auto;
  color: var(--muted);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.16;
}

.intro-lines strong {
  color: var(--white);
  font-weight: 900;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(24px, 5vw, 70px);
  margin-bottom: 52px;
}

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

.metrics {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics article {
  min-height: 190px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.metrics article:last-child {
  border-right: 0;
}

.metrics span {
  display: block;
  color: var(--gold-2);
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 18px;
}

.metrics p,
.service-card p,
.project-card p,
.principles p,
.insight-grid p,
blockquote p,
.cta p,
.footer p {
  color: var(--muted);
}

.brand-strip {
  max-width: var(--max);
  margin: -18px auto 34px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.brand-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  border-right: 1px solid var(--line);
}

.brand-strip span:last-child {
  border-right: 0;
}

.authority-grid {
  max-width: var(--max);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.authority-grid article {
  position: relative;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(244, 160, 0, 0.16), rgba(255, 255, 255, 0.03) 52%, transparent),
    rgba(255, 255, 255, 0.035);
}

.authority-grid article::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(244, 160, 0, 0.34);
  border-radius: 999px;
}

.authority-grid strong {
  display: block;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.04;
}

.authority-grid p {
  color: var(--muted);
  margin: 0;
}

.clients {
  position: relative;
  overflow: hidden;
}

.clients::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(244, 160, 0, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  pointer-events: none;
}

.client-grid {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.client-grid article {
  min-height: 164px;
  display: grid;
  place-items: center;
  padding: clamp(22px, 3vw, 38px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 238, 231, 0.95));
  transition: transform 0.28s var(--ease), background 0.28s var(--ease), filter 0.28s var(--ease);
}

.client-grid article:hover {
  transform: translateY(-4px);
  background: var(--white);
}

.client-grid img {
  width: min(100%, 260px);
  max-height: 92px;
  object-fit: contain;
  filter: saturate(0.86) contrast(1.04);
}

.client-grid article:nth-child(3) img,
.client-grid article:nth-child(8) img {
  max-height: 118px;
}

.service-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.service-links {
  max-width: var(--max);
  margin: -22px auto 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 900;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.service-links a:hover {
  background: var(--gold);
  color: #130d00;
  transform: translateY(-2px);
}

.service-card {
  min-height: 260px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(244, 160, 0, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.service-card:nth-child(4n) {
  border-right: 0;
}

.service-card:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.service-card:hover {
  background: linear-gradient(180deg, rgba(244, 160, 0, 0.16), rgba(255, 255, 255, 0.03));
  transform: translateY(-4px);
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  border: 1px solid rgba(244, 160, 0, 0.38);
  margin-bottom: 32px;
}

.production-strip {
  max-width: var(--max);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1fr 0.85fr;
  gap: 16px;
}

.production-strip figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.production-strip figure:nth-child(2),
.production-strip figure:nth-child(4) {
  transform: translateY(34px);
}

.production-strip img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.72) contrast(1.06);
  transition: transform 0.7s var(--ease), filter 0.3s var(--ease);
}

.production-strip figure:hover img {
  transform: scale(1.08);
  filter: saturate(0.98) brightness(0.82) contrast(1.08);
}

.production-strip figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid var(--line);
  padding: 8px 10px;
  backdrop-filter: blur(10px);
}

.portfolio {
  position: relative;
}

.portfolio-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.portfolio-head h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.filters {
  display: flex;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.filters button {
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  min-height: 44px;
  padding: 0 14px;
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
}

.filters button:last-child {
  border-right: 0;
}

.filters button.active {
  background: var(--gold);
  color: #130d00;
}

.project-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}

.project-card {
  grid-column: span 2;
  min-height: 430px;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--panel);
  transition: transform 0.3s var(--ease), opacity 0.25s var(--ease);
}

.project-card.feature {
  grid-column: span 4;
  min-height: 600px;
}

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

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

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.3s var(--ease);
  filter: saturate(0.72) brightness(0.72);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(244, 160, 0, 0.18), transparent 28%),
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.9));
}

.project-card div {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 28px;
}

.project-card div::before {
  content: "▶";
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(244, 160, 0, 0.9);
  color: #130d00;
  font-size: 0.74rem;
  padding-left: 3px;
}

.project-card h3 {
  font-size: clamp(1.3rem, 2.2vw, 2.45rem);
  max-width: 720px;
}

.project-card small {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.project-card:hover img {
  transform: scale(1.08);
  filter: saturate(0.96) brightness(0.82);
}

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

.youtube-showcase {
  max-width: var(--max);
  margin: clamp(34px, 6vw, 78px) auto 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
  padding-top: clamp(26px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

.youtube-copy {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 20px;
}

.youtube-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.95;
}

.youtube-copy p:not(.brand-line) {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0;
}

.youtube-copy .button {
  width: fit-content;
}

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

.youtube-grid article {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(244, 160, 0, 0.18), rgba(255, 255, 255, 0.04)),
    var(--panel);
  border: 1px solid var(--line);
  padding: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
}

.youtube-grid article::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(244, 160, 0, 0.22);
  pointer-events: none;
  z-index: 1;
}

.youtube-grid iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.difference {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.cinema-strip {
  position: sticky;
  top: 94px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 620px;
}

.cinema-strip img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.1);
}

.principles {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.principles article {
  display: grid;
  grid-template-columns: 62px 1fr;
  column-gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.principles span {
  color: var(--gold-2);
  font-weight: 900;
}

.principles h3,
.principles p {
  grid-column: 2;
}

.testimonial-row {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.insights {
  position: relative;
  overflow: hidden;
}

.insights::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 160, 0, 0.1), transparent 38%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.08), transparent 30%);
  pointer-events: none;
}

.insight-grid {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.insight-grid article {
  min-height: 320px;
  padding: 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.insight-grid article:last-child {
  border-right: 0;
}

.insight-grid span {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.insight-grid h3 {
  font-size: clamp(1.35rem, 2.4vw, 2.45rem);
  line-height: 1;
}

.insight-grid a {
  width: fit-content;
  color: var(--white);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 6px;
}

blockquote {
  margin: 0;
  padding: 28px;
  min-height: 300px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
}

blockquote p {
  font-size: 1.05rem;
}

cite {
  display: block;
  color: var(--gold-2);
  font-style: normal;
  font-weight: 850;
  margin-top: 26px;
}

.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.cta h2 {
  margin-bottom: 24px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 13px 12px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(244, 160, 0, 0.7);
}

.wide {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--gold-2);
  font-size: 0.9rem;
}

.footer {
  padding: 30px clamp(18px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.footer img {
  width: 42px;
  height: 42px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--gold-2);
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes slowZoom {
  from { transform: scale(1.01); }
  to { transform: scale(1.055); }
}

@keyframes reelPan {
  from { transform: scale(1.08) translate3d(-2%, 0, 0); }
  to { transform: scale(1.16) translate3d(3%, -2%, 0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 10px rgba(244, 160, 0, 0.1), 0 18px 40px rgba(0, 0, 0, 0.4); }
  50% { box-shadow: 0 0 0 18px rgba(244, 160, 0, 0.02), 0 18px 40px rgba(0, 0, 0, 0.4); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 34px)); }
}

@keyframes flight {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -260; }
}

@keyframes scan {
  0%, 30% { top: -34%; opacity: 0; }
  50% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@media (max-width: 980px) {
  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    gap: 5px;
    place-content: center;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--white);
  }

  .nav {
    position: fixed;
    inset: 72px 14px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(5, 5, 5, 0.94);
    border: 1px solid var(--line);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }

  .nav.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-media img {
    object-position: 48% 35%;
  }

  .hero-poster {
    opacity: 0.16;
  }

  .hero-layout,
  .insight-grid,
  .client-grid,
  .authority-grid {
    grid-template-columns: 1fr;
  }

  .client-grid article {
    min-height: 140px;
  }

  .insight-grid article,
  .insight-grid article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 260px;
  }

  .showreel-card {
    max-width: 520px;
    display: none;
  }

  .flight-path {
    right: -12vw;
    top: 12vh;
    width: 78vw;
  }

  .hero-footer,
  .metrics,
  .testimonial-row {
    grid-template-columns: 1fr;
  }

  .metrics article,
  .metrics article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: auto;
  }

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

  .brand-strip span {
    border-bottom: 1px solid var(--line);
  }

  .brand-strip span:nth-child(3n) {
    border-right: 0;
  }

  .section-heading,
  .difference,
  .cta-content {
    grid-template-columns: 1fr;
  }

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

  .production-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .production-strip figure:nth-child(2),
  .production-strip figure:nth-child(4) {
    transform: none;
  }

  .service-card:nth-child(4n) {
    border-right: 1px solid var(--line);
  }

  .service-card:nth-child(2n) {
    border-right: 0;
  }

  .service-card:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .service-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .portfolio-head {
    display: grid;
  }

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

  .youtube-showcase {
    grid-template-columns: 1fr;
  }

  .youtube-copy {
    position: relative;
    top: auto;
  }

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

  .cinema-strip {
    position: relative;
    top: auto;
    min-height: 360px;
  }

  .cinema-strip img {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 118px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 112px;
  }

  .hero-layout {
    gap: 34px;
  }

  .hero-content {
    padding: 18px;
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.68), rgba(5, 5, 5, 0.12));
  }

  .hero-media img {
    object-position: 48% 24%;
    filter: saturate(0.95) contrast(1.05) brightness(0.72);
  }

  .hero-poster {
    opacity: 0.12;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.28) 38%, rgba(5, 5, 5, 0.88) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.52), rgba(5, 5, 5, 0.1));
  }

  .flight-path {
    width: 110vw;
    opacity: 0.34;
  }

  .showreel-card::before {
    transform: translate(6px, -6px);
  }

  .hero-ticker {
    width: calc(100% + 36px);
    margin: 44px -18px 0;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 5rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-footer {
    margin-top: 24px;
  }

  .brand-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-strip span:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .brand-strip span:nth-child(2n) {
    border-right: 0;
  }

  section:not(.hero) {
    padding-block: 72px;
  }

  .service-grid,
  .production-strip,
  .project-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .production-strip figure {
    min-height: 240px;
  }

  .production-strip img {
    min-height: 240px;
  }

  .service-card,
  .service-card:nth-child(2n),
  .service-card:nth-child(4n),
  .service-card:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .project-card,
  .project-card.feature,
  .project-card.wide,
  .project-card.tall {
    grid-column: 1;
    min-height: 360px;
  }

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

  .filters {
    width: 100%;
    overflow-x: auto;
  }

  .filters button {
    flex: 1;
    min-width: max-content;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
