/* =====================================================================
   VISUAL07 STUDIOS — STYLESHEET
   -------------------------------------------------------------------
   Organized in sections. Search for the ALL-CAPS comment headers
   below to jump to a part of the site:

   1. TOKENS (colors, fonts, spacing) — edit these to reskin the site
   2. RESET / BASE
   3. LAYOUT HELPERS
   4. NAVIGATION
   5. HERO
   6. SECTIONS (intro, services, work, credits, breakdown, about,
      workflow, cta, contact)
   7. MODAL
   8. FOOTER
   9. ANIMATIONS
   10. RESPONSIVE
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. TOKENS
   Change these values to adjust color and type across the whole site.
   --------------------------------------------------------------------- */
:root {
  /* Color */
  --bg: #080808;
  --bg-secondary: #111111;
  --bg-elevated: #161616;
  --text-primary: #f5f5f5;
  --text-secondary: #9a9a9a;
  --text-muted: #6a6a6a;
  --border: #232323;
  --border-soft: #1a1a1a;

  /* Single restrained accent — warm bronze, evokes practical light /
     film grade rather than a bright UI color */
  --accent: #b98b4e;
  --accent-soft: rgba(185, 139, 78, 0.14);
  --accent-text: #d8b47f;

  /* Type */
  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;

  /* Spacing / layout */
  --container-max: 1200px;
  --section-pad: clamp(72px, 10vw, 140px);
  --edge-pad: clamp(20px, 5vw, 64px);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;
}

/* ---------------------------------------------------------------------
   2. RESET / BASE
   --------------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
input, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #080808;
  padding: 12px 20px;
  z-index: 1000;
  font-family: var(--font-mono);
  font-size: 13px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------------------------------------------------------------------
   3. LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--edge-pad);
}

.section { padding: var(--section-pad) 0; border-top: 1px solid var(--border-soft); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 18ch;
  margin-bottom: 28px;
}

.section-note {
  color: var(--text-secondary);
  max-width: 56ch;
  margin-top: -10px;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); border-color: var(--accent); color: #0a0a0a; }
.btn-primary:hover { background: var(--accent-text); border-color: var(--accent-text); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text-primary); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-text); }
.btn-block { width: 100%; }

/* ---------------------------------------------------------------------
   4. NAVIGATION
   --------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(8, 8, 8, 0);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--border-soft);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 12px var(--edge-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  width: 102px;
  height: 72px;
  flex-shrink: 0;
}

.logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav { display: flex; gap: 32px; }

.main-nav a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease);
}
.nav-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 2px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.nav-cta:hover { border-color: var(--accent); color: var(--accent-text); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 6px 2px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text-primary);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.mobile-nav a {
  padding: 18px var(--edge-pad);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-secondary);
}
.mobile-nav a:hover { color: var(--text-primary); }
.mobile-nav.is-open { display: flex; }

/* ---------------------------------------------------------------------
   5. HERO
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: var(--edge-pad);
  padding-top: 120px;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.hero-grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  opacity: 0.6;
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--bg) 0%, rgba(8,8,8,0.2) 45%, rgba(8,8,8,0.65) 100%),
    radial-gradient(ellipse at center, rgba(8,8,8,0.1) 0%, rgba(8,8,8,0.75) 78%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow { color: var(--text-secondary); margin-bottom: 22px; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 8.4vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-secondary);
  max-width: 46ch;
  margin-bottom: 40px;
}

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

.timecode {
  position: absolute;
  top: 132px;
  right: var(--edge-pad);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  right: var(--edge-pad);
  z-index: 2;
  width: 1px;
  height: 56px;
  background: var(--border);
}
.scroll-cue span {
  position: absolute;
  top: 0; left: -1.5px;
  width: 4px; height: 16px;
  background: var(--accent);
  animation: scrollDown 2.2s var(--ease) infinite;
}
@keyframes scrollDown {
  0% { top: 0; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 40px; opacity: 0; }
}
/* =======================================================
   HERO LOGO — LARGE + TRUE FEATHERED EDGES
   ======================================================= */

.hero-logo-visual {
  position: absolute;
  z-index: 1;

  top: 50%;
  right: -4vw;

  width: min(68vw, 1150px);

  transform: translateY(-50%);

  pointer-events: none;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-visual img {
  display: block;

  width: 100%;
  height: auto;

  /*
   * THE IMPORTANT PART:
   * Fade the actual PNG from solid in the centre
   * to completely transparent at the edges.
   */
  -webkit-mask-image: radial-gradient(
    ellipse 62% 55% at center,
    black 0%,
    black 38%,
    rgba(0, 0, 0, 0.95) 48%,
    rgba(0, 0, 0, 0.70) 60%,
    rgba(0, 0, 0, 0.35) 72%,
    rgba(0, 0, 0, 0.10) 84%,
    transparent 100%
  );

  mask-image: radial-gradient(
    ellipse 62% 55% at center,
    black 0%,
    black 38%,
    rgba(0, 0, 0, 0.95) 48%,
    rgba(0, 0, 0, 0.70) 60%,
    rgba(0, 0, 0, 0.35) 72%,
    rgba(0, 0, 0, 0.10) 84%,
    transparent 100%
  );

  filter:
    drop-shadow(0 0 25px rgba(185, 139, 78, 0.12))
    drop-shadow(0 25px 60px rgba(0, 0, 0, 0.6));

  animation: heroLogoFloat 8s ease-in-out infinite;
}

@keyframes heroLogoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}
/* ---------------------------------------------------------------------
   6a. INTRODUCTION
   --------------------------------------------------------------------- */
.intro-grid { max-width: 980px; }
.intro-copy p { color: var(--text-secondary); max-width: 62ch; margin-bottom: 16px; font-size: 16px; }

/* ---------------------------------------------------------------------
   6b. SERVICES
   --------------------------------------------------------------------- */
.services-list { border-top: 1px solid var(--border-soft); }
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr 2fr;
  align-items: baseline;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.service-row:hover { background: var(--bg-secondary); padding-left: 12px; }
.service-index { font-family: var(--font-mono); color: var(--text-muted); font-size: 14px; }
.service-name { font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 2.2vw, 24px); }
.service-desc { color: var(--text-secondary); font-size: 15px; }

/* ---------------------------------------------------------------------
   6c. SELECTED WORK
   --------------------------------------------------------------------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  background: var(--border-soft);
}
.work-card {
  background: var(--bg);
  aspect-ratio: 4/3;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.work-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: transform 0.6s var(--ease); }
.work-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.work-card:hover img { transform: scale(1.04); }
.work-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,0.9), transparent 60%); }
.work-card-meta { position: relative; z-index: 1; }
.work-card-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.work-card-cat { font-family: var(--font-mono); font-size: 12px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.06em; }
/* FEATURED SHOWREEL */
.showreel-feature {
  width: 100%;
  margin-bottom: 32px;
}

.showreel-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border-soft);
}

.showreel-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showreel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.85),
    transparent 55%
  );
  pointer-events: none;
}

.showreel-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent-text);
  margin-bottom: 6px;
}

.showreel-overlay h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.work-empty {
  grid-column: 1 / -1;
  background: var(--bg);
  border: 1px dashed var(--border);
  padding: clamp(48px, 8vw, 96px) var(--edge-pad);
  text-align: center;
}
.work-empty-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-text);
  border: 1px solid var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.work-empty p { color: var(--text-secondary); max-width: 52ch; margin: 0 auto; }

/* ---------------------------------------------------------------------
   6d. SELECTED CREDITS — poster gallery
   --------------------------------------------------------------------- */
.poster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 8px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.poster-card {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border-soft);
  text-align: left;
  padding: 0;
}

.poster-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.poster-overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.1) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.poster-card:hover .poster-overlay,
.poster-card:focus-visible .poster-overlay { opacity: 1; }

.poster-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.poster-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 10px; }
.poster-view { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-text); }

.credits-sub-eyebrow { margin-top: 56px; }
.poster-grid--ads {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.poster-card--wide {
  aspect-ratio: 3 / 2;
}

.poster-grid--ads .poster-card img {
  object-fit: contain;
  background: var(--bg-secondary);
}

/* ---------------------------------------------------------------------
   7. MODAL — credit info panel
   --------------------------------------------------------------------- */
.modal { position: fixed; inset: 0; z-index: 900; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(4,4,4,0.82); backdrop-filter: blur(4px); }
.modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 40px 32px;
}
.modal-close {
  position: absolute; top: 12px; right: 14px;
  font-size: 22px; line-height: 1; color: var(--text-secondary);
}
.modal-close:hover { color: var(--text-primary); }
#modal-title { font-family: var(--font-display); font-weight: 800; font-size: 26px; margin-bottom: 14px; }
.modal-body { color: var(--text-secondary); }

/* VFX BREAKDOWN MODAL */

.breakdown-modal-panel {
  width: min(1100px, 92vw);
  max-width: 1100px;
}

.breakdown-video-container {
  width: 100%;
  margin-top: 24px;
  background: #000;
}

#breakdown-video {
  display: block;
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #000;
}

/* ---------------------------------------------------------------------
   6e. VFX BREAKDOWN — before/after slider
   --------------------------------------------------------------------- */
.ba-slider {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--bg-secondary);
  user-select: none;
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider .ba-after { clip-path: inset(0 0 0 50%); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--accent);
  transform: translateX(-1px);
  cursor: ew-resize;
}
.ba-handle::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 36px; height: 36px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--bg);
  transform: translate(-50%, -50%);
}
.ba-label { position: absolute; top: 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(8,8,8,0.7); padding: 6px 10px; }
.ba-label--before { left: 16px; }
.ba-label--after { right: 16px; }

.ba-slider.is-empty { display: flex; align-items: center; justify-content: center; }
.ba-empty { text-align: center; padding: 24px; }
.ba-empty-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent-text);
  border: 1px solid var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.ba-empty p { color: var(--text-secondary); }

/* ---------------------------------------------------------------------
   6f. ABOUT
   --------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-grid p { color: var(--text-secondary); margin-bottom: 16px; max-width: 60ch; }
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.founder-card {
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  overflow: hidden;
}

.leader-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-elevated);
}

.leader-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.founder-card:hover .leader-image img {
  transform: scale(1.03);
}

.leader-info {
  padding: 20px 22px 22px;
}

.founder-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 8px;
}

.founder-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  margin: 0 0 4px;
}

.founder-role {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
}

/* ---------------------------------------------------------------------
   6g. WORKFLOW
   --------------------------------------------------------------------- */
.workflow-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); }
.workflow-list li { background: var(--bg); padding: 32px 28px; min-height: 160px; }
.wf-index { display: block; font-family: var(--font-mono); color: var(--accent-text); font-size: 13px; margin-bottom: 14px; }
.wf-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.wf-desc { display: block; color: var(--text-secondary); font-size: 14px; }

/* ---------------------------------------------------------------------
   6h. CTA
   --------------------------------------------------------------------- */
.cta-section { background: var(--bg-secondary); }
.cta-inner { text-align: center; max-width: 640px; }
.cta-title { max-width: none; margin-left: auto; margin-right: auto; }
.cta-inner p { color: var(--text-secondary); margin: 0 auto 32px; max-width: 48ch; }

/* ---------------------------------------------------------------------
   6i. CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; }
.contact-card { border: 1px solid var(--border); padding: 28px; margin-top: 12px; }
.contact-name { font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.contact-role { color: var(--text-secondary); margin: 4px 0; }
.contact-tag { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--accent-text); text-transform: uppercase; margin-top: 8px; }

.form-row { margin-bottom: 20px; }
.form-row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 0; }
.form-row--split > div { margin-bottom: 20px; }
.contact-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 13px 14px;
  border-radius: 2px;
  transition: border-color 0.3s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); outline: none; }
.contact-form textarea { resize: vertical; }
.form-note { color: var(--text-muted); font-size: 12.5px; margin-top: 14px; line-height: 1.5; }

/* ---------------------------------------------------------------------
   8. FOOTER
   --------------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--border-soft); padding: 56px 0 28px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; }
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 16px; }
.footer-tag, .footer-founder { color: var(--text-secondary); font-size: 13.5px; margin-top: 6px; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-secondary); }
.footer-nav a:hover { color: var(--text-primary); }
.footer-social:empty { display: none; }
.footer-copy { text-align: center; color: var(--text-muted); font-size: 12px; margin-top: 48px; }

/* ---------------------------------------------------------------------
   9. ANIMATIONS — scroll reveal
   --------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------------------------------------------------------------------
   10. RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 980px) {
  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .workflow-list { grid-template-columns: repeat(2, 1fr); }
  .timecode { display: none; }
}

@media (max-width: 720px) {
  .service-row { grid-template-columns: 1fr; gap: 6px; }
  .service-index { order: -1; }
  .poster-grid { grid-template-columns: repeat(2, 1fr); }
  .poster-grid--ads { grid-template-columns: 1fr; }
  .workflow-list { grid-template-columns: 1fr; }
  .form-row--split { grid-template-columns: 1fr; }
  .form-row--split > div { margin-bottom: 20px; }
  .hero { align-items: flex-end; padding-bottom: 48px; }
}

/* =======================================================
   TEAM V07 — IMAGE SLIDESHOW
   ======================================================= */

.team-slideshow {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.team-slide {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #111;
}

.team-slide img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

/* Floating circular arrows */

.team-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;

  width: 52px !important;
  height: 52px !important;

  padding: 0 !important;
  margin: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  border-radius: 50% !important;

  background: rgba(0, 0, 0, 0.55) !important;
  color: #fff !important;

  font-family: Arial, sans-serif !important;
  font-size: 36px !important;
  font-weight: 300 !important;
  line-height: 1 !important;

  cursor: pointer !important;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  z-index: 10;

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease !important;
}

.team-arrow:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
}

.team-arrow-prev {
  left: 20px !important;
}

.team-arrow-next {
  right: 20px !important;
}

.team-arrow-prev:hover {
  transform: translateY(-50%) scale(1.08) !important;
}

.team-arrow-next:hover {
  transform: translateY(-50%) scale(1.08) !important;
}

.team-arrow:active {
  transform: translateY(-50%) scale(0.94) !important;
}

/* Mobile */

@media (max-width: 768px) {

  .team-arrow {
    width: 42px !important;
    height: 42px !important;
    font-size: 30px !important;
  }

  .team-arrow-prev {
    left: 10px !important;
  }

  .team-arrow-next {
    right: 10px !important;
  }

}

/* =======================================================
   PREMIUM SHOWREEL PLAYER
   ======================================================= */

.showreel-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;

  background: #080808;
  border: 1px solid var(--border-soft);

  cursor: default;
}

.showreel-player video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}


/* =======================================================
   CINEMATIC DARK OVERLAY
   ======================================================= */

.showreel-player::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.20) 35%,
      transparent 65%
    );

  pointer-events: none;

  z-index: 1;
}


/* =======================================================
   TOP INFORMATION BAR
   ======================================================= */

.showreel-topbar {
  position: absolute;

  top: 22px;
  left: 24px;
  right: 24px;

  z-index: 3;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-family: var(--font-mono);
  font-size: 10px;

  letter-spacing: 0.14em;

  color: rgba(255, 255, 255, 0.72);

  pointer-events: none;
}


/* =======================================================
   CENTER PLAY BUTTON
   ======================================================= */

.showreel-center-play {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 78px;
  height: 78px;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.40);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  z-index: 4;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    opacity 0.3s ease;
}

.showreel-center-play span {
  font-size: 20px;

  margin-left: 4px;
}

.showreel-center-play:hover {
  transform: translate(-50%, -50%) scale(1.08);

  background: rgba(255, 255, 255, 0.14);
}


/* Hide center button while playing */

.showreel-player.is-playing .showreel-center-play {
  opacity: 0;

  pointer-events: none;
}


/* =======================================================
   CONTROL BAR
   ======================================================= */

.showreel-controls {
  position: absolute;

  left: 22px;
  right: 22px;
  bottom: 18px;

  z-index: 5;

  display: flex;
  align-items: center;

  gap: 10px;

  opacity: 0;

  transform: translateY(8px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}


/* Show controls */

.showreel-player:hover .showreel-controls,
.showreel-player:focus-within .showreel-controls,
.showreel-player.is-controls-visible .showreel-controls {

  opacity: 1;

  transform: translateY(0);
}


/* =======================================================
   CONTROL BUTTONS
   ======================================================= */

.showreel-control {
  width: 36px;
  height: 36px;

  padding: 0;

  border: 0;

  background: transparent;

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;

  cursor: pointer;

  opacity: 0.82;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.showreel-control:hover {
  opacity: 1;

  transform: scale(1.12);
}


/* =======================================================
   CURRENT TIME / DURATION
   ======================================================= */

.showreel-time {
  min-width: 38px;

  font-family: var(--font-mono);

  font-size: 10px;

  color: rgba(255, 255, 255, 0.78);

  text-align: center;

  white-space: nowrap;
}


/* =======================================================
   TIMELINE
   ======================================================= */

.showreel-timeline {
  flex: 1;

  min-width: 80px;

  display: flex;
  align-items: center;
}


/* Timeline input */

#showreel-progress {
  width: 100%;

  height: 4px;

  margin: 0;

  appearance: none;
  -webkit-appearance: none;

  background: rgba(255, 255, 255, 0.25);

  border-radius: 999px;

  cursor: pointer;
}


/* Chrome / Edge / Safari */

#showreel-progress::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;

  width: 12px;
  height: 12px;

  border: 0;

  border-radius: 50%;

  background: #fff;

  cursor: pointer;

  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.08);
}


/* Firefox */

#showreel-progress::-moz-range-thumb {
  width: 12px;
  height: 12px;

  border: 0;

  border-radius: 50%;

  background: #fff;

  cursor: pointer;
}


/* =======================================================
   VOLUME
   ======================================================= */

.showreel-volume {
  width: 70px;

  height: 4px;

  appearance: none;
  -webkit-appearance: none;

  background: rgba(255, 255, 255, 0.25);

  border-radius: 999px;

  cursor: pointer;
}


.showreel-volume::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;

  width: 10px;
  height: 10px;

  border: 0;

  border-radius: 50%;

  background: #fff;

  cursor: pointer;
}


.showreel-volume::-moz-range-thumb {
  width: 10px;
  height: 10px;

  border: 0;

  border-radius: 50%;

  background: #fff;

  cursor: pointer;
}


/* =======================================================
   MOBILE
   ======================================================= */

@media (max-width: 700px) {

  .showreel-topbar {
    top: 14px;

    left: 14px;
    right: 14px;
  }

  .showreel-controls {
    left: 10px;
    right: 10px;
    bottom: 10px;

    gap: 5px;
  }

  .showreel-volume {
    width: 45px;
  }

  .showreel-time {
    min-width: 32px;
    font-size: 9px;
  }

  .showreel-center-play {
    width: 60px;
    height: 60px;
  }

}

/* SHOWREEL VIDEO VISIBILITY FIX */

.showreel-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #080808;
}

.showreel-player video {
  position: absolute;
  inset: 0;

  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;

  opacity: 1;
  visibility: visible;

  z-index: 0;
}

/* =======================================================
   ADVERTISING — CENTER WATCH BREAKDOWN
   ======================================================= */

.poster-card--wide {
  position: relative;
  overflow: hidden;
}


/* Dark cinematic overlay */

.poster-card--wide .poster-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;

  background: rgba(0, 0, 0, 0.52);

  opacity: 0;

  transition: opacity 0.35s ease;

  z-index: 3;
}


/* Title */

.poster-card--wide .poster-title {
  position: absolute;

  top: 24px;
  left: 24px;
  right: 24px;

  text-align: left;

  opacity: 0;

  transform: translateY(-8px);

  transition:
    opacity 0.3s ease,
    transform 0.35s ease;
}


/* Advertising label */

.poster-card--wide .poster-tag {
  position: absolute;

  top: 50px;
  left: 24px;
  right: 24px;

  text-align: left;

  opacity: 0;

  transform: translateY(-8px);

  transition:
    opacity 0.3s ease,
    transform 0.35s ease;
}


/* =======================================================
   WATCH BREAKDOWN
   ======================================================= */

.poster-card--wide .poster-view {

  position: absolute;

  top: 50%;
  left: 50%;

  transform:
    translate(-50%, -50%)
    scale(0.88);

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 14px;

  padding: 18px 30px;

  border: 1px solid
    rgba(255, 255, 255, 0.70);

  background:
    rgba(0, 0, 0, 0.45);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: #fff;

  font-family: var(--font-mono);

  font-size: 14px;

  font-weight: 600;

  letter-spacing: 0.16em;

  white-space: nowrap;

  opacity: 0;

  transition:
    opacity 0.3s ease,
    transform 0.4s cubic-bezier(
      0.2,
      0.8,
      0.2,
      1
    );
}


/* Arrow */

.poster-card--wide .poster-view span {

  font-size: 20px;

  line-height: 1;

  transition:
    transform 0.3s ease;
}


/* =======================================================
   HOVER
   ======================================================= */

.poster-card--wide:hover .poster-overlay {
  opacity: 1;
}


.poster-card--wide:hover .poster-view {

  opacity: 1;

  transform:
    translate(-50%, -50%)
    scale(1);
}


.poster-card--wide:hover .poster-view span {

  transform:
    translate(5px, -5px);
}


/* =======================================================
   IMAGE ZOOM
   ======================================================= */

.poster-card--wide img {

  transition:
    transform 0.7s cubic-bezier(
      0.2,
      0.8,
      0.2,
      1
    );
}


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


/* =======================================================
   MOBILE
   ======================================================= */

@media (max-width: 700px) {

  .poster-card--wide .poster-view {

    padding: 15px 22px;

    font-size: 11px;

    gap: 10px;
  }

}
/* =======================================================
   MOVIE CARDS — TITLE ONLY
   Hide extra credit labels on movie posters
   ======================================================= */

.poster-card:not(.poster-card--wide) .poster-tag,
.poster-card:not(.poster-card--wide) .poster-view {
  display: none;
}
