:root {
  --red: #af3333;
  --red-dark: #8a2727;
  --red-light: #c94444;
  --white: #fafafa;
  --off: #f0ebe3;
  --ink: #111010;
  --ink2: #1e1c1c;
  --mid: #6b6666;
  --border: #e8e2da;
  --border-red: rgba(175, 51, 51, 0.2);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden
}

img {
  display: block
}

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

/* ── NAV BAR (FULL RESPONSIVE & MOBILE FRIENDLY) ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: #af3333;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  transition: padding 0.3s ease, background 0.3s ease;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 410;
}

.nav-logo-mark {
  width: 160px;
  height: 48px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.nav-logo-img {
  max-width: 400%;
  max-height: 400%;
  object-fit: contain;
  mix-blend-mode: screen;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: rgba(250, 250, 250, 0.8);
  letter-spacing: 0.01em;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a.active-link {
  color: var(--white) !important;
  font-weight: 600;
  border-bottom: 2px solid var(--white);
  padding-bottom: 4px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  background: var(--white);
  color: var(--red);
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-cta:hover {
  background: var(--off);
  color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Back-drop overlay for mobile menu drawer */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 340;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden !important;
  touch-action: none;
}

/* ========================================= */
/* MASTER RESPONSIVE DESIGN (ALL DEVICES)    */
/* ========================================= */

/* 1. Prevent the "Mobile Zoom-Out" / Side-Scrolling Bug */
html,
body {
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

.hamburger {
  display: none;
}

/* 2. Mobile & Tablet Navigation (< 992px) */
@media (max-width: 991px) {
  nav {
    padding: 0 20px;
    height: 64px;
  }

  .nav-logo-mark {
    width: 130px;
    height: 40px;
  }

  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    gap: 5px;
    cursor: pointer;
    z-index: 410;
    margin-left: auto;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: background 0.3s ease, border-color 0.3s ease;
  }

  .hamburger:hover {
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .hamburger span {
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
    transform-origin: center;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu-wrapper {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100dvh - 64px);
    background: rgba(12, 12, 14, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 36px 24px 48px;
    gap: 28px;
    overflow-y: auto;
    z-index: 350;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-menu-wrapper.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    flex-direction: column !important;
    gap: 16px !important;
    width: 100%;
    align-items: center !important;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-menu-wrapper.active .nav-links li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu-wrapper.active .nav-links li:nth-child(1) {
    transition-delay: 0.05s;
  }

  .nav-menu-wrapper.active .nav-links li:nth-child(2) {
    transition-delay: 0.10s;
  }

  .nav-menu-wrapper.active .nav-links li:nth-child(3) {
    transition-delay: 0.15s;
  }

  .nav-menu-wrapper.active .nav-links li:nth-child(4) {
    transition-delay: 0.20s;
  }

  .nav-menu-wrapper.active .nav-links li:nth-child(5) {
    transition-delay: 0.25s;
  }

  .nav-links a {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--serif);
    color: rgba(255, 255, 255, 0.85);
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    width: 100%;
    max-width: 280px;
    box-sizing: border-box;
    transition: all 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a:active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-links a.active-link {
    color: var(--white) !important;
    font-weight: 600;
    background: rgba(175, 51, 51, 0.4) !important;
    border: 1px solid rgba(175, 51, 51, 0.8);
    border-bottom: 1px solid rgba(175, 51, 51, 0.8) !important;
  }

  .nav-right {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-menu-wrapper.active .nav-right {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.30s;
  }

  .nav-right .nav-cta {
    width: 100%;
    max-width: 280px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    background: var(--red);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(175, 51, 51, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}

/* REFINED MOBILE GRID LOGIC */
@media (max-width: 1024px) {

  /* Standardize padding instead of forcing it with !important everywhere */
  .sec,
  #services,
  #services-hero,
  #work,
  #showreel,
  #stats,
  #testimonials,
  footer,
  .logo-strip {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  /* Update this section in your style.css */
  @media (max-width: 1024px) {

    /* ... keep your other existing rules ... */

    /* FIX: Stack the Showreel columns vertically */
    .showreel-inner {
      grid-template-columns: 1fr !important;
      /* Change from 1fr 2fr to 1 column */
      gap: 40px;
      /* Reduce gap for mobile */
    }

    /* FIX: Ensure the video player takes full width when stacked */
    .showreel-player-wrap {
      width: 100%;
      max-width: 800px;
      /* Prevents the video from getting TOO large on tablets */
      margin: 0 auto;
      /* Center the video */
    }

    /* OPTIONAL: Make the selection buttons more compact on mobile */
    .sr-item {
      padding: 12px 15px !important;
      /* Reduce padding to save vertical space */
    }

    .sr-item div div {
      font-size: 12px !important;
      /* Slightly smaller text */
    }
  }

  /* Grid Stacking */
  .srv-grid,
  .work-grid,
  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .srv-item {
    grid-template-columns: 1fr !important;
    /* Stack info and video vertically */
  }

  .srv-info {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    padding: 30px 0 !important;
  }

  /* Testimonial Card Sizing */
  .testi-card {
    flex: 0 0 100% !important;
    /* Ensure exactly one card shows on mobile/tablet */
  }


}

/* 4. Small Phone Fixes */
@media (max-width: 480px) {

  .work-grid,
  .stats-grid {
    grid-template-columns: 1fr !important;
    /* Single column on very small phones */
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .logo-img {
    height: 40px;
  }
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--ink2)
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none
}

.hero-yt-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  min-width: 177.78vh;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  object-fit: cover
}

.card-yt-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: auto;
  z-index: 10;
}

.hero-yt-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  z-index: 1
}

.hvb-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0, 0, 0, 0.03) 3px, rgba(0, 0, 0, 0.03) 4px);
  pointer-events: none;
  z-index: 2
}

.hvb-grain {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 2
}

.hvb-particles {
  position: absolute;
  inset: 0;
  z-index: 2
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(175, 51, 51, 0.6);
  border-radius: 50%;
  animation: float-p var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--del, 0s)
}

@keyframes float-p {

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

  10% {
    opacity: 1
  }

  90% {
    opacity: .3
  }

  50% {
    transform: translateY(calc(-1 * var(--dist, 120px))) translateX(var(--dx, 30px))
  }
}

.hero-play-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1
}

.hero-play-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1.5px solid rgba(250, 250, 250, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s;
  cursor: pointer;
  animation: ring-pulse 3s ease-in-out infinite
}

.hero-play-ring:hover {
  border-color: var(--red);
  background: rgba(175, 51, 51, 0.15);
  transform: scale(1.05)
}

.hero-play-ring svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  margin-left: 4px
}

@keyframes ring-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(175, 51, 51, 0.2)
  }

  50% {
    box-shadow: 0 0 0 16px rgba(175, 51, 51, 0)
  }
}

.hero-vid-label {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 11px;
  color: rgba(250, 250, 250, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 52px 72px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(175, 51, 51, 0.15);
  border: 1px solid rgba(175, 51, 51, 0.3);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 28px
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.hero-badge-text {
  font-size: 11px;
  color: rgba(250, 250, 250, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase
}

.hero-h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(52px, 7.5vw, 80px);
  line-height: .95;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 950px;
  margin-bottom: 36px
}

.hero-h1 em {
  font-style: italic;
  color: var(--red)
}

.hero-h1-line {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero-h1-line {
    white-space: normal;
  }
}

.hero-h1 em.light {
  color: rgba(250, 250, 250, 0.45);
  font-style: normal;
  font-size: .4em;
  letter-spacing: 0;
  vertical-align: baseline;
  position: relative;
  top: -.2em
}

.hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap
}

.hero-desc {
  font-size: 18px;
  color: rgba(250, 250, 250, 0.5);
  max-width: 380px;
  line-height: 1.75;
  font-weight: 300
}

.hero-btns {
  display: flex;
  gap: 12px;
  align-items: center
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-red:hover {
  background: var(--red-dark)
}

.btn-outline-white {
  background: transparent;
  color: rgba(250, 250, 250, 0.75);
  border: 1px solid rgba(250, 250, 250, 0.2);
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  transition: all .2s
}

.btn-outline-white:hover {
  border-color: rgba(250, 250, 250, 0.5);
  color: var(--white)
}

.hero-vbar {
  position: absolute;
  right: 52px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 2
}

.hvbar-time {
  font-size: 11px;
  color: rgba(250, 250, 250, 0.35);
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  transform: rotate(180deg)
}

.hvbar-line {
  width: 1px;
  height: 80px;
  background: rgba(250, 250, 250, 0.12)
}

.hvbar-count {
  font-size: 11px;
  color: rgba(250, 250, 250, 0.35);
  letter-spacing: 0.05em
}

.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(250, 250, 250, 0.08);
  z-index: 3
}

.hero-progress-fill {
  height: 100%;
  background: var(--red);
  animation: progress-fill 12s linear infinite
}

@keyframes progress-fill {
  0% {
    width: 0
  }

  100% {
    width: 100%
  }
}

/* ── TICKER ── */
.ticker-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  background: var(--white)
}

/* ── HERO RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content {
    padding: 0 30px 60px
  }

  .hero-h1 {
    font-size: clamp(42px, 6vw, 64px);
    margin-bottom: 28px
  }

  .hero-vbar {
    right: 30px
  }
}

@media (max-width: 768px) {
  #hero {
    min-height: 100svh
  }

  .hero-content {
    padding: 0 20px 52px
  }

  .hero-h1 {
    font-size: clamp(36px, 9vw, 52px);
    line-height: 1.05;
    margin-bottom: 24px
  }

  .hero-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px
  }

  .hero-desc {
    font-size: 15px;
    max-width: 100%
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%
  }

  .hero-btns .btn-red,
  .hero-btns .btn-outline-white {
    width: 100%;
    justify-content: center;
    padding: 14px 20px
  }

  .hero-vbar {
    display: none
  }

  .hero-play-ring {
    width: 68px;
    height: 68px
  }

  .hero-badge {
    margin-bottom: 20px
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 16px 44px
  }

  .hero-h1 {
    font-size: clamp(30px, 10vw, 44px)
  }
}

.ticker-inner {
  display: flex;
  gap: 0;
  animation: ticker 24s linear infinite;
  white-space: nowrap
}

.ticker-inner:hover {
  animation-play-state: paused
}

.tick-item {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 0 44px;
  border-right: 1px solid var(--border)
}

.tick-num {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--red);
  letter-spacing: -0.03em
}

.tick-lbl {
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.06em;
  text-transform: uppercase
}

.tick-sep {
  color: var(--border);
  padding: 0 8px;
  font-size: 18px
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ── LOGOS ── */
.logo-strip {
  padding: 64px 52px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .logo-strip {
    padding: 48px 30px;
    gap: 16px;
  }
}

.logo-strip-label {
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0
}

.logos-marquee {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0
}

.logos-track {
  display: flex;
  gap: 0;
  animation: marq 30s linear infinite;
  white-space: nowrap
}

.logos-track:hover {
  animation-play-state: paused
}

.logos-track-reverse {
  animation-name: marq-reverse;
  animation-duration: 35s;
  margin-top: 8px
}

.logos-track-reverse:hover {
  animation-play-state: paused
}

.logo-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: rgba(17, 16, 16, 0.18);
  padding: 0 36px;
  flex-shrink: 0;
  transition: color .3s;
  cursor: default
}

.logo-img {
  height: 100px;
  width: auto;
  padding: 0 36px;
  flex-shrink: 0;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
  transition: filter .3s, opacity .3s
}

.logo-img:hover {
  filter: grayscale(50%);
  opacity: 1
}

.logo-name:hover {
  color: rgba(175, 51, 51, 0.5)
}

@keyframes marq {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes marq-reverse {
  0% {
    transform: translateX(-50%)
  }

  100% {
    transform: translateX(0)
  }
}

/* ── SECTION COMMONS ── */
.sec {
  padding: 96px 52px
}

.sec-kicker {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px
}

.sec-kicker::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--red)
}

.sec-h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0
}

.sec-h2 em {
  font-style: italic;
  color: var(--red)
}




/* ── VIDEO PLAYER COMPONENT ── */
.vplayer {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink2);
  cursor: pointer
}

.vplayer-screen {
  position: absolute;
  width: 100%;
  height: 100%
}

.vplayer-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  transition: background .3s, opacity .4s ease;
  pointer-events: auto;
  z-index: 20;
}

.vplayer:hover .vplayer-overlay {
  background: rgba(0, 0, 0, 0.4)
}

.vplayer.is-playing .vplayer-overlay {
  opacity: 0;
  pointer-events: none;
}

.vplayer.is-playing .vplayer-screen {
  background: none !important;
}

.vplayer.is-playing .vplayer-screen::before,
.vplayer.is-playing .vplayer-screen::after {
  display: none !important;
}

.vp-top {
  display: flex;
  justify-content: flex-end
}

.vp-live {
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px
}

.vp-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  opacity: 1;
  transition: opacity .3s;
}

.vplayer:hover .vp-center {
  opacity: 1
}

.vp-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s
}

.vplayer:hover .vp-play {
  transform: scale(1.08)
}

.vp-play svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
  margin-left: 3px
}

.vp-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.vp-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3
}

.vp-sub {
  font-size: 11px;
  color: rgba(250, 250, 250, 0.5);
  letter-spacing: 0.04em
}

.vp-controls {
  display: none !important;
}

.vp-prog-wrap {
  flex: 1;
  height: 3px;
  background: rgba(250, 250, 250, 0.2);
  border-radius: 2px;
  position: relative;
  overflow: hidden
}

.vp-prog {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  transition: width .3s
}

.vp-time {
  font-size: 10px;
  color: rgba(250, 250, 250, 0.4);
  letter-spacing: 0.04em;
  white-space: nowrap
}

.vp-vol {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.vp-vol svg {
  width: 16px;
  height: 16px;
  fill: rgba(250, 250, 250, 0.4)
}

/* CSS art backgrounds for video thumbnails */
.vbg1 {
  background: linear-gradient(160deg, #1a0505 0%, #2d0a0a 50%, #150303 100%);
  position: relative
}

.vbg1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 60%, rgba(175, 51, 51, 0.4) 0%, transparent 60%)
}

.vbg2 {
  background: linear-gradient(200deg, #050d1a 0%, #0a1525 60%, #080e18 100%);
  position: relative
}

.vbg2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 40%, rgba(60, 100, 175, 0.35) 0%, transparent 55%)
}

.vbg3 {
  background: linear-gradient(120deg, #0a0f0a 0%, #0f1a0a 50%, #080c08 100%);
  position: relative
}

.vbg3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 30%, rgba(40, 120, 60, 0.3) 0%, transparent 60%)
}

.vbg4 {
  background: linear-gradient(180deg, #0f0808 0%, #1a0a00 50%, #100600 100%);
  position: relative
}

.vbg4::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 50% at 50% 100%, rgba(175, 80, 0, 0.3) 0%, transparent 60%)
}

.vbg5 {
  background: linear-gradient(135deg, #0a0a14 0%, #10101e 50%, #080810 100%);
  position: relative
}

.vbg5::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 50%, rgba(100, 40, 175, 0.25) 0%, transparent 55%)
}

.vbg6 {
  background: linear-gradient(160deg, #0d0a08 0%, #1a1408 50%, #0d0a04 100%);
  position: relative
}

.vbg6::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(175, 140, 0, 0.2) 0%, transparent 55%)
}

/* Subtle animated film strip effect */
.vbg1::after,
.vbg2::after,
.vbg3::after,
.vbg4::after,
.vbg5::after,
.vbg6::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255, 255, 255, 0.015) 59px, rgba(255, 255, 255, 0.015) 60px)
}

/* Simulated video scan line */
@keyframes scanline {
  0% {
    top: -10%
  }

  100% {
    top: 110%
  }
}

.vplayer.playing .vplayer-screen::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.015), transparent);
  animation: scanline 4s linear infinite
}

/* ── HERO SHOWREEL SECTION ── */
#showreel {
  padding: 96px 52px;
  background: var(--white)
}

.showreel-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center
}

.showreel-left {}

.showreel-player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.sr-thumb-wrap {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.sr-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s;
}

.sr-thumb-wrap:hover .sr-thumb-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.sr-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #af3333;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s;
  box-shadow: 0 4px 20px rgba(175, 51, 51, 0.5);
}

.sr-play-btn:hover {
  transform: scale(1.1);
  background: #c03a3a;
}

.sr-thumb-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
}

.sr-thumb-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.sr-thumb-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.sr-iframe-wrap {
  position: absolute;
  inset: 0;
}

.sr-active {
  background: rgba(175, 51, 51, 0.06) !important;
  border-color: #af3333 !important;
}

/* ── WORK GRID ── */
#work {
  padding: 96px 52px;
  background: var(--off)
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px
}

.work-vp {
  aspect-ratio: 16/10
}

.work-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-thumb-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(175, 51, 51, 0.25);
}

.work-iframe-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.work-iframe-wrap iframe {
  pointer-events: none;
  transition: transform 0.4s ease;
}

.work-thumb-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  pointer-events: none;
}

.work-thumb-wrap:hover .work-thumb-overlay {
  background: rgba(0, 0, 0, 0.35);
}

.work-play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #af3333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
  box-shadow: 0 6px 20px rgba(175, 51, 51, 0.6);
  pointer-events: auto;
}

.work-thumb-wrap:hover .work-play-btn {
  transform: scale(1.15);
  background: #c93b3b;
}

.work-card-meta {
  padding: 16px 0 0
}

.work-brand {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px
}

.work-industry {
  font-size: 11px;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px
}

.work-stats {
  display: flex;
  gap: 20px
}

.ws {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 2px solid var(--red);
  padding-left: 10px
}

.ws-val {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--red)
}

.ws-key {
  font-size: 10px;
  color: var(--mid);
  letter-spacing: 0.06em;
  text-transform: uppercase
}

/* ── SERVICES VIDEO ── */
#services {
  padding: 96px 52px;
  background: var(--white)
}

.services-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px
}

.srv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border)
}

.srv-item {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0
}

.srv-info {
  padding: 44px 40px;
  border-right: 1px solid var(--border)
}

.srv-num {
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.12em;
  margin-bottom: 20px
}

.srv-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.2
}

.srv-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 18px
}

.srv-badge {
  display: inline-block;
  background: rgba(175, 51, 51, 0.07);
  color: var(--red);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--border-red);
  letter-spacing: 0.04em
}

.srv-vid {
  padding: 24px
}

.srv-vp {
  aspect-ratio: 16/9;
  height: auto;
  position: relative
}

.vplayer-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
  transition: opacity .3s
}

.vplayer-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1
}

.vplayer.is-playing .vplayer-poster {
  opacity: 0
}

/* ── REEL SCROLL ── */
#reels {
  padding: 80px 0;
  background: var(--ink);
  overflow: hidden
}

.reels-header {
  padding: 0 52px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between
}

.reels-header .sec-kicker {
  color: var(--red)
}

.reels-header .sec-h2 {
  color: var(--white)
}

.reels-header .sec-h2 em {
  color: var(--red)
}

.reels-scroll {
  display: flex;
  gap: 16px;
  overflow: hidden;
  padding: 0 52px 32px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reels-scroll {
  position: relative;
  padding: 0 52px 60px
}

.reels-slider {
  position: relative;
  overflow: hidden
}

.reels-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10
}

.reels-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(250, 250, 250, 0.3);
  cursor: pointer;
  transition: background .3s
}

.reels-dot.active {
  background: var(--white)
}

.reels-arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(250, 250, 250, 0.1);
  border: 1px solid rgba(250, 250, 250, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .3s;
  margin: 0 10px
}

.reels-arrow:hover {
  background: rgba(250, 250, 250, 0.2)
}

.reels-arrow svg {
  width: 20px;
  height: 20px;
  fill: var(--white)
}

.reels-track {
  display: flex;
  transition: transform 0.5s ease-in-out
}

.reels-track:hover {
  animation-play-state: paused
}

.reel-card {
  flex: 0 0 25%;
  padding: 0 12px;
  box-sizing: border-box
}

.reel-vp {
  aspect-ratio: 9/16;
  border-radius: 8px
}

.reel-meta {
  padding: 12px 0 0
}

.reel-title {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--white);
  font-weight: 300;
  margin-bottom: 3px
}

.reel-brand {
  font-size: 11px;
  color: rgba(250, 250, 250, 0.4);
  letter-spacing: 0.06em
}

/* ── STATS ── */
#stats {
  padding: 80px 52px;
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border)
}

.stat-box {
  background: var(--off);
  padding: 44px 36px;
  position: relative;
  overflow: hidden
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s ease
}

.stat-box.vis::before {
  transform: scaleX(1)
}

.stat-n {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px
}

.stat-n span {
  color: var(--red)
}

.stat-lbl {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  font-weight: 300
}

.stat-lbl strong {
  color: var(--ink);
  font-weight: 700;
  display: block
}

/* ── VIDEO TESTIMONIALS ── */
#testimonials {
  padding: 96px 52px;
  background: var(--white)
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
  align-items: start
}

.testi-vp-wrap {
  position: sticky;
  top: 80px
}

.testi-vp {
  aspect-ratio: 9/13;
  border-radius: 8px
}

.testi-list {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.testi-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: border-color .25s;
  cursor: pointer
}

.testi-card:hover,
.testi-card.active {
  border-color: var(--red);
  background: rgba(175, 51, 51, 0.02)
}

.testi-card.active .tc-bar {
  background: var(--red)
}

.tc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px
}

.tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  flex-shrink: 0
}

.tc-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink)
}

.tc-role {
  font-size: 12px;
  color: var(--mid);
  margin-top: 2px
}

.tc-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 14px
}

.tc-result {
  display: flex;
  align-items: baseline;
  gap: 6px
}

.tc-result-num {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--red)
}

.tc-result-key {
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.04em
}

.tc-bar {
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  margin-top: 16px;
  transition: background .3s
}

.tc-vid-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px
}

.tc-vid-dot {
  width: 18px;
  height: 18px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.tc-vid-dot svg {
  width: 7px;
  height: 7px;
  fill: var(--white);
  margin-left: 1px
}

.tc-vid-text {
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.04em
}

/* ── AUDIT CTA ── */
#audit {
  padding: 0;
  background: var(--red);
  overflow: hidden;
  position: relative;
}

.audit-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  width: 100%;
}

.audit-vid-side {
  position: relative;
  overflow: hidden;
  background: #050505;
  min-height: 560px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.audit-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 1;
}

.audit-glow-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(175, 51, 51, 0.28) 0%, rgba(5, 5, 5, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.audit-vid-side canvas#auditGlobe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  cursor: grab;
  z-index: 2;
  touch-action: none;
  max-width: 100%;
  max-height: 100%;
}

.audit-vid-side canvas#auditGlobe:active {
  cursor: grabbing;
}

.audit-hint-label {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-family: var(--sans);
  color: rgba(255, 255, 255, 0.65);
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  z-index: 3;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.audit-vid-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #7a1f1f 0%, #5a1515 50%, #3d0d0d 100%);
}

.audit-form-side {
  padding: 60px 56px;
  background: var(--red);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
}

.audit-form-side .sec-kicker {
  color: rgba(250, 250, 250, 0.7);
}

.audit-form-side .sec-kicker::before {
  background: rgba(250, 250, 250, 0.5);
}

.audit-h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.audit-h2 em {
  font-style: italic;
  opacity: 0.85;
}

.audit-sub {
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(250, 250, 250, 0.88);
  line-height: 1.65;
  margin-bottom: 32px;
  font-weight: 300;
}

.af-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  box-sizing: border-box;
}

.af-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
}

.af-input {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
}

.af-input:focus {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.18);
}

.af-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

select.af-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 36px;
  -webkit-appearance: none;
  appearance: none;
}

select.af-input option {
  background: #8a2727;
  color: var(--white);
}

.af-submit {
  background: var(--white);
  color: var(--red);
  border: none;
  padding: 16px 24px;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.af-submit:hover {
  background: var(--off);
  color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.af-note {
  font-size: 12px;
  color: rgba(250, 250, 250, 0.5);
  text-align: center;
  margin-top: 4px;
  line-height: 1.4;
}

.af-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 28px;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  animation: afFadeIn 0.4s ease-out forwards;
}

@keyframes afFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.af-success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.af-success-title {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 400;
}

.af-success-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 440px;
}

/* RESPONSIVE AUDIT SECTION (< 992px & < 600px) */
@media (max-width: 991px) {
  .audit-split {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .audit-vid-side {
    width: 100% !important;
    height: 380px !important;
    min-height: 340px !important;
  }

  .audit-form-side {
    padding: 48px 28px 56px !important;
  }
}

@media (max-width: 600px) {
  .audit-vid-side {
    height: 320px !important;
    min-height: 300px !important;
  }

  .audit-form-side {
    padding: 36px 18px 44px !important;
  }

  .af-row {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .af-row {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .af-submit {
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 14px !important;
  }
}

/* ── FOOTER ── */
footer {
  background: var(--ink2);
  padding: 64px 52px 36px
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 16px
}

.footer-logo-mark {
  width: 160px;
  height: 56px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  flex-shrink: 0
}

.footer-logo-img {
  width: 500%;
  height: 500%;
  object-fit: contain;
  mix-blend-mode: screen
}

.footer-brand-name {
  display: none
}

.footer-tagline {
  font-size: 13px;
  color: rgba(250, 250, 250, 0.35);
  line-height: 1.75;
  max-width: 260px;
  font-weight: 300
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.25);
  margin-bottom: 20px
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-links a {
  font-size: 13px;
  color: rgba(250, 250, 250, 0.4);
  transition: color .2s;
  font-weight: 300
}

.footer-links a:hover {
  color: rgba(250, 250, 250, 0.8)
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(250, 250, 250, 0.07);
  flex-wrap: wrap;
  gap: 12px
}

.footer-copy {
  font-size: 12px;
  color: rgba(250, 250, 250, 0.2)
}

.footer-socials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.footer-socials a {
  font-size: 12px;
  color: rgba(250, 250, 250, 0.3);
  transition: color .2s
}

.footer-socials a:hover {
  color: var(--red)
}

/* ── FOOTER RESPONSIVE ── */
@media (max-width: 1024px) {
  footer {
    padding: 52px 30px 28px
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px
  }

  .footer-top>div:first-child {
    grid-column: span 2
  }

  .footer-tagline {
    max-width: 100%
  }
}

@media (max-width: 640px) {
  footer {
    padding: 44px 20px 24px
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .footer-top>div:first-child {
    grid-column: span 2
  }

  .footer-logo-mark {
    width: 130px;
    height: 46px
  }

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

  .footer-copy {
    font-size: 11px
  }

  .footer-socials {
    gap: 16px
  }
}

@media (max-width: 400px) {
  .footer-top {
    grid-template-columns: 1fr
  }

  .footer-top>div:first-child {
    grid-column: span 1
  }
}

/* ── REVEAL ── */
.rv {
  opacity: 1;
  /* Changed from 0 to 1 */
  transform: translateY(0);
  /* Changed from 24px to 0 */
  transition: opacity .65s ease, transform .65s ease
}
}

.rv.in {
  opacity: 1;
  transform: none
}

.rv-d1 {
  transition-delay: .1s
}

.rv-d2 {
  transition-delay: .18s
}

.rv-d3 {
  transition-delay: .26s
}

.rv-d4 {
  transition-delay: .34s
}

/* ── REEL SCROLL DRAG ── */
.reels-scroll {
  user-select: none
}

/* ========================================= */
/* DESKTOP NAVIGATION BAR ALIGNMENT FIX      */
/* ========================================= */
@media (min-width: 992px) {
  nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .nav-menu-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 1;
    gap: 40px;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 32px;
    margin: 0;
    padding: 0;
  }

  .nav-right {
    display: flex;
    align-items: center;
  }
}

/* ========================================= */
/* ULTIMATE DARK TESTIMONIALS (FIXED)        */
/* ========================================= */

#testimonials {
  background: #050505 !important;
  /* Pitch Black */
  padding: 120px 0 !important;
  color: var(--white) !important;
}

.testi-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.testi-header {
  text-align: center;
  margin-bottom: 60px;
}

.testi-main-title {
  font-family: var(--serif) !important;
  color: var(--white) !important;
  font-size: clamp(32px, 5vw, 54px) !important;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  opacity: 1 !important;
}

.testi-sub-title {
  color: rgba(250, 250, 250, 0.5) !important;
  font-size: 18px;
  font-family: var(--sans);
}

.testi-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Hides the cards that are off-screen */
}

.testi-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  /* Smooth sliding effect */
  gap: 30px;
}

.testi-card {
  flex: 0 0 100%;
  /* Mobile view: 1 card at a time */
  background: #111111 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 30px;
  padding: 50px 40px;
  text-align: center;
  box-sizing: border-box;
}

/* Desktop: 3 cards at a time */
@media (min-width: 768px) {
  .testi-card {
    flex: 0 0 calc(33.333% - 20px);
  }
}

.testi-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--red);
  box-shadow: 0 10px 30px rgba(175, 51, 51, 0.3);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-sizing: border-box;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.testi-name {
  font-family: var(--serif) !important;
  color: var(--white) !important;
  font-size: 24px;
  margin-bottom: 4px;
}

.testi-role {
  color: var(--red) !important;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.testi-quote {
  color: rgba(250, 250, 250, 0.7) !important;
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.testi-arrow {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.testi-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}

.testi-dots {
  display: flex;
  gap: 10px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.testi-dot.active {
  background: var(--red);
  width: 30px;
  border-radius: 10px;
}

/* --- ABOUT SECTION REFINEMENT --- */

#about {
  background: #fafafa;
  /* Matches the light background in your image */
  padding: 120px 52px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Split into two equal columns */
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

/* LEFT COLUMN STYLING */
.about-left {
  display: flex;
  flex-direction: column;
}

.about-text-content {
  margin-bottom: 40px;
}

.about-lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 400;
}

.about-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--mid);
  font-weight: 300;
}

/* RIGHT COLUMN: THE CARDS */
.about-values-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* Spacing between cards */
}

.av-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #ffffff;
  /* Clean white cards */
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  /* Very subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.av-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Icon Box Styling */
.av-icon-box {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(175, 51, 51, 0.05);
  /* Very light red background for the icon */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.av-card-text {
  display: flex;
  flex-direction: column;
}

.av-card-title {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.av-card-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--mid);
  font-weight: 300;
}

/* RESPONSIVE FIXES */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    /* Stack columns on tablet/mobile */
    gap: 60px;
  }

  #about {
    padding: 80px 30px;
  }

  .about-left {
    order: 1;
    /* Text stays on top */
  }

  .about-right {
    order: 2;
    /* Cards go below text */
  }
}