/* ============================================================
   VIDEOGRAPHY HERO — vid-hero.css
   Prefix: vid-hero-*
   Aesthetic: Cinematic / Film Production / Premium Dark
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── Root ── */
:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);

  /* Section-scoped tokens */
  --vid-hero-h: 100vh;
  --vid-hero-min-h: 680px;
  --vid-hero-pad-x: clamp(24px, 6vw, 100px);
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.vid-hero {
  position: relative;
  width: 100%;
  min-height: var(--vid-hero-min-h);
  height: var(--vid-hero-h);
  max-height: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* content top, stats bottom — never overlap */
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

/* ══════════════════════════════════════════════
   BACKGROUND LAYERS
══════════════════════════════════════════════ */
.vid-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Video / poster */
.vid-hero-reel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: vid-parallax-idle 20s ease-in-out infinite alternate;
}

@keyframes vid-parallax-idle {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.08) translateY(-2%); }
}

/* Ink overlay — multi-layer for depth */
.vid-hero-ink {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.72) 55%, rgba(10,10,10,0.45) 100%),
    linear-gradient(to top, rgba(10,10,10,1) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(10,10,10,0.85) 0%, transparent 25%);
}

/* Grain / noise */
.vid-hero-grain {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  opacity: 0.6;
  mix-blend-mode: overlay;
  animation: vid-grain-drift 8s steps(2) infinite;
}

@keyframes vid-grain-drift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-1%, 1%); }
  50%  { transform: translate(1%, -1%); }
  75%  { transform: translate(-1%, -1%); }
  100% { transform: translate(0, 0); }
}

/* Diagonal red slash accent */
.vid-hero-slash {
  position: absolute;
  top: 0;
  right: 25%;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--red) 20%, var(--red) 80%, transparent 100%);
  opacity: 0.18;
  transform: skewX(-12deg);
  transform-origin: top;
}

.vid-hero-slash::before,
.vid-hero-slash::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  background: inherit;
  opacity: 0.5;
}

.vid-hero-slash::before {
  left: 18px;
  width: 1px;
}

.vid-hero-slash::after {
  left: 32px;
  width: 1px;
  opacity: 0.25;
}

/* Scanlines */
.vid-hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.04) 3px,
    rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
  opacity: 0.8;
}

/* Cinematic corner brackets */
.vid-hero-bracket {
  position: absolute;
  width: 36px;
  height: 36px;
  pointer-events: none;
  opacity: 0;
  animation: vid-bracket-in 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.vid-hero-bracket--tl { top: 28px; left: 28px; border-top: 2px solid rgba(229,9,20,0.5); border-left: 2px solid rgba(229,9,20,0.5); animation-delay: 1.0s; }
.vid-hero-bracket--tr { top: 28px; right: 28px; border-top: 2px solid rgba(229,9,20,0.5); border-right: 2px solid rgba(229,9,20,0.5); animation-delay: 1.1s; }
.vid-hero-bracket--bl { bottom: 28px; left: 28px; border-bottom: 2px solid rgba(229,9,20,0.5); border-left: 2px solid rgba(229,9,20,0.5); animation-delay: 1.2s; }
.vid-hero-bracket--br { bottom: 28px; right: 28px; border-bottom: 2px solid rgba(229,9,20,0.5); border-right: 2px solid rgba(229,9,20,0.5); animation-delay: 1.3s; }

@keyframes vid-bracket-in {
  from { opacity: 0; transform: scale(1.4); }
  to   { opacity: 1; transform: scale(1); }
}

/* ══════════════════════════════════════════════
   MAIN CONTENT — two-column split
══════════════════════════════════════════════ */
.vid-hero-content {
  position: relative;
  z-index: 10;
  padding: 0 var(--vid-hero-pad-x);
  padding-top: 120px;
  padding-bottom: 40px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-grow: 1;
}

/* ── Left column: breadcrumb + badge + headline + sub ── */
.vid-hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1 1 auto;
  max-width: 680px;
}

/* ── Right column: pills + divider + CTAs ── */
.vid-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  flex-shrink: 0;
  width: 220px;
  opacity: 0;
  animation: vid-fade-up 0.7s ease forwards;
  animation-delay: 1.1s;
}

.vid-hero-right-divider {
  width: 100%;
  height: 1px;
  background: rgba(245,245,241,0.08);
  position: relative;
}

.vid-hero-right-divider::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 6px var(--glow);
}

/* ── Breadcrumb ── */
.vid-hero-breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: vid-fade-up 0.6s ease forwards;
  animation-delay: 0.1s;
}

.vid-hero-breadcrumb-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(245,245,241,0.4);
  text-decoration: none;
  transition: color 0.25s ease;
}

.vid-hero-breadcrumb-link:hover { color: rgba(245,245,241,0.8); }

.vid-hero-breadcrumb-sep {
  color: rgba(245,245,241,0.2);
  display: flex;
  align-items: center;
}

.vid-hero-breadcrumb-item--active {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--red);
}

/* ── Badge ── */
.vid-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: vid-fade-up 0.6s ease forwards;
  animation-delay: 0.2s;
}

.vid-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--glow);
  animation: vid-pulse 2s ease-in-out infinite;
}

@keyframes vid-pulse {
  0%, 100% { box-shadow: 0 0 6px var(--glow); transform: scale(1); }
  50%       { box-shadow: 0 0 16px var(--glow); transform: scale(1.25); }
}

.vid-hero-badge-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

/* ── Headline ── */
.vid-hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10vw, 128px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vid-hero-headline-line {
  display: block;
  overflow: hidden;
}

.vid-hero-headline-word {
  display: inline-block;
  color: var(--ice);
  opacity: 0;
  transform: translateY(110%);
  animation: vid-word-rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  margin-right: 0.18em;
}

/* Stagger each line */
.vid-hero-headline-line--1 .vid-hero-headline-word:nth-child(1) { animation-delay: 0.35s; }
.vid-hero-headline-line--1 .vid-hero-headline-word:nth-child(2) { animation-delay: 0.45s; }
.vid-hero-headline-line--1 .vid-hero-headline-word:nth-child(3) { animation-delay: 0.55s; }
.vid-hero-headline-line--2 .vid-hero-headline-word:nth-child(1) { animation-delay: 0.60s; }
.vid-hero-headline-line--3 .vid-hero-headline-word:nth-child(1) { animation-delay: 0.70s; }
.vid-hero-headline-line--3 .vid-hero-headline-word:nth-child(2) { animation-delay: 0.80s; }
.vid-hero-headline-line--3 .vid-hero-headline-word:nth-child(3) { animation-delay: 0.88s; }

@keyframes vid-word-rise {
  from { opacity: 0; transform: translateY(110%); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Accent word — red */
.vid-hero-headline-word--accent {
  color: var(--red);
  text-shadow: 0 0 60px rgba(229,9,20,0.4);
}

/* Outline word */
.vid-hero-headline-word--outline {
  -webkit-text-stroke: 2px var(--ice);
  color: transparent;
}

/* ── Sub-headline ── */
.vid-hero-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 300;
  font-style: italic;
  color: rgba(245,245,241,0.55);
  line-height: 1.7;
  letter-spacing: 0.01em;
  margin: 0;
  max-width: 520px;
  opacity: 0;
  animation: vid-fade-up 0.7s ease forwards;
  animation-delay: 0.95s;
}

/* ── Service Pills ── */
.vid-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.vid-hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(245,245,241,0.1);
  background: rgba(245,245,241,0.04);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(245,245,241,0.55);
  backdrop-filter: blur(6px);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  text-align: center;
}

.vid-hero-pill:hover {
  border-color: rgba(229,9,20,0.5);
  color: var(--ice);
  background: rgba(229,9,20,0.08);
  box-shadow: 0 0 12px rgba(229,9,20,0.15);
}

/* ── CTA Buttons ── */
.vid-hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  opacity: 0;
  animation: vid-fade-up 0.7s ease forwards;
  animation-delay: 1.15s;
}

.vid-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  width: 100%;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}

.vid-hero-cta--primary {
  background: var(--red);
  color: var(--ice);
  border: 1px solid var(--red);
}

.vid-hero-cta--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(229,9,20,0.35);
  color: var(--ice);
}

.vid-hero-cta--primary svg {
  transition: transform 0.3s ease;
}

.vid-hero-cta--primary:hover svg {
  transform: translateY(3px);
}

.vid-hero-cta--ghost {
  background: transparent;
  color: rgba(245,245,241,0.8);
  border: 1px solid rgba(245,245,241,0.15);
  backdrop-filter: blur(8px);
}

.vid-hero-cta--ghost:hover {
  background: rgba(245,245,241,0.06);
  border-color: rgba(245,245,241,0.35);
  transform: translateY(-2px) scale(1.02);
  color: var(--ice);
}

.vid-hero-cta--ghost svg {
  transition: transform 0.3s ease;
}

.vid-hero-cta--ghost:hover svg {
  transform: translateX(4px);
}

/* ══════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════ */
.vid-hero-stats {
  position: relative; /* in normal flow — always below content */
  z-index: 10;
  flex-shrink: 0; /* never compressed */
  display: flex;
  align-items: stretch;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(245,245,241,0.06);
  box-shadow: inset 0 1px 0 rgba(229,9,20,0.2);
  opacity: 0;
  transform: translateY(20px);
  animation: vid-stats-rise 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 1.3s;
}

@keyframes vid-stats-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.vid-hero-stat {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  padding: 22px 16px;
  position: relative;
  transition: background 0.3s ease;
}

.vid-hero-stat:hover {
  background: rgba(229,9,20,0.05);
}

.vid-hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1;
  color: var(--ice);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.vid-hero-stat-unit {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--red);
  line-height: 1;
  margin-left: 2px;
  position: relative;
  top: -2px;
}

/* Wrap num + unit in a row */
.vid-hero-stat {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
  align-items: baseline;
  justify-content: center;
  column-gap: 0;
  row-gap: 2px;
}

.vid-hero-stat-num,
.vid-hero-stat-unit {
  display: inline;
}

.vid-hero-stat-label {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,245,241,0.35);
  margin-top: 4px;
}

.vid-hero-stat-divider {
  width: 1px;
  background: rgba(245,245,241,0.07);
  margin: 12px 0;
  align-self: stretch;
}

/* Red top accent on hover stat */
.vid-hero-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 8px var(--glow);
  transition: width 0.35s ease;
}

.vid-hero-stat:hover::before { width: 40%; }

/* ══════════════════════════════════════════════
   SCROLL CUE
══════════════════════════════════════════════ */
.vid-hero-scroll-cue {
  position: absolute;
  bottom: 110px; /* clears the in-flow stats bar height (~80px) + breathing room */
  right: var(--vid-hero-pad-x);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: vid-fade-in 1s ease forwards;
  animation-delay: 1.6s;
}

.vid-hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(245,245,241,0.3));
  position: relative;
  overflow: hidden;
}

.vid-hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--red));
  animation: vid-scroll-drip 2s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes vid-scroll-drip {
  0%   { top: -100%; opacity: 0; }
  30%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.vid-hero-scroll-label {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,245,241,0.25);
  writing-mode: vertical-rl;
}

/* ══════════════════════════════════════════════
   SHARED KEYFRAMES
══════════════════════════════════════════════ */
@keyframes vid-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes vid-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .vid-hero {
    height: auto;
    min-height: 100svh;
    max-height: none;
  }

  .vid-hero-content {
    padding-top: 120px;
    padding-bottom: 40px;
    gap: 32px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .vid-hero-left {
    max-width: 100%;
    gap: 20px;
  }

  .vid-hero-right {
    width: 100%;
    align-items: flex-start;
  }

  .vid-hero-pills {
    justify-content: flex-start;
  }

  .vid-hero-ctas {
    flex-direction: row;
    align-items: stretch;
  }

  .vid-hero-cta {
    flex: 1;
  }

  .vid-hero-headline {
    font-size: clamp(56px, 14vw, 90px);
  }

  .vid-hero-sub { font-size: 14px; }

  .vid-hero-scroll-cue { display: none; }

  .vid-hero-slash { right: 15%; opacity: 0.1; }

  .vid-hero-ink {
    background:
      rgba(10,10,10,0.88),
      linear-gradient(to top, rgba(10,10,10,1) 0%, transparent 40%),
      linear-gradient(to bottom, rgba(10,10,10,0.88) 0%, transparent 30%);
  }
}

@media (max-width: 600px) {
  .vid-hero-headline {
    font-size: clamp(48px, 16vw, 72px);
  }

  .vid-hero-stats {
    flex-wrap: wrap;
  }

  .vid-hero-stat {
    flex: 0 0 50%;
    padding: 16px 12px;
  }

  .vid-hero-stat-divider {
    display: none;
  }

  .vid-hero-ctas {
    flex-direction: column;
    gap: 10px;
  }

  .vid-hero-cta {
    width: 100%;
    flex: none;
  }

  .vid-hero-bracket { width: 24px; height: 24px; }
  .vid-hero-bracket--tl, .vid-hero-bracket--tr { top: 16px; }
  .vid-hero-bracket--bl, .vid-hero-bracket--br { bottom: 16px; }
  .vid-hero-bracket--tl, .vid-hero-bracket--bl { left: 16px; }
  .vid-hero-bracket--tr, .vid-hero-bracket--br { right: 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .vid-hero-reel,
  .vid-hero-grain,
  .vid-hero-headline-word,
  .vid-hero-badge-dot,
  .vid-hero-stats,
  .vid-hero-scroll-cue,
  .vid-hero-bracket,
  .vid-hero-scroll-line::after {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   VIDEOGRAPHY SERVICE DESCRIPTION — vid-desc.css
   Prefix: vid-desc-*
   Aesthetic: Cinematic editorial — dark, asymmetric, refined
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
  --vid-desc-pad-x: clamp(24px, 6vw, 100px);
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.vid-desc {
  position: relative;
  width: 100%;
  background: var(--ink);
  padding: 120px 0 100px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

/* Subtle diagonal texture — differentiates from hero */
.vid-desc::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -55deg,
      transparent 0px,
      transparent 60px,
      rgba(245, 245, 241, 0.012) 60px,
      rgba(245, 245, 241, 0.012) 61px
    );
  pointer-events: none;
  z-index: 0;
}

/* Bottom fade into next section */
.vid-desc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.3) 50%, transparent);
}

/* Ambient red glow — top right */
.vid-desc-ambient {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,9,20,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ══════════════════════════════════════════════
   VERTICAL SPINE
══════════════════════════════════════════════ */
.vid-desc-spine {
  position: absolute;
  left: clamp(14px, 2.5vw, 40px);
  top: 120px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 2;
  pointer-events: none;
}

.vid-desc-spine-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(229,9,20,0.4);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.vid-desc-spine-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, rgba(229,9,20,0.3), rgba(245,245,241,0.06) 60%, transparent);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.vid-desc-spine-line.vid-desc-in-view {
  transform: scaleY(1);
}

/* ══════════════════════════════════════════════
   INNER LAYOUT
══════════════════════════════════════════════ */
.vid-desc-inner {
  position: relative;
  z-index: 2;
  padding: 0 var(--vid-desc-pad-x);
  padding-left: calc(var(--vid-desc-pad-x) + 40px);
  display: flex;
  flex-direction: column;
  gap: 72px;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.vid-desc-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Scroll reveal — starts hidden */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.vid-desc-header.vid-desc-in-view {
  opacity: 1;
  transform: translateY(0);
}

.vid-desc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.vid-desc-eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--red);
  opacity: 0.7;
}

.vid-desc-eyebrow-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
}

.vid-desc-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--ice);
  margin: 0;
}

.vid-desc-heading-em {
  font-style: normal;
  /* Outlined text — ice outline, transparent fill */
  -webkit-text-stroke: 2px rgba(245, 245, 241, 0.6);
  color: transparent;
  display: block;
}

/* ══════════════════════════════════════════════
   BODY — copy + pull quote side by side
══════════════════════════════════════════════ */
.vid-desc-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

/* ── Body copy ── */
.vid-desc-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vid-desc-para {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 300;
  color: rgba(245, 245, 241, 0.65);
  line-height: 1.85;
  letter-spacing: 0.01em;
  margin: 0;
  /* Scroll reveal */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.vid-desc-para.vid-desc-in-view { opacity: 1; transform: translateY(0); }
.vid-desc-para--1 { transition-delay: 0s; }
.vid-desc-para--2 { transition-delay: 0.12s; }
.vid-desc-para--3 { transition-delay: 0.24s; }

/* First letter drop cap on first paragraph */
.vid-desc-para--1::first-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.6em;
  line-height: 0.75;
  float: left;
  margin-right: 8px;
  margin-top: 4px;
  color: var(--red);
  text-shadow: 0 0 30px rgba(229,9,20,0.4);
}

/* ── Pull quote ── */
.vid-desc-quote {
  position: sticky;
  top: 100px;
  margin: 0;
  padding: 32px 28px;
  background: rgba(245, 245, 241, 0.025);
  border: 1px solid rgba(245, 245, 241, 0.07);
  border-left: 3px solid var(--red);
  border-radius: 0 12px 12px 0;
  backdrop-filter: blur(10px);
  /* Scroll reveal */
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}

.vid-desc-quote.vid-desc-in-view {
  opacity: 1;
  transform: translateX(0);
}

.vid-desc-quote-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 0.6;
  color: var(--red);
  opacity: 0.4;
  margin-bottom: 12px;
  display: block;
}

.vid-desc-quote-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--ice);
  margin: 0 0 16px;
}

.vid-desc-quote-cite {
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 241, 0.3);
  display: block;
}

/* ══════════════════════════════════════════════
   BENEFIT CARDS — clapperboard film-frame style
══════════════════════════════════════════════ */
.vid-desc-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vid-desc-benefit {
  position: relative;
  padding: 28px 24px 24px;
  background: rgba(245, 245, 241, 0.03);
  border: 1px solid rgba(245, 245, 241, 0.07);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: default;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1),
    box-shadow 0.35s ease;
  /* Scroll reveal */
  opacity: 0;
  transform: translateY(28px);
}

.vid-desc-benefit.vid-desc-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger cards */
.vid-desc-benefit:nth-child(1) { transition-delay: 0s; }
.vid-desc-benefit:nth-child(2) { transition-delay: 0.1s; }
.vid-desc-benefit:nth-child(3) { transition-delay: 0.2s; }
.vid-desc-benefit:nth-child(4) { transition-delay: 0.3s; }

.vid-desc-benefit:hover {
  background: rgba(229, 9, 20, 0.05);
  border-color: rgba(229, 9, 20, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 30px rgba(229,9,20,0.08);
}

/* Clapperboard tick marks across the top */
.vid-desc-benefit-tick {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    rgba(229,9,20,0.6) 0px,
    rgba(229,9,20,0.6) 12px,
    transparent 12px,
    transparent 18px
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.vid-desc-benefit:hover .vid-desc-benefit-tick {
  opacity: 1;
}

/* Red glow sweep on hover */
.vid-desc-benefit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(229,9,20,0.07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.vid-desc-benefit:hover::before { opacity: 1; }

/* Icon */
.vid-desc-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(229, 9, 20, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.35s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vid-desc-benefit-icon svg {
  width: 20px;
  height: 20px;
  color: var(--red);
  transition: transform 0.35s ease;
}

.vid-desc-benefit:hover .vid-desc-benefit-icon {
  background: rgba(229, 9, 20, 0.2);
  transform: scale(1.08);
}

.vid-desc-benefit:hover .vid-desc-benefit-icon svg {
  transform: scale(1.1) rotate(-5deg);
}

/* Card body text */
.vid-desc-benefit-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vid-desc-benefit-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ice);
  margin: 0;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.vid-desc-benefit:hover .vid-desc-benefit-title {
  color: #fff;
}

.vid-desc-benefit-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 245, 241, 0.45);
  line-height: 1.65;
  margin: 0;
  transition: color 0.3s ease;
}

.vid-desc-benefit:hover .vid-desc-benefit-text {
  color: rgba(245, 245, 241, 0.65);
}

/* Large ghost number — bottom right watermark */
.vid-desc-benefit-num {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(245, 245, 241, 0.04);
  pointer-events: none;
  transition: color 0.35s ease;
  user-select: none;
}

.vid-desc-benefit:hover .vid-desc-benefit-num {
  color: rgba(229, 9, 20, 0.08);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .vid-desc-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 860px) {
  .vid-desc {
    padding: 80px 0 80px;
  }

  .vid-desc-inner {
    gap: 52px;
    padding-left: var(--vid-desc-pad-x);
  }

  .vid-desc-spine {
    display: none;
  }

  .vid-desc-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vid-desc-quote {
    position: static;
    transform: none;
  }

  .vid-desc-quote.vid-desc-in-view {
    transform: none;
  }
}

@media (max-width: 560px) {
  .vid-desc-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vid-desc-benefit {
    flex-direction: row;
    align-items: flex-start;
    padding: 20px 18px;
    gap: 14px;
  }

  .vid-desc-benefit-body {
    flex: 1;
  }

  .vid-desc-benefit-num {
    display: none;
  }

  .vid-desc-heading {
    font-size: clamp(40px, 12vw, 64px);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .vid-desc-header,
  .vid-desc-para,
  .vid-desc-quote,
  .vid-desc-benefit,
  .vid-desc-spine-line {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   VIDEOGRAPHY SUB-SERVICES GRID — vid-services.css
   Prefix: vid-svc-*
   Aesthetic: Cinematic / Film Production / Premium Dark
   Connects with: vid-hero.css, vid-desc.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ── Root (mirrors existing tokens) ── */
:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
  --vid-svc-pad-x: clamp(24px, 6vw, 100px);
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.vid-svc {
  position: relative;
  width: 100%;
  background: var(--ink);
  padding: 120px 0 100px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

/* ══════════════════════════════════════════════
   BACKGROUND
══════════════════════════════════════════════ */
.vid-svc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Subtle dot-grid texture */
.vid-svc-grid-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(245, 245, 241, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 20%, rgba(0,0,0,0.6) 80%, transparent 100%);
}

/* Ambient glow left */
.vid-svc-ambient {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
}

.vid-svc-ambient--left {
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(229,9,20,0.05) 0%, transparent 65%);
}

.vid-svc-ambient--right {
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(229,9,20,0.04) 0%, transparent 60%);
}

/* Top separator red line */
.vid-svc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.35) 50%, transparent);
  z-index: 1;
}

/* Bottom separator */
.vid-svc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,245,241,0.06) 50%, transparent);
  z-index: 1;
}

/* ══════════════════════════════════════════════
   VERTICAL SPINE
══════════════════════════════════════════════ */
.vid-svc-spine {
  position: absolute;
  left: clamp(14px, 2.5vw, 40px);
  top: 120px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 2;
  pointer-events: none;
}

.vid-svc-spine-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(229,9,20,0.4);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.vid-svc-spine-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, rgba(229,9,20,0.3), rgba(245,245,241,0.06) 60%, transparent);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.vid-svc-spine-line.vid-svc-in-view {
  transform: scaleY(1);
}

/* ══════════════════════════════════════════════
   INNER LAYOUT
══════════════════════════════════════════════ */
.vid-svc-inner {
  position: relative;
  z-index: 2;
  padding: 0 var(--vid-svc-pad-x);
  padding-left: calc(var(--vid-svc-pad-x) + 40px);
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.vid-svc-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 700px;
  /* Scroll reveal */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.vid-svc-header.vid-svc-in-view {
  opacity: 1;
  transform: translateY(0);
}

.vid-svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.vid-svc-eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--red);
  opacity: 0.7;
}

.vid-svc-eyebrow-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
}

.vid-svc-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--ice);
  margin: 0;
}

.vid-svc-heading-line {
  display: block;
}

.vid-svc-heading-line--em {
  -webkit-text-stroke: 2px rgba(245, 245, 241, 0.55);
  color: transparent;
}

.vid-svc-heading-sub {
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 245, 241, 0.45);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════════════
   SERVICES LIST / GRID
══════════════════════════════════════════════ */
.vid-svc-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(245, 245, 241, 0.06);
}

/* ── Single Item Row ── */
.vid-svc-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 52px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(245, 245, 241, 0.06);
  cursor: default;
  overflow: hidden;
  transition:
    background 0.4s ease,
    padding-left 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);

  /* Scroll reveal */
  opacity: 0;
  transform: translateX(-16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    background 0.4s ease,
    padding-left 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.vid-svc-item.vid-svc-in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger */
.vid-svc-item:nth-child(1) { transition-delay: 0s; }
.vid-svc-item:nth-child(2) { transition-delay: 0.07s; }
.vid-svc-item:nth-child(3) { transition-delay: 0.14s; }
.vid-svc-item:nth-child(4) { transition-delay: 0.21s; }
.vid-svc-item:nth-child(5) { transition-delay: 0.28s; }
.vid-svc-item:nth-child(6) { transition-delay: 0.35s; }
.vid-svc-item:nth-child(7) { transition-delay: 0.42s; }

.vid-svc-item:hover {
  background: rgba(229, 9, 20, 0.04);
  padding-left: 12px;
}

/* Red sweep track — fills from left on hover */
.vid-svc-item-track {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 0 14px var(--glow);
}

.vid-svc-item:hover .vid-svc-item-track {
  transform: scaleY(1);
}

/* Index number */
.vid-svc-item-index {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(229, 9, 20, 0.35);
  line-height: 1;
  white-space: nowrap;
  transition: color 0.3s ease;
  user-select: none;
}

.vid-svc-item:hover .vid-svc-item-index {
  color: rgba(229, 9, 20, 0.8);
}

/* Icon container */
.vid-svc-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(229, 9, 20, 0.08);
  border: 1px solid rgba(229, 9, 20, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease;
}

.vid-svc-item-icon svg {
  width: 18px;
  height: 18px;
  transition: transform 0.35s ease;
}

.vid-svc-item:hover .vid-svc-item-icon {
  background: rgba(229, 9, 20, 0.18);
  border-color: rgba(229, 9, 20, 0.4);
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.2);
}

.vid-svc-item:hover .vid-svc-item-icon svg {
  transform: scale(1.1);
}

/* Body — title + description + tags */
.vid-svc-item-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.vid-svc-item-title {
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 600;
  color: var(--ice);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.vid-svc-item:hover .vid-svc-item-title {
  color: #fff;
}

.vid-svc-item-desc {
  font-size: clamp(12px, 1.25vw, 14px);
  font-weight: 300;
  color: rgba(245, 245, 241, 0.42);
  line-height: 1.65;
  margin: 0;
  max-width: 560px;
  transition: color 0.3s ease;
}

.vid-svc-item:hover .vid-svc-item-desc {
  color: rgba(245, 245, 241, 0.62);
}

/* Tags / Deliverables */
.vid-svc-item-tags {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vid-svc-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(245, 245, 241, 0.09);
  background: rgba(245, 245, 241, 0.03);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: rgba(245, 245, 241, 0.35);
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.vid-svc-item:hover .vid-svc-tag {
  border-color: rgba(229, 9, 20, 0.3);
  color: rgba(245, 245, 241, 0.65);
  background: rgba(229, 9, 20, 0.06);
}

/* Arrow CTA */
.vid-svc-item-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245, 245, 241, 0.08);
  color: rgba(245, 245, 241, 0.2);
  flex-shrink: 0;
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    background 0.3s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vid-svc-item:hover .vid-svc-item-cta {
  border-color: rgba(229, 9, 20, 0.5);
  color: var(--red);
  background: rgba(229, 9, 20, 0.08);
  transform: translateX(4px);
}

/* ══════════════════════════════════════════════
   FOOTER CTA STRIP
══════════════════════════════════════════════ */
.vid-svc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  background: rgba(245, 245, 241, 0.025);
  border: 1px solid rgba(245, 245, 241, 0.07);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  /* Scroll reveal */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}

.vid-svc-footer.vid-svc-in-view {
  opacity: 1;
  transform: translateY(0);
}

.vid-svc-footer-text {
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 245, 241, 0.5);
  margin: 0;
}

.vid-svc-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ice);
  text-decoration: none;
  flex-shrink: 0;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}

.vid-svc-footer-cta:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(229, 9, 20, 0.35);
}

.vid-svc-footer-cta svg {
  transition: transform 0.3s ease;
}

.vid-svc-footer-cta:hover svg {
  transform: translateX(4px);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .vid-svc {
    padding: 80px 0 80px;
  }

  .vid-svc-inner {
    gap: 48px;
    padding-left: var(--vid-svc-pad-x);
  }

  .vid-svc-spine {
    display: none;
  }

  .vid-svc-item {
    grid-template-columns: 44px 44px 1fr auto;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .vid-svc-item {
    grid-template-columns: 36px 1fr auto;
    gap: 14px;
    padding: 22px 0;
  }

  /* Hide numeric index on smallest screens */
  .vid-svc-item-index {
    display: none;
  }

  .vid-svc-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }

  .vid-svc-item-icon svg {
    width: 16px;
    height: 16px;
  }

  .vid-svc-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
  }

  .vid-svc-footer-cta {
    width: 100%;
    justify-content: center;
  }

  .vid-svc-item-desc {
    display: none;
  }

  .vid-svc-item-tags {
    gap: 4px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .vid-svc-header,
  .vid-svc-item,
  .vid-svc-footer,
  .vid-svc-spine-line {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .vid-svc-item-track {
    transition: none !important;
  }
}

/* ============================================================
   VIDEOGRAPHY PORTFOLIO — vid-portfolio.css
   Prefix: vid-pf-*
   Aesthetic: Cinematic / Film-frame editorial / Premium Dark
   Connects with: vid-hero.css, vid-desc.css, vid-services.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
  --vid-pf-pad-x: clamp(24px, 6vw, 100px);
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.vid-pf {
  position: relative;
  width: 100%;
  background: #0d0d0d; /* 1-step lighter than ink — visual break */
  padding: 120px 0 100px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

/* Top separator */
.vid-pf::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.3) 50%, transparent);
  z-index: 1;
}

/* Bottom separator */
.vid-pf::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,245,241,0.06) 50%, transparent);
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BACKGROUND
══════════════════════════════════════════════ */
.vid-pf-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.vid-pf-ambient {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(229,9,20,0.04) 0%, transparent 65%);
}

/* Film-grain overlay */
.vid-pf-grain {
  position: absolute;
  inset: -20%;
  width: 140%; height: 140%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* ══════════════════════════════════════════════
   SPINE
══════════════════════════════════════════════ */
.vid-pf-spine {
  position: absolute;
  left: clamp(14px, 2.5vw, 40px);
  top: 120px; bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 2;
  pointer-events: none;
}

.vid-pf-spine-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(229,9,20,0.4);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.vid-pf-spine-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, rgba(229,9,20,0.3), rgba(245,245,241,0.06) 60%, transparent);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.vid-pf-spine-line.vid-pf-in-view {
  transform: scaleY(1);
}

/* ══════════════════════════════════════════════
   INNER LAYOUT
══════════════════════════════════════════════ */
.vid-pf-inner {
  position: relative;
  z-index: 2;
  padding: 0 var(--vid-pf-pad-x);
  padding-left: calc(var(--vid-pf-pad-x) + 40px);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.vid-pf-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.vid-pf-header.vid-pf-in-view {
  opacity: 1;
  transform: translateY(0);
}

.vid-pf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.vid-pf-eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--red);
  opacity: 0.7;
}

.vid-pf-eyebrow-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
}

.vid-pf-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.vid-pf-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--ice);
  margin: 0;
}

.vid-pf-heading-line { display: block; }

.vid-pf-heading-line--em {
  -webkit-text-stroke: 2px rgba(245, 245, 241, 0.55);
  color: transparent;
}

.vid-pf-heading-sub {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 245, 241, 0.4);
  line-height: 1.7;
  margin: 0;
  text-align: right;
  max-width: 240px;
}

/* ══════════════════════════════════════════════
   FILTER BAR
══════════════════════════════════════════════ */
.vid-pf-filters {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.vid-pf-filters.vid-pf-in-view {
  opacity: 1;
  transform: translateY(0);
}

.vid-pf-filter {
  position: relative;
  z-index: 1;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(245, 245, 241, 0.1);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(245, 245, 241, 0.45);
  cursor: pointer;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.vid-pf-filter:hover {
  color: rgba(245, 245, 241, 0.8);
  border-color: rgba(245, 245, 241, 0.22);
}

.vid-pf-filter--active,
.vid-pf-filter[aria-pressed="true"] {
  background: var(--red);
  border-color: var(--red);
  color: var(--ice);
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
}

.vid-pf-filter--active:hover,
.vid-pf-filter[aria-pressed="true"]:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

/* Sliding ink pill (decorative) */
.vid-pf-filter-ink {
  display: none; /* JS-driven — reserved for future JS-animated pill */
}

/* ══════════════════════════════════════════════
   MASONRY-STYLE GRID
══════════════════════════════════════════════ */
.vid-pf-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

/* Default card: 4 cols × 1 row */
.vid-pf-card {
  grid-column: span 4;
  grid-row: span 1;
}

/* Large card: 6 cols × 2 rows */
.vid-pf-card--large {
  grid-column: span 6;
  grid-row: span 2;
}

/* Tall card: 4 cols × 2 rows */
.vid-pf-card--tall {
  grid-column: span 4;
  grid-row: span 2;
}

/* ── Card Shell ── */
.vid-pf-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(245, 245, 241, 0.03);
  border: 1px solid rgba(245, 245, 241, 0.07);
  cursor: pointer;

  /* Scroll reveal */
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.vid-pf-card.vid-pf-in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger */
.vid-pf-card:nth-child(1)  { transition-delay: 0s;    }
.vid-pf-card:nth-child(2)  { transition-delay: 0.06s; }
.vid-pf-card:nth-child(3)  { transition-delay: 0.12s; }
.vid-pf-card:nth-child(4)  { transition-delay: 0.05s; }
.vid-pf-card:nth-child(5)  { transition-delay: 0.10s; }
.vid-pf-card:nth-child(6)  { transition-delay: 0.04s; }
.vid-pf-card:nth-child(7)  { transition-delay: 0.09s; }
.vid-pf-card:nth-child(8)  { transition-delay: 0.14s; }
.vid-pf-card:nth-child(9)  { transition-delay: 0.08s; }
.vid-pf-card:nth-child(10) { transition-delay: 0.13s; }
.vid-pf-card:nth-child(11) { transition-delay: 0.07s; }
.vid-pf-card:nth-child(12) { transition-delay: 0.11s; }

.vid-pf-card:hover {
  border-color: rgba(229, 9, 20, 0.35);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5), 0 0 30px rgba(229,9,20,0.1);
}

/* ── Card Media ── */
.vid-pf-card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.vid-pf-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.vid-pf-card:hover .vid-pf-card-img {
  transform: scale(1.12);
}

/* Dark overlay — heavier at bottom */
.vid-pf-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.1) 100%),
    linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, transparent 30%);
  transition: background 0.4s ease;
}

.vid-pf-card:hover .vid-pf-card-overlay {
  background:
    linear-gradient(to top, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.2) 100%),
    linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, transparent 30%);
}

/* ── Play Button ── */
.vid-pf-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(229, 9, 20, 0.85);
  border: 2px solid rgba(229, 9, 20, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ice);
  opacity: 0;
  transition:
    opacity 0.35s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.vid-pf-card-play svg {
  width: 18px;
  height: 18px;
  margin-left: 3px; /* optical center for play icon */
}

.vid-pf-card:hover .vid-pf-card-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 0 40px rgba(229, 9, 20, 0.5);
}

/* ── Film Sprocket Holes ── */
.vid-pf-sprocket {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 8px 0;
  gap: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vid-pf-sprocket--left { left: 6px; }
.vid-pf-sprocket--right { right: 6px; }

.vid-pf-card:hover .vid-pf-sprocket {
  opacity: 1;
}

.vid-pf-sprocket span {
  display: block;
  width: 8px;
  height: 10px;
  border-radius: 2px;
  border: 1px solid rgba(229, 9, 20, 0.4);
  background: rgba(10,10,10,0.6);
}

/* ── Card Info Overlay ── */
.vid-pf-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transform: translateY(4px);
  transition: transform 0.4s ease;
}

.vid-pf-card:hover .vid-pf-card-info {
  transform: translateY(0);
}

.vid-pf-card-cat {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1;
}

.vid-pf-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 600;
  color: var(--ice);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.vid-pf-card-tags {
  font-size: 10px;
  font-weight: 300;
  color: rgba(245, 245, 241, 0.35);
  letter-spacing: 0.04em;
  line-height: 1;
  display: block;
  transition: color 0.3s ease;
}

.vid-pf-card:hover .vid-pf-card-tags {
  color: rgba(245, 245, 241, 0.55);
}

/* ── Invisible full-card trigger button ── */
.vid-pf-card-trigger {
  position: absolute;
  inset: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 5;
}

/* ── Filtering hidden state ── */
.vid-pf-card.vid-pf-card--hidden {
  opacity: 0 !important;
  transform: scale(0.95) !important;
  pointer-events: none;
  position: absolute; /* pull out of flow */
  visibility: hidden;
}

/* ══════════════════════════════════════════════
   MORE / VIEW ALL STRIP
══════════════════════════════════════════════ */
.vid-pf-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: rgba(245, 245, 241, 0.025);
  border: 1px solid rgba(245, 245, 241, 0.07);
  border-radius: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

.vid-pf-more.vid-pf-in-view {
  opacity: 1;
  transform: translateY(0);
}

.vid-pf-more-count {
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 245, 241, 0.4);
}

.vid-pf-more-count-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  font-style: normal;
  color: var(--red);
  vertical-align: baseline;
}

.vid-pf-more-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ice);
  text-decoration: none;
  flex-shrink: 0;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}

.vid-pf-more-cta:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(229, 9, 20, 0.35);
}

.vid-pf-more-cta svg {
  transition: transform 0.3s ease;
}

.vid-pf-more-cta:hover svg {
  transform: translateX(4px);
}

/* ══════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════ */
.vid-pf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.vid-pf-lightbox[hidden] {
  display: none;
}

.vid-pf-lightbox.vid-pf-lb--visible {
  display: flex;
  animation: vid-pf-lb-appear 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes vid-pf-lb-appear {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Backdrop */
.vid-pf-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
}

/* Panel */
.vid-pf-lb-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  background: #141414;
  border: 1px solid rgba(245, 245, 241, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 320px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 60px rgba(229,9,20,0.08);
  transform: scale(0.95) translateY(20px);
  animation: vid-pf-panel-rise 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
  opacity: 0;
}

@keyframes vid-pf-panel-rise {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Close button */
.vid-pf-lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 245, 241, 0.08);
  border: 1px solid rgba(245, 245, 241, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 245, 241, 0.6);
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vid-pf-lb-close svg {
  width: 16px;
  height: 16px;
}

.vid-pf-lb-close:hover {
  background: rgba(229, 9, 20, 0.15);
  color: var(--red);
  transform: scale(1.1) rotate(90deg);
}

/* Lightbox media */
.vid-pf-lb-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  align-self: stretch;
}

.vid-pf-lb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vid-pf-lb-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 60%, #141414 100%),
    linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 40%);
}

/* Clapperboard accent */
.vid-pf-lb-clap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 28px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.vid-pf-lb-clap-stripes {
  flex: 1;
  background: repeating-linear-gradient(
    90deg,
    rgba(229,9,20,0.7) 0px,
    rgba(229,9,20,0.7) 18px,
    rgba(10,10,10,0.85) 18px,
    rgba(10,10,10,0.85) 30px
  );
  opacity: 0.6;
}

.vid-pf-lb-clap-info {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: linear-gradient(to right, rgba(10,10,10,0.6) 0%, transparent 50%);
}

.vid-pf-lb-clap-cat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ice);
  opacity: 0.8;
}

/* Play button inside lightbox */
.vid-pf-lb-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(229, 9, 20, 0.9);
  border: 2px solid rgba(229, 9, 20, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ice);
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease;
  box-shadow: 0 0 30px rgba(229, 9, 20, 0.4);
  z-index: 2;
}

.vid-pf-lb-play-btn svg {
  width: 22px;
  height: 22px;
  margin-left: 4px;
}

.vid-pf-lb-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 50px rgba(229, 9, 20, 0.6);
}

/* Lightbox info panel */
.vid-pf-lb-info {
  padding: 40px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.vid-pf-lb-cat {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
}

.vid-pf-lb-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: var(--ice);
  margin: 0;
}

.vid-pf-lb-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 245, 241, 0.55);
  line-height: 1.7;
  margin: 0;
}

.vid-pf-lb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vid-pf-lb-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(229, 9, 20, 0.25);
  background: rgba(229, 9, 20, 0.07);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(245, 245, 241, 0.55);
}

.vid-pf-lb-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ice);
  text-decoration: none;
  margin-top: 4px;
  align-self: flex-start;
  transition:
    background 0.3s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}

.vid-pf-lb-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(229, 9, 20, 0.35);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .vid-pf-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
  }

  .vid-pf-card        { grid-column: span 3; }
  .vid-pf-card--large { grid-column: span 6; grid-row: span 2; }
  .vid-pf-card--tall  { grid-column: span 3; grid-row: span 2; }
}

@media (max-width: 860px) {
  .vid-pf {
    padding: 80px 0 80px;
  }

  .vid-pf-inner {
    gap: 36px;
    padding-left: var(--vid-pf-pad-x);
  }

  .vid-pf-spine { display: none; }

  .vid-pf-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .vid-pf-heading-sub {
    text-align: left;
    max-width: 100%;
  }

  .vid-pf-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
  }

  .vid-pf-card        { grid-column: span 2; }
  .vid-pf-card--large { grid-column: span 4; grid-row: span 2; }
  .vid-pf-card--tall  { grid-column: span 2; grid-row: span 2; }

  .vid-pf-lb-panel {
    grid-template-columns: 1fr;
    max-height: 90svh;
    overflow-y: auto;
    max-width: 540px;
  }

  .vid-pf-lb-media {
    aspect-ratio: 16/9;
  }

  .vid-pf-lb-overlay {
    background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 50%);
  }
}

@media (max-width: 560px) {
  .vid-pf-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
    gap: 10px;
  }

  .vid-pf-card        { grid-column: span 1; }
  .vid-pf-card--large { grid-column: span 2; grid-row: span 2; }
  .vid-pf-card--tall  { grid-column: span 1; grid-row: span 2; }

  .vid-pf-filters {
    gap: 6px;
  }

  .vid-pf-filter {
    padding: 6px 14px;
    font-size: 11px;
  }

  .vid-pf-more {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 18px;
  }

  .vid-pf-more-cta {
    width: 100%;
    justify-content: center;
  }

  .vid-pf-sprocket { display: none; }

  .vid-pf-lb-panel {
    max-width: 100%;
    border-radius: 12px;
  }

  .vid-pf-lb-info {
    padding: 24px 20px 28px;
    gap: 12px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .vid-pf-header,
  .vid-pf-filters,
  .vid-pf-card,
  .vid-pf-more,
  .vid-pf-spine-line,
  .vid-pf-lb-panel,
  .vid-pf-lightbox {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .vid-pf-card-img { transition: none !important; }
}

/* ============================================================
   VIDEOGRAPHY PROCESS / WORKFLOW — vid-process.css
   Prefix: vid-proc-*
   Aesthetic: Cinematic film-strip editorial / Premium Dark
   Connects with: vid-hero, vid-desc, vid-services, vid-portfolio
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
  --vid-proc-pad-x: clamp(24px, 6vw, 100px);
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.vid-proc {
  position: relative;
  width: 100%;
  background: var(--ink);
  padding: 120px 0 100px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

.vid-proc::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.3) 50%, transparent);
  z-index: 1;
}

.vid-proc::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,245,241,0.06) 50%, transparent);
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BACKGROUND
══════════════════════════════════════════════ */
.vid-proc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.vid-proc-ambient {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
}

.vid-proc-ambient--tl {
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(229,9,20,0.05) 0%, transparent 60%);
}

.vid-proc-ambient--br {
  bottom: -200px; right: -200px;
  background: radial-gradient(circle, rgba(229,9,20,0.04) 0%, transparent 60%);
}

.vid-proc-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 3px,
    rgba(0,0,0,0.03) 3px, rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
  opacity: 0.6;
}

/* ══════════════════════════════════════════════
   SPINE
══════════════════════════════════════════════ */
.vid-proc-spine {
  position: absolute;
  left: clamp(14px, 2.5vw, 40px);
  top: 120px; bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 2;
  pointer-events: none;
}

.vid-proc-spine-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(229,9,20,0.4);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.vid-proc-spine-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, rgba(229,9,20,0.3), rgba(245,245,241,0.06) 60%, transparent);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.vid-proc-spine-line.vid-proc-in-view { transform: scaleY(1); }

/* ══════════════════════════════════════════════
   INNER
══════════════════════════════════════════════ */
.vid-proc-inner {
  position: relative;
  z-index: 2;
  padding: 0 var(--vid-proc-pad-x);
  padding-left: calc(var(--vid-proc-pad-x) + 40px);
  display: flex;
  flex-direction: column;
  gap: 52px;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.vid-proc-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.vid-proc-header.vid-proc-in-view {
  opacity: 1;
  transform: translateY(0);
}

.vid-proc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.vid-proc-eyebrow-line {
  display: block;
  width: 32px; height: 1px;
  background: var(--red);
  opacity: 0.7;
}

.vid-proc-eyebrow-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
}

.vid-proc-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.vid-proc-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--ice);
  margin: 0;
}

.vid-proc-heading-line { display: block; }

.vid-proc-heading-line--em {
  -webkit-text-stroke: 2px rgba(245,245,241,0.55);
  color: transparent;
}

.vid-proc-heading-sub {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300;
  font-style: italic;
  color: rgba(245,245,241,0.4);
  line-height: 1.7;
  margin: 0;
  text-align: right;
  max-width: 260px;
}

/* ══════════════════════════════════════════════
   PHASE TAB BAR
══════════════════════════════════════════════ */
.vid-proc-phase-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.vid-proc-phase-bar.vid-proc-in-view {
  opacity: 1;
  transform: translateY(0);
}

.vid-proc-phase-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid rgba(245,245,241,0.1);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(245,245,241,0.4);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.vid-proc-phase-tab svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.vid-proc-phase-tab:hover {
  color: rgba(245,245,241,0.75);
  border-color: rgba(245,245,241,0.2);
}

.vid-proc-phase-tab:hover svg { opacity: 0.75; }

.vid-proc-phase-tab--active,
.vid-proc-phase-tab[aria-selected="true"] {
  background: var(--red);
  border-color: var(--red);
  color: var(--ice);
  box-shadow: 0 0 20px rgba(229,9,20,0.3);
}

.vid-proc-phase-tab--active svg,
.vid-proc-phase-tab[aria-selected="true"] svg { opacity: 1; }

/* ══════════════════════════════════════════════
   PANEL + FILM STRIP
══════════════════════════════════════════════ */
.vid-proc-panel {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.vid-proc-panel--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: static;
  width: auto; height: auto;
  clip: auto;
  overflow: visible;
}

/* Film strip container */
.vid-proc-film-strip {
  position: relative;
  background: #111;
  border: 1px solid rgba(245,245,241,0.07);
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
}

/* Sprocket holes top & bottom */
.vid-proc-film-holes {
  display: flex;
  gap: 0;
  padding: 0 20px;
  background: #0d0d0d;
  border-bottom: 1px solid rgba(245,245,241,0.05);
  height: 26px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.vid-proc-film-holes--bottom {
  border-bottom: none;
  border-top: 1px solid rgba(245,245,241,0.05);
}

.vid-proc-film-holes span {
  display: block;
  width: 18px; height: 14px;
  border-radius: 3px;
  border: 1px solid rgba(229,9,20,0.2);
  background: rgba(229,9,20,0.04);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   STEPS LAYOUT — horizontal scroll-snapping strip
══════════════════════════════════════════════ */
.vid-proc-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}

/* Connecting line between steps */
.vid-proc-steps::before {
  content: '';
  position: absolute;
  top: 68px; /* aligned with icon center */
  left: calc(100% / 12); /* start at center of first cell */
  right: calc(100% / 12);
  height: 1px;
  background: linear-gradient(to right,
    rgba(229,9,20,0.5),
    rgba(229,9,20,0.2) 50%,
    rgba(229,9,20,0.05)
  );
  z-index: 0;
  pointer-events: none;
}

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

.vid-proc-steps--compact::before {
  top: 68px;
  left: calc(100% / 8);
  right: calc(100% / 8);
}

/* ── Single Step ── */
.vid-proc-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px 32px;
  gap: 16px;
  border-right: 1px solid rgba(245,245,241,0.05);
  cursor: default;
  transition: background 0.35s ease;
}

.vid-proc-step:last-child { border-right: none; }

.vid-proc-step:hover {
  background: rgba(229,9,20,0.03);
}

/* ── Step frame — the "film frame" icon box ── */
.vid-proc-step-frame {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 12px;
  background: rgba(229,9,20,0.08);
  border: 1px solid rgba(229,9,20,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease;
}

.vid-proc-step:hover .vid-proc-step-frame {
  background: rgba(229,9,20,0.18);
  border-color: rgba(229,9,20,0.5);
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.4), 0 0 24px rgba(229,9,20,0.2);
}

/* Timecode label in top-left of frame */
.vid-proc-step-tc {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(229,9,20,0.4);
  white-space: nowrap;
}

.vid-proc-step:hover .vid-proc-step-tc {
  color: rgba(229,9,20,0.8);
}

.vid-proc-step-icon {
  color: var(--red);
}

.vid-proc-step-icon svg {
  width: 22px; height: 22px;
  transition: transform 0.35s ease;
}

.vid-proc-step:hover .vid-proc-step-icon svg {
  transform: scale(1.1) rotate(-5deg);
}

/* Step connector dot — sits on the horizontal line */
.vid-proc-step::before {
  content: '';
  position: absolute;
  top: 68px; /* same as line Y */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(229,9,20,0.4);
  border: 1px solid rgba(229,9,20,0.6);
  z-index: 2;
  transition: background 0.3s, box-shadow 0.3s, transform 0.35s;
}

.vid-proc-step:hover::before {
  background: var(--red);
  box-shadow: 0 0 12px var(--glow);
  transform: translate(-50%, -50%) scale(1.4);
}

/* ── Step Body text ── */
.vid-proc-step-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.vid-proc-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(229,9,20,0.45);
  line-height: 1;
  transition: color 0.3s;
}

.vid-proc-step:hover .vid-proc-step-num {
  color: var(--red);
}

.vid-proc-step-title {
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 600;
  color: var(--ice);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.vid-proc-step:hover .vid-proc-step-title { color: #fff; }

.vid-proc-step-desc {
  font-size: 11px;
  font-weight: 300;
  color: rgba(245,245,241,0.38);
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s;
  max-width: 160px;
}

.vid-proc-step:hover .vid-proc-step-desc {
  color: rgba(245,245,241,0.6);
}

/* ── Step meta tags ── */
.vid-proc-step-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin-top: 4px;
}

.vid-proc-step-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid rgba(229,9,20,0.18);
  background: rgba(229,9,20,0.05);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: rgba(245,245,241,0.35);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.vid-proc-step:hover .vid-proc-step-tag {
  border-color: rgba(229,9,20,0.35);
  color: rgba(245,245,241,0.6);
  background: rgba(229,9,20,0.1);
}

/* ══════════════════════════════════════════════
   FOOTER CTA
══════════════════════════════════════════════ */
.vid-proc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  background: rgba(245,245,241,0.025);
  border: 1px solid rgba(245,245,241,0.07);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

.vid-proc-footer.vid-proc-in-view {
  opacity: 1;
  transform: translateY(0);
}

.vid-proc-footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vid-proc-footer-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.04em;
  color: var(--ice);
  line-height: 1;
}

.vid-proc-footer-sub {
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: rgba(245,245,241,0.4);
  margin: 0;
}

.vid-proc-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ice);
  text-decoration: none;
  flex-shrink: 0;
  transition:
    background 0.3s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}

.vid-proc-footer-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(229,9,20,0.35);
}

.vid-proc-footer-cta svg { transition: transform 0.3s; }
.vid-proc-footer-cta:hover svg { transform: translateX(4px); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .vid-proc-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .vid-proc-steps::before { top: 68px; }

  .vid-proc-steps--compact {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Re-draw connector line — vertical on small grids */
  .vid-proc-steps--compact::before { display: none; }
}

@media (max-width: 900px) {
  .vid-proc {
    padding: 80px 0 80px;
  }

  .vid-proc-inner {
    gap: 40px;
    padding-left: var(--vid-proc-pad-x);
  }

  .vid-proc-spine { display: none; }

  .vid-proc-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .vid-proc-heading-sub { text-align: left; max-width: 100%; }

  .vid-proc-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .vid-proc-steps::before { display: none; }
  .vid-proc-step::before  { display: none; }

  .vid-proc-step {
    border-right: none;
    border-bottom: 1px solid rgba(245,245,241,0.05);
    text-align: left;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
  }

  .vid-proc-step:last-child { border-bottom: none; }

  .vid-proc-step-body { align-items: flex-start; text-align: left; }
  .vid-proc-step-meta { justify-content: flex-start; }
  .vid-proc-step-desc { max-width: 100%; }

  .vid-proc-step-tc {
    position: static;
    transform: none;
    display: block;
    margin-bottom: -4px;
  }

  .vid-proc-steps--compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .vid-proc-steps {
    grid-template-columns: 1fr;
  }

  .vid-proc-phase-tab span { display: none; }
  .vid-proc-phase-tab {
    padding: 8px 12px;
    gap: 0;
  }
  .vid-proc-phase-tab svg { opacity: 0.7; }
  .vid-proc-phase-tab--active svg,
  .vid-proc-phase-tab[aria-selected="true"] svg { opacity: 1; }

  .vid-proc-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px;
    gap: 16px;
  }

  .vid-proc-footer-cta {
    width: 100%;
    justify-content: center;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .vid-proc-header,
  .vid-proc-phase-bar,
  .vid-proc-panel,
  .vid-proc-footer,
  .vid-proc-spine-line,
  .vid-proc-step-frame,
  .vid-proc-step-icon svg {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   TOOLS & TECHNOLOGY — vid-tools.css
   Prefix: vid-tools-*
   Aesthetic: Broadcast HUD / Cinema-grade tech brief / Dark
   Connects with: vid-hero, vid-desc, vid-services, vid-portfolio, vid-process
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=DM+Mono:wght@300;400&display=swap');

:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
  --vid-tools-pad-x: clamp(24px, 6vw, 100px);

  /* Category accent colours */
  --cat-cameras:  #E50914;
  --cat-lenses:   #4a90e2;
  --cat-audio:    #2ecc71;
  --cat-drones:   #f39c12;
  --cat-software: #00b4d8;
  --cat-lighting: #e67e22;
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.vid-tools {
  position: relative;
  width: 100%;
  background: #0d0d0d;
  padding: 120px 0 100px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

.vid-tools::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.3) 50%, transparent);
  z-index: 1;
}

.vid-tools::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,245,241,0.06) 50%, transparent);
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BACKGROUND — Broadcast HUD grid
══════════════════════════════════════════════ */
.vid-tools-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Fine dot matrix */
.vid-tools-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,245,241,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,245,241,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.vid-tools-ambient {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
}

.vid-tools-ambient--tl {
  top: -180px; left: -180px;
  background: radial-gradient(circle, rgba(229,9,20,0.05) 0%, transparent 65%);
}

.vid-tools-ambient--br {
  bottom: -180px; right: -180px;
  background: radial-gradient(circle, rgba(74,144,226,0.04) 0%, transparent 65%);
}

/* HUD corner brackets */
.vid-tools-hud {
  position: absolute;
  width: 24px; height: 24px;
  opacity: 0;
  animation: vid-tools-hud-in 0.6s ease forwards;
}

.vid-tools-hud--tl { top: 20px; left: 20px; border-top: 1px solid rgba(229,9,20,0.3); border-left: 1px solid rgba(229,9,20,0.3); animation-delay: 0.8s; }
.vid-tools-hud--tr { top: 20px; right: 20px; border-top: 1px solid rgba(229,9,20,0.3); border-right: 1px solid rgba(229,9,20,0.3); animation-delay: 0.9s; }
.vid-tools-hud--bl { bottom: 20px; left: 20px; border-bottom: 1px solid rgba(229,9,20,0.3); border-left: 1px solid rgba(229,9,20,0.3); animation-delay: 1.0s; }
.vid-tools-hud--br { bottom: 20px; right: 20px; border-bottom: 1px solid rgba(229,9,20,0.3); border-right: 1px solid rgba(229,9,20,0.3); animation-delay: 1.1s; }

@keyframes vid-tools-hud-in {
  from { opacity: 0; transform: scale(1.5); }
  to   { opacity: 1; transform: scale(1); }
}

/* ══════════════════════════════════════════════
   SPINE
══════════════════════════════════════════════ */
.vid-tools-spine {
  position: absolute;
  left: clamp(14px, 2.5vw, 40px);
  top: 120px; bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 2;
  pointer-events: none;
}

.vid-tools-spine-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(229,9,20,0.4);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.vid-tools-spine-line {
  flex: 1; width: 1px;
  background: linear-gradient(to bottom, rgba(229,9,20,0.3), rgba(245,245,241,0.06) 60%, transparent);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.vid-tools-spine-line.vid-tools-in-view { transform: scaleY(1); }

/* ══════════════════════════════════════════════
   INNER
══════════════════════════════════════════════ */
.vid-tools-inner {
  position: relative;
  z-index: 2;
  padding: 0 var(--vid-tools-pad-x);
  padding-left: calc(var(--vid-tools-pad-x) + 40px);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.vid-tools-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.vid-tools-header.vid-tools-in-view { opacity: 1; transform: translateY(0); }

.vid-tools-eyebrow { display: inline-flex; align-items: center; gap: 12px; }

.vid-tools-eyebrow-line {
  display: block; width: 32px; height: 1px;
  background: var(--red); opacity: 0.7;
}

.vid-tools-eyebrow-text {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red);
}

.vid-tools-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.vid-tools-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--ice);
  margin: 0;
}

.vid-tools-heading-line { display: block; }

.vid-tools-heading-line--em {
  -webkit-text-stroke: 2px rgba(245,245,241,0.55);
  color: transparent;
}

.vid-tools-heading-sub {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.4);
  line-height: 1.7; margin: 0;
  text-align: right; max-width: 260px;
}

/* ══════════════════════════════════════════════
   CATEGORY FILTER BAR
══════════════════════════════════════════════ */
.vid-tools-cat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.vid-tools-cat-bar.vid-tools-in-view { opacity: 1; transform: translateY(0); }

.vid-tools-cat-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(245,245,241,0.1);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(245,245,241,0.4);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.vid-tools-cat-btn:hover {
  color: rgba(245,245,241,0.75);
  border-color: rgba(245,245,241,0.2);
}

.vid-tools-cat-btn--active,
.vid-tools-cat-btn[aria-selected="true"] {
  background: var(--red);
  border-color: var(--red);
  color: var(--ice);
  box-shadow: 0 0 20px rgba(229,9,20,0.3);
}

/* ══════════════════════════════════════════════
   TOOLS GRID
══════════════════════════════════════════════ */
.vid-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

/* ── Single Card ── */
.vid-tools-card {
  position: relative;
  background: rgba(245,245,241,0.03);
  border: 1px solid rgba(245,245,241,0.07);
  border-radius: 14px;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  cursor: default;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1),
    box-shadow 0.35s ease;

  /* Scroll reveal */
  opacity: 0;
  transform: translateY(24px) scale(0.98);
}

.vid-tools-card.vid-tools-in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger — 16 cards max */
.vid-tools-card:nth-child(1)  { transition-delay: 0s; }
.vid-tools-card:nth-child(2)  { transition-delay: 0.05s; }
.vid-tools-card:nth-child(3)  { transition-delay: 0.10s; }
.vid-tools-card:nth-child(4)  { transition-delay: 0.04s; }
.vid-tools-card:nth-child(5)  { transition-delay: 0.09s; }
.vid-tools-card:nth-child(6)  { transition-delay: 0.14s; }
.vid-tools-card:nth-child(7)  { transition-delay: 0.03s; }
.vid-tools-card:nth-child(8)  { transition-delay: 0.08s; }
.vid-tools-card:nth-child(9)  { transition-delay: 0.13s; }
.vid-tools-card:nth-child(10) { transition-delay: 0.06s; }
.vid-tools-card:nth-child(11) { transition-delay: 0.11s; }
.vid-tools-card:nth-child(12) { transition-delay: 0.07s; }
.vid-tools-card:nth-child(13) { transition-delay: 0.12s; }
.vid-tools-card:nth-child(14) { transition-delay: 0.05s; }
.vid-tools-card:nth-child(15) { transition-delay: 0.10s; }
.vid-tools-card:nth-child(16) { transition-delay: 0.08s; }

.vid-tools-card:hover {
  background: rgba(245,245,241,0.05);
  border-color: rgba(245,245,241,0.15);
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 24px 48px rgba(0,0,0,0.45);
}

/* Category stripe — left edge accent */
.vid-tools-card-cat-stripe {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  border-radius: 14px 0 0 14px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.vid-tools-card:hover .vid-tools-card-cat-stripe { opacity: 1; }

.vid-tools-stripe--cameras  { background: var(--cat-cameras);  box-shadow: 0 0 10px var(--cat-cameras); }
.vid-tools-stripe--lenses   { background: var(--cat-lenses);   box-shadow: 0 0 10px var(--cat-lenses); }
.vid-tools-stripe--audio    { background: var(--cat-audio);    box-shadow: 0 0 10px var(--cat-audio); }
.vid-tools-stripe--drones   { background: var(--cat-drones);   box-shadow: 0 0 10px var(--cat-drones); }
.vid-tools-stripe--software { background: var(--cat-software); box-shadow: 0 0 10px var(--cat-software); }
.vid-tools-stripe--lighting { background: var(--cat-lighting); box-shadow: 0 0 10px var(--cat-lighting); }

/* Card top row: logo + badge */
.vid-tools-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* ── Logo treatments ── */
.vid-tools-logo {
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
}

/* Text-based logo — Brand + Model stacked/inline */
.vid-tools-logo--text {
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.vid-tools-logo-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--logo-color, var(--ice));
  line-height: 1;
  text-shadow: 0 0 20px color-mix(in srgb, var(--logo-color, var(--ice)) 40%, transparent);
}

.vid-tools-logo-model {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(245,245,241,0.35);
  text-transform: uppercase;
}

/* Icon-based logo */
.vid-tools-logo--icon {
  width: 40px; height: 40px;
  border-radius: 9px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
}

.vid-tools-card:hover .vid-tools-logo--icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* ── Badges ── */
.vid-tools-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 100px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;

  /* Default: red (cameras) */
  border: 1px solid rgba(229,9,20,0.3);
  background: rgba(229,9,20,0.08);
  color: rgba(229,9,20,0.8);
}

.vid-tools-badge--blue {
  border-color: rgba(74,144,226,0.3);
  background: rgba(74,144,226,0.08);
  color: rgba(74,144,226,0.85);
}

.vid-tools-badge--green {
  border-color: rgba(46,204,113,0.3);
  background: rgba(46,204,113,0.08);
  color: rgba(46,204,113,0.85);
}

.vid-tools-badge--amber {
  border-color: rgba(243,156,18,0.3);
  background: rgba(243,156,18,0.08);
  color: rgba(243,156,18,0.85);
}

.vid-tools-badge--cyan {
  border-color: rgba(0,180,216,0.3);
  background: rgba(0,180,216,0.08);
  color: rgba(0,180,216,0.85);
}

/* ── Card body ── */
.vid-tools-card-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.vid-tools-card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ice);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: color 0.3s;
}

.vid-tools-card:hover .vid-tools-card-name { color: #fff; }

.vid-tools-card-spec {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 300;
  color: rgba(245,245,241,0.32);
  line-height: 1.55;
  margin: 0;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.vid-tools-card:hover .vid-tools-card-spec { color: rgba(245,245,241,0.55); }

/* Category watermark label — bottom right */
.vid-tools-card-cat-label {
  position: absolute;
  bottom: 12px; right: 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.06em;
  color: rgba(245,245,241,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.35s;
}

.vid-tools-card:hover .vid-tools-card-cat-label {
  color: rgba(245,245,241,0.06);
}

/* ── Aperture ring decoration — bottom right corner ── */
.vid-tools-card-aperture {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(245,245,241,0.04);
  box-shadow:
    inset 0 0 0 10px transparent,
    0 0 0 1px rgba(245,245,241,0.03),
    0 0 0 18px rgba(245,245,241,0.015);
  pointer-events: none;
  transition: border-color 0.4s ease, transform 0.6s ease;
}

.vid-tools-card:hover .vid-tools-card-aperture {
  border-color: rgba(245,245,241,0.08);
  transform: rotate(45deg) scale(1.1);
}

/* Hidden state for filtered-out cards */
.vid-tools-card--hidden {
  display: none;
}

/* ══════════════════════════════════════════════
   SUPPORT STRIP — "Also in the kit"
══════════════════════════════════════════════ */
.vid-tools-support-strip {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 28px;
  background: rgba(245,245,241,0.02);
  border: 1px solid rgba(245,245,241,0.06);
  border-radius: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}

.vid-tools-support-strip.vid-tools-in-view {
  opacity: 1;
  transform: translateY(0);
}

.vid-tools-support-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}

.vid-tools-support-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0.7;
}

.vid-tools-support-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: rgba(245,245,241,0.6);
  white-space: nowrap;
}

.vid-tools-support-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.vid-tools-support-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: 100px;
  border: 1px solid rgba(245,245,241,0.08);
  background: rgba(245,245,241,0.03);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(245,245,241,0.38);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  cursor: default;
}

.vid-tools-support-pill:hover {
  border-color: rgba(229,9,20,0.25);
  color: rgba(245,245,241,0.65);
  background: rgba(229,9,20,0.05);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.vid-tools-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 32px;
  background: rgba(245,245,241,0.025);
  border: 1px solid rgba(245,245,241,0.07);
  border-radius: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

.vid-tools-footer.vid-tools-in-view { opacity: 1; transform: translateY(0); }

.vid-tools-footer-text {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.45);
  margin: 0;
}

.vid-tools-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 8px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ice);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}

.vid-tools-footer-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(229,9,20,0.35);
}

.vid-tools-footer-cta svg { transition: transform 0.3s; }
.vid-tools-footer-cta:hover svg { transform: translateX(4px); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .vid-tools { padding: 80px 0; }
  .vid-tools-inner { gap: 36px; padding-left: var(--vid-tools-pad-x); }
  .vid-tools-spine { display: none; }
  .vid-tools-header-row { flex-direction: column; align-items: flex-start; }
  .vid-tools-heading-sub { text-align: left; max-width: 100%; }

  .vid-tools-support-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .vid-tools-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .vid-tools-card { padding: 16px 14px; gap: 10px; }

  .vid-tools-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 18px;
  }

  .vid-tools-footer-cta { width: 100%; justify-content: center; }

  .vid-tools-card-cat-label { font-size: 22px; }
}

@media (max-width: 400px) {
  .vid-tools-grid { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .vid-tools-header,
  .vid-tools-cat-bar,
  .vid-tools-card,
  .vid-tools-support-strip,
  .vid-tools-footer,
  .vid-tools-spine-line,
  .vid-tools-hud {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   VIDEOGRAPHY FAQ — vid-faq.css
   Prefix: vid-faq-*
   Aesthetic: Cinematic editorial / Premium Dark
   Connects with: all previous vid-* sections
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
  --vid-faq-pad-x: clamp(24px, 6vw, 100px);
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.vid-faq {
  position: relative;
  width: 100%;
  background: #0d0d0d;
  padding: 120px 0 100px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

.vid-faq::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.3) 50%, transparent);
  z-index: 1;
}

.vid-faq::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,245,241,0.06) 50%, transparent);
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BACKGROUND
══════════════════════════════════════════════ */
.vid-faq-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.vid-faq-texture {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg, transparent 0px, transparent 60px,
    rgba(245,245,241,0.01) 60px, rgba(245,245,241,0.01) 61px
  );
}

.vid-faq-ambient {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
}

.vid-faq-ambient--left {
  bottom: -150px; left: -150px;
  background: radial-gradient(circle, rgba(229,9,20,0.05) 0%, transparent 65%);
}

.vid-faq-ambient--right {
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(229,9,20,0.035) 0%, transparent 60%);
}

/* ══════════════════════════════════════════════
   SPINE
══════════════════════════════════════════════ */
.vid-faq-spine {
  position: absolute;
  left: clamp(14px, 2.5vw, 40px);
  top: 120px; bottom: 100px;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
  z-index: 2; pointer-events: none;
}

.vid-faq-spine-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.25em;
  color: rgba(229,9,20,0.4);
  writing-mode: vertical-rl; transform: rotate(180deg);
}

.vid-faq-spine-line {
  flex: 1; width: 1px; display: block;
  background: linear-gradient(to bottom, rgba(229,9,20,0.3), rgba(245,245,241,0.06) 60%, transparent);
  transform-origin: top; transform: scaleY(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.vid-faq-spine-line.vid-faq-in-view { transform: scaleY(1); }

/* ══════════════════════════════════════════════
   INNER + LAYOUT
══════════════════════════════════════════════ */
.vid-faq-inner {
  position: relative; z-index: 2;
  padding: 0 var(--vid-faq-pad-x);
  padding-left: calc(var(--vid-faq-pad-x) + 40px);
}

.vid-faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}

/* ══════════════════════════════════════════════
   LEFT — STICKY HEADER
══════════════════════════════════════════════ */
.vid-faq-left {
  position: sticky;
  top: 80px;
}

.vid-faq-header {
  display: flex; flex-direction: column; gap: 24px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.vid-faq-header.vid-faq-in-view { opacity: 1; transform: translateY(0); }

.vid-faq-eyebrow { display: inline-flex; align-items: center; gap: 12px; }

.vid-faq-eyebrow-line {
  display: block; width: 32px; height: 1px;
  background: var(--red); opacity: 0.7;
}

.vid-faq-eyebrow-text {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--red);
}

.vid-faq-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 4.5vw, 72px);
  line-height: 0.92; letter-spacing: 0.02em;
  color: var(--ice); margin: 0;
}

.vid-faq-heading-line { display: block; }

.vid-faq-heading-line--em {
  -webkit-text-stroke: 2px rgba(245,245,241,0.55);
  color: transparent;
}

.vid-faq-heading-sub {
  font-size: 14px; font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.42); line-height: 1.7; margin: 0;
}

/* ── Quick-jump nav ── */
.vid-faq-jumps {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 4px;
}

.vid-faq-jump {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(245,245,241,0.35);
  cursor: pointer; text-align: left;
  transition: color 0.25s, background 0.25s, border-color 0.25s, padding-left 0.3s cubic-bezier(0.34,1.2,0.64,1);
  position: relative;
}

.vid-faq-jump::before {
  content: '';
  display: block; width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.25s, transform 0.3s;
  flex-shrink: 0;
}

.vid-faq-jump:hover {
  color: rgba(245,245,241,0.7);
  background: rgba(245,245,241,0.04);
  border-color: rgba(245,245,241,0.07);
  padding-left: 18px;
}

.vid-faq-jump:hover::before { opacity: 0.6; }

.vid-faq-jump--active,
.vid-faq-jump[aria-current="true"] {
  color: var(--ice);
  background: rgba(229,9,20,0.07);
  border-color: rgba(229,9,20,0.2);
  padding-left: 18px;
}

.vid-faq-jump--active::before,
.vid-faq-jump[aria-current="true"]::before {
  opacity: 1;
  background: var(--red);
  box-shadow: 0 0 6px var(--glow);
}

/* ── Tape-reel counter ── */
.vid-faq-counter {
  display: flex; align-items: center; gap: 10px;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(245,245,241,0.06);
  border-radius: 10px;
  background: rgba(245,245,241,0.02);
}

.vid-faq-counter-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px; letter-spacing: 0.3em;
  color: rgba(245,245,241,0.2);
}

.vid-faq-counter-reel {
  width: 36px; height: 36px; flex-shrink: 0;
  animation: vid-faq-reel-spin 8s linear infinite;
}

.vid-faq-counter-reel svg { width: 36px; height: 36px; }

@keyframes vid-faq-reel-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.vid-faq-counter-num {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(245,245,241,0.3);
  margin-left: auto;
  transition: color 0.3s;
  font-variant-numeric: tabular-nums;
}

.vid-faq-counter-num.vid-faq-has-open {
  color: var(--red);
}

/* ══════════════════════════════════════════════
   RIGHT — ACCORDION LIST
══════════════════════════════════════════════ */
.vid-faq-right {
  display: flex; flex-direction: column; gap: 0;
}

.vid-faq-list {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(245,245,241,0.07);
}

/* ── Single FAQ Item ── */
.vid-faq-item {
  border-bottom: 1px solid rgba(245,245,241,0.07);
  opacity: 0; transform: translateX(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.vid-faq-item.vid-faq-in-view {
  opacity: 1; transform: translateX(0);
}

/* Stagger */
.vid-faq-item:nth-child(1) { transition-delay: 0s; }
.vid-faq-item:nth-child(2) { transition-delay: 0.07s; }
.vid-faq-item:nth-child(3) { transition-delay: 0.14s; }
.vid-faq-item:nth-child(4) { transition-delay: 0.21s; }
.vid-faq-item:nth-child(5) { transition-delay: 0.28s; }
.vid-faq-item:nth-child(6) { transition-delay: 0.35s; }
.vid-faq-item:nth-child(7) { transition-delay: 0.42s; }
.vid-faq-item:nth-child(8) { transition-delay: 0.49s; }

/* Hidden via filter */
.vid-faq-item--hidden {
  display: none;
}

/* ── Question button ── */
.vid-faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 36px 1fr 32px;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  background: transparent; border: none;
  cursor: pointer; text-align: left;
  transition: padding-left 0.3s cubic-bezier(0.34,1.2,0.64,1);
}

.vid-faq-q:hover { padding-left: 6px; }

.vid-faq-item[data-open="true"] .vid-faq-q {
  padding-left: 6px;
}

.vid-faq-q-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 0.2em;
  color: rgba(229,9,20,0.3);
  line-height: 1; white-space: nowrap;
  transition: color 0.3s;
}

.vid-faq-q:hover .vid-faq-q-num,
.vid-faq-item[data-open="true"] .vid-faq-q-num {
  color: rgba(229,9,20,0.8);
}

.vid-faq-q-text {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 500; color: rgba(245,245,241,0.75);
  line-height: 1.4; letter-spacing: -0.01em;
  transition: color 0.3s;
}

.vid-faq-q:hover .vid-faq-q-text,
.vid-faq-item[data-open="true"] .vid-faq-q-text {
  color: var(--ice);
}

/* ── Plus / X icon ── */
.vid-faq-q-icon {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(245,245,241,0.1);
  background: rgba(245,245,241,0.03);
  color: rgba(245,245,241,0.35);
  flex-shrink: 0;
  transition:
    border-color 0.3s, color 0.3s, background 0.3s,
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vid-faq-q-icon svg { width: 14px; height: 14px; }

/* Hover */
.vid-faq-q:hover .vid-faq-q-icon {
  border-color: rgba(229,9,20,0.4);
  background: rgba(229,9,20,0.06);
  color: var(--red);
}

/* Open state — rotate to X */
.vid-faq-item[data-open="true"] .vid-faq-q-icon {
  transform: rotate(45deg);
  border-color: rgba(229,9,20,0.5);
  background: rgba(229,9,20,0.1);
  color: var(--red);
  box-shadow: 0 0 12px rgba(229,9,20,0.2);
}

/* ── Answer panel ── */
.vid-faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* When not hidden (JS removes [hidden] + sets max-height) */
.vid-faq-a:not([hidden]) {
  /* max-height set dynamically by JS */
}

.vid-faq-a-inner {
  padding: 0 52px 28px;
  display: flex; flex-direction: column; gap: 14px;
}

.vid-faq-a-inner p {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300;
  color: rgba(245,245,241,0.58);
  line-height: 1.8; margin: 0;
}

.vid-faq-a-inner p strong { color: rgba(245,245,241,0.85); font-weight: 500; }
.vid-faq-a-inner p em { font-style: italic; color: rgba(245,245,241,0.5); }

/* Answer list */
.vid-faq-a-list {
  margin: 0; padding: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}

.vid-faq-a-list li {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 13px; font-weight: 300;
  color: rgba(245,245,241,0.55);
  line-height: 1.6;
}

.vid-faq-a-list li::before {
  content: '—';
  color: var(--red); opacity: 0.6;
  flex-shrink: 0; font-size: 11px;
}

.vid-faq-a-list li strong { color: rgba(245,245,241,0.82); font-weight: 500; }

/* Answer tags */
.vid-faq-a-tag-row {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 2px;
}

.vid-faq-a-tag {
  display: inline-flex; align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(229,9,20,0.2);
  background: rgba(229,9,20,0.06);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(229,9,20,0.6);
}

/* ── Red left-border on open item ── */
.vid-faq-item {
  position: relative;
}

.vid-faq-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--red);
  box-shadow: 0 0 10px var(--glow);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.vid-faq-item[data-open="true"]::before {
  transform: scaleY(1);
}

/* ══════════════════════════════════════════════
   STILL HAVE A QUESTION strip
══════════════════════════════════════════════ */
.vid-faq-still {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 24px;
  margin-top: 20px;
  background: rgba(245,245,241,0.025);
  border: 1px solid rgba(245,245,241,0.07);
  border-radius: 12px;
  flex-wrap: wrap;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.vid-faq-still.vid-faq-in-view { opacity: 1; transform: translateY(0); }

.vid-faq-still-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(229,9,20,0.08);
  border: 1px solid rgba(229,9,20,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); flex-shrink: 0;
}

.vid-faq-still-icon svg { width: 18px; height: 18px; }

.vid-faq-still-body {
  display: flex; flex-direction: column; gap: 3px; flex: 1;
}

.vid-faq-still-title {
  font-size: 14px; font-weight: 600; color: var(--ice);
}

.vid-faq-still-sub {
  font-size: 12px; font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.38);
}

.vid-faq-still-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: var(--red); border: 1px solid var(--red);
  border-radius: 8px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; color: var(--ice);
  text-decoration: none; flex-shrink: 0;
  transition: background 0.3s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}

.vid-faq-still-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(229,9,20,0.35);
}

.vid-faq-still-cta svg { transition: transform 0.3s; }
.vid-faq-still-cta:hover svg { transform: translateX(4px); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1020px) {
  .vid-faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vid-faq-left { position: static; }

  .vid-faq-heading {
    font-size: clamp(44px, 10vw, 72px);
  }

  .vid-faq-jumps {
    flex-direction: row; flex-wrap: wrap;
    gap: 6px;
  }

  .vid-faq-jump {
    padding: 7px 14px;
    border: 1px solid rgba(245,245,241,0.1);
    border-radius: 100px;
  }

  .vid-faq-jump::before { display: none; }

  .vid-faq-jump:hover,
  .vid-faq-jump--active { padding-left: 14px; }

  .vid-faq-counter { display: none; }
}

@media (max-width: 860px) {
  .vid-faq { padding: 80px 0; }
  .vid-faq-inner { padding-left: var(--vid-faq-pad-x); }
  .vid-faq-spine { display: none; }
}

@media (max-width: 600px) {
  .vid-faq-q {
    grid-template-columns: 28px 1fr 28px;
    gap: 10px;
    padding: 18px 0;
  }

  .vid-faq-a-inner { padding: 0 40px 22px; }

  .vid-faq-still {
    flex-direction: column;
    align-items: flex-start;
  }

  .vid-faq-still-cta { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .vid-faq-header,
  .vid-faq-item,
  .vid-faq-still,
  .vid-faq-spine-line,
  .vid-faq-a,
  .vid-faq-q-icon,
  .vid-faq-counter-reel {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   RELATED SERVICES — vid-related.css
   Prefix: vid-rel-*
   Aesthetic: Cinematic / Premium Dark / Editorial
   Connects with: all previous vid-* sections
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
  --vid-rel-pad-x: clamp(24px, 6vw, 100px);

  /* Per-service accent colours */
  --editing-accent: #E50914;
  --graphics-accent: #7c3aed;   /* violet — design/art */
  --vfx-accent:     #00b4d8;    /* cyan — digital/tech */
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.vid-rel {
  position: relative;
  width: 100%;
  background: var(--ink);
  padding: 120px 0 120px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

.vid-rel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.3) 50%, transparent);
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BACKGROUND
══════════════════════════════════════════════ */
.vid-rel-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.vid-rel-ambient--center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(229,9,20,0.04) 0%, transparent 65%);
}

.vid-rel-grain {
  position: absolute; inset: -20%; width: 140%; height: 140%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none; opacity: 0.5; mix-blend-mode: overlay;
}

/* Diagonal slash — echoes hero */
.vid-rel-slash {
  position: absolute;
  top: 0; right: 20%;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(229,9,20,0.08) 30%, rgba(229,9,20,0.08) 70%, transparent 100%);
  transform: skewX(-12deg);
  transform-origin: top;
  pointer-events: none;
}

/* ══════════════════════════════════════════════
   SPINE
══════════════════════════════════════════════ */
.vid-rel-spine {
  position: absolute;
  left: clamp(14px, 2.5vw, 40px);
  top: 120px; bottom: 120px;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
  z-index: 2; pointer-events: none;
}

.vid-rel-spine-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.25em;
  color: rgba(229,9,20,0.4);
  writing-mode: vertical-rl; transform: rotate(180deg);
}

.vid-rel-spine-line {
  flex: 1; width: 1px; display: block;
  background: linear-gradient(to bottom, rgba(229,9,20,0.3), rgba(245,245,241,0.06) 60%, transparent);
  transform-origin: top; transform: scaleY(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.vid-rel-spine-line.vid-rel-in-view { transform: scaleY(1); }

/* ══════════════════════════════════════════════
   INNER
══════════════════════════════════════════════ */
.vid-rel-inner {
  position: relative; z-index: 2;
  padding: 0 var(--vid-rel-pad-x);
  padding-left: calc(var(--vid-rel-pad-x) + 40px);
  display: flex; flex-direction: column; gap: 56px;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.vid-rel-header {
  display: flex; flex-direction: column; gap: 18px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.vid-rel-header.vid-rel-in-view { opacity: 1; transform: translateY(0); }

.vid-rel-eyebrow { display: inline-flex; align-items: center; gap: 12px; }

.vid-rel-eyebrow-line {
  display: block; width: 32px; height: 1px;
  background: var(--red); opacity: 0.7;
}

.vid-rel-eyebrow-text {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--red);
}

.vid-rel-header-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}

.vid-rel-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92; letter-spacing: 0.02em;
  color: var(--ice); margin: 0;
}

.vid-rel-heading-line { display: block; }

.vid-rel-heading-line--em {
  -webkit-text-stroke: 2px rgba(245,245,241,0.55);
  color: transparent;
}

.vid-rel-heading-sub {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.4); line-height: 1.7;
  margin: 0; text-align: right; max-width: 240px;
}

/* ══════════════════════════════════════════════
   CARDS GRID — 3 columns
══════════════════════════════════════════════ */
.vid-rel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ── Single Card ── */
.vid-rel-card {
  position: relative;
  background: rgba(245,245,241,0.03);
  border: 1px solid rgba(245,245,241,0.08);
  border-radius: 18px;
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 20px;
  overflow: hidden;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.4s ease;
  cursor: default;

  /* Scroll reveal */
  opacity: 0; transform: translateY(32px) scale(0.97);
}

.vid-rel-card.vid-rel-in-view {
  opacity: 1; transform: translateY(0) scale(1);
}

.vid-rel-card:nth-child(1) { transition-delay: 0s; }
.vid-rel-card:nth-child(2) { transition-delay: 0.1s; }
.vid-rel-card:nth-child(3) { transition-delay: 0.2s; }

.vid-rel-card:hover {
  background: rgba(245,245,241,0.05);
  transform: translateY(-6px) scale(1.01);
}

/* Per-service hover border + shadow */
.vid-rel-card[data-service="editing"]:hover {
  border-color: rgba(229,9,20,0.35);
  box-shadow: 0 28px 56px rgba(0,0,0,0.5), 0 0 40px rgba(229,9,20,0.08);
}

.vid-rel-card[data-service="graphics"]:hover {
  border-color: rgba(124,58,237,0.35);
  box-shadow: 0 28px 56px rgba(0,0,0,0.5), 0 0 40px rgba(124,58,237,0.08);
}

.vid-rel-card[data-service="vfx"]:hover {
  border-color: rgba(0,180,216,0.35);
  box-shadow: 0 28px 56px rgba(0,0,0,0.5), 0 0 40px rgba(0,180,216,0.08);
}

/* Ghost large number — bottom-right watermark */
.vid-rel-card-bg-num {
  position: absolute; bottom: 16px; right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px; line-height: 1; letter-spacing: 0.04em;
  pointer-events: none; user-select: none;
  transition: color 0.4s ease;
}

.vid-rel-card[data-service="editing"]  .vid-rel-card-bg-num { color: rgba(229,9,20,0.04); }
.vid-rel-card[data-service="graphics"] .vid-rel-card-bg-num { color: rgba(124,58,237,0.04); }
.vid-rel-card[data-service="vfx"]      .vid-rel-card-bg-num { color: rgba(0,180,216,0.04); }

.vid-rel-card[data-service="editing"]:hover  .vid-rel-card-bg-num { color: rgba(229,9,20,0.09); }
.vid-rel-card[data-service="graphics"]:hover .vid-rel-card-bg-num { color: rgba(124,58,237,0.09); }
.vid-rel-card[data-service="vfx"]:hover      .vid-rel-card-bg-num { color: rgba(0,180,216,0.09); }

/* ── Top row: icon + tag ── */
.vid-rel-card-top {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
}

.vid-rel-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.35s ease, box-shadow 0.35s ease;
  background: rgba(229,9,20,0.1);
  border: 1px solid rgba(229,9,20,0.15);
  color: var(--red);
}

.vid-rel-card-icon svg { width: 20px; height: 20px; }

/* Graphics icon */
.vid-rel-card[data-service="graphics"] .vid-rel-card-icon {
  background: rgba(124,58,237,0.1);
  border-color: rgba(124,58,237,0.15);
  color: #a78bfa;
}

/* VFX icon */
.vid-rel-icon--vfx {
  background: rgba(0,180,216,0.1) !important;
  border-color: rgba(0,180,216,0.15) !important;
  color: #00b4d8 !important;
}

/* Icon hover effects */
.vid-rel-card[data-service="editing"]:hover  .vid-rel-card-icon {
  transform: scale(1.12) rotate(-6deg);
  background: rgba(229,9,20,0.2);
  border-color: rgba(229,9,20,0.4);
  box-shadow: 0 0 22px rgba(229,9,20,0.25);
}

.vid-rel-card[data-service="graphics"]:hover .vid-rel-card-icon {
  transform: scale(1.12) rotate(-6deg);
  background: rgba(124,58,237,0.2);
  border-color: rgba(124,58,237,0.4);
  box-shadow: 0 0 22px rgba(124,58,237,0.25);
}

.vid-rel-card[data-service="vfx"]:hover .vid-rel-card-icon {
  transform: scale(1.12) rotate(-6deg);
  background: rgba(0,180,216,0.2);
  border-color: rgba(0,180,216,0.4);
  box-shadow: 0 0 22px rgba(0,180,216,0.25);
}

/* Service badge tags */
.vid-rel-card-tag {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 100px;
  border: 1px solid rgba(229,9,20,0.25);
  background: rgba(229,9,20,0.07);
  color: rgba(229,9,20,0.75);
  flex-shrink: 0;
}

.vid-rel-tag--graphics {
  border-color: rgba(124,58,237,0.25);
  background: rgba(124,58,237,0.07);
  color: rgba(167,139,250,0.85);
}

.vid-rel-tag--vfx {
  border-color: rgba(0,180,216,0.25);
  background: rgba(0,180,216,0.07);
  color: rgba(0,180,216,0.85);
}

/* ── Card body ── */
.vid-rel-card-body { display: flex; flex-direction: column; gap: 10px; }

.vid-rel-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 2.8vw, 36px);
  letter-spacing: 0.04em; color: var(--ice);
  line-height: 1; margin: 0;
  transition: color 0.3s;
}

.vid-rel-card:hover .vid-rel-card-title { color: #fff; }

.vid-rel-card-desc {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.45);
  line-height: 1.7; margin: 0;
  transition: color 0.3s;
}

.vid-rel-card:hover .vid-rel-card-desc { color: rgba(245,245,241,0.6); }

/* ── Capabilities list ── */
.vid-rel-card-caps {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid rgba(245,245,241,0.06);
  padding-top: 16px;
}

.vid-rel-cap {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 400;
  color: rgba(245,245,241,0.42);
  line-height: 1.4; transition: color 0.3s;
}

.vid-rel-card:hover .vid-rel-cap { color: rgba(245,245,241,0.6); }

.vid-rel-cap-dot {
  width: 5px; height: 5px; border-radius: 50%;
  flex-shrink: 0;
  transition: box-shadow 0.3s;
}

/* Per-service dot colour */
.vid-rel-card[data-service="editing"]  .vid-rel-cap-dot { background: rgba(229,9,20,0.5); }
.vid-rel-card[data-service="graphics"] .vid-rel-cap-dot { background: rgba(124,58,237,0.5); }
.vid-rel-card[data-service="vfx"]      .vid-rel-cap-dot { background: rgba(0,180,216,0.5); }

.vid-rel-card[data-service="editing"]:hover  .vid-rel-cap-dot { background: var(--red); box-shadow: 0 0 6px var(--glow); }
.vid-rel-card[data-service="graphics"]:hover .vid-rel-cap-dot { background: #a78bfa; box-shadow: 0 0 6px rgba(124,58,237,0.6); }
.vid-rel-card[data-service="vfx"]:hover      .vid-rel-cap-dot { background: #00b4d8; box-shadow: 0 0 6px rgba(0,180,216,0.6); }

/* ── Keyword pills ── */
.vid-rel-card-pills {
  display: flex; flex-wrap: wrap; gap: 6px;
}

.vid-rel-pill {
  display: inline-flex; align-items: center;
  padding: 4px 11px; border-radius: 100px;
  border: 1px solid rgba(229,9,20,0.18);
  background: rgba(229,9,20,0.05);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(229,9,20,0.55);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.vid-rel-card[data-service="editing"]:hover .vid-rel-pill {
  border-color: rgba(229,9,20,0.35); color: rgba(229,9,20,0.85);
  background: rgba(229,9,20,0.09);
}

.vid-rel-pill--alt {
  border-color: rgba(124,58,237,0.18);
  background: rgba(124,58,237,0.05);
  color: rgba(167,139,250,0.55);
}

.vid-rel-card[data-service="graphics"]:hover .vid-rel-pill--alt {
  border-color: rgba(124,58,237,0.35); color: rgba(167,139,250,0.9);
  background: rgba(124,58,237,0.09);
}

.vid-rel-pill--vfx {
  border-color: rgba(0,180,216,0.18);
  background: rgba(0,180,216,0.05);
  color: rgba(0,180,216,0.55);
}

.vid-rel-card[data-service="vfx"]:hover .vid-rel-pill--vfx {
  border-color: rgba(0,180,216,0.35); color: rgba(0,180,216,0.9);
  background: rgba(0,180,216,0.09);
}

/* ── CTA Button ── */
.vid-rel-card-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px; border-radius: 10px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  text-decoration: none; color: var(--ice);
  border: 1px solid rgba(229,9,20,0.35);
  background: rgba(229,9,20,0.08);
  margin-top: auto;
  transition:
    background 0.3s, border-color 0.3s,
    transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.3s;
}

.vid-rel-card-cta svg { width: 16px; height: 16px; transition: transform 0.3s; }

.vid-rel-card-cta:hover {
  background: var(--red); border-color: var(--red);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(229,9,20,0.35);
}

.vid-rel-card-cta:hover svg { transform: translateX(4px); }

.vid-rel-cta--alt {
  border-color: rgba(124,58,237,0.35);
  background: rgba(124,58,237,0.08);
}

.vid-rel-cta--alt:hover {
  background: #7c3aed; border-color: #7c3aed;
  box-shadow: 0 10px 28px rgba(124,58,237,0.35);
}

.vid-rel-cta--vfx {
  border-color: rgba(0,180,216,0.35);
  background: rgba(0,180,216,0.08);
}

.vid-rel-cta--vfx:hover {
  background: #00b4d8; border-color: #00b4d8;
  box-shadow: 0 10px 28px rgba(0,180,216,0.35);
}

/* ── Per-card hover glow (radial sweep from top-center) ── */
.vid-rel-card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(229,9,20,0.07) 0%, transparent 70%);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}

.vid-rel-card-glow--alt {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(124,58,237,0.07) 0%, transparent 70%);
}

.vid-rel-card-glow--vfx {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,180,216,0.07) 0%, transparent 70%);
}

.vid-rel-card:hover .vid-rel-card-glow { opacity: 1; }

/* ══════════════════════════════════════════════
   BOTTOM ALL-SERVICES BAR
══════════════════════════════════════════════ */
.vid-rel-all {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  padding: 32px 36px;
  background: rgba(245,245,241,0.025);
  border: 1px solid rgba(245,245,241,0.07);
  border-radius: 16px;
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s;
}

.vid-rel-all.vid-rel-in-view { opacity: 1; transform: translateY(0); }

/* Subtle animated shimmer line across the top */
.vid-rel-all::before {
  content: '';
  position: absolute; top: 0; left: -100%; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.5), transparent);
  animation: vid-rel-shimmer 3s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes vid-rel-shimmer {
  0%   { left: -100%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.vid-rel-all-left { display: flex; flex-direction: column; gap: 5px; }

.vid-rel-all-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: 0.04em; color: var(--ice); line-height: 1;
}

.vid-rel-all-sub {
  font-size: 13px; font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.38); margin: 0;
}

.vid-rel-all-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px;
  background: var(--red); border: 1px solid var(--red);
  border-radius: 10px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--ice); text-decoration: none; flex-shrink: 0;
  transition:
    background 0.3s, border-color 0.3s,
    transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.3s;
}

.vid-rel-all-cta:hover {
  background: var(--red-dark); border-color: var(--red-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px rgba(229,9,20,0.38);
}

.vid-rel-all-cta svg { transition: transform 0.3s; }
.vid-rel-all-cta:hover svg { transform: translateX(5px); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1060px) {
  .vid-rel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vid-rel-card:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .vid-rel { padding: 80px 0; }
  .vid-rel-inner { gap: 40px; padding-left: var(--vid-rel-pad-x); }
  .vid-rel-spine { display: none; }
  .vid-rel-header-row { flex-direction: column; align-items: flex-start; }
  .vid-rel-heading-sub { text-align: left; max-width: 100%; }
}

@media (max-width: 640px) {
  .vid-rel-grid { grid-template-columns: 1fr; }

  .vid-rel-card:nth-child(3) { grid-column: auto; }

  .vid-rel-all {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 22px;
    gap: 18px;
  }

  .vid-rel-all-cta { width: 100%; justify-content: center; }

  .vid-rel-card-bg-num { font-size: 56px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .vid-rel-header,
  .vid-rel-card,
  .vid-rel-all,
  .vid-rel-spine-line,
  .vid-rel-all::before {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}