/*
Theme Name: Visualist Studio
Description: Child theme for Visualist Studio — Commercial Content Production
Template: rex
Version: 1.0.0
Text Domain: visualist
*/

/* ============================================================ */
/* BRAND VARIABLES                                              */
/* ============================================================ */
:root {
  --vs-black:        #272727;
  --vs-dark:         #101010;
  --vs-surface:      #161616;
  --vs-surface-2:    #1e1e1e;
  --vs-border:       #2a2a2a;
  --vs-border-light: #333333;
  --vs-white:        #FAF9F6;
  --vs-off-white:    #f0f0f0;
  --vs-gray:         #888888;
  --vs-muted:        #555555;
  --vs-red:          #C41E3A;
  --vs-red-dark:     #a01830;

  --vs-font-display: 'Barlow Condensed', sans-serif;
  --vs-font-body:    'Inter', sans-serif;

  --vs-max-width:    1200px;
  --vs-section-v:    110px;
  --vs-transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --vs-letter-wide:  0.08em;
}

/* ============================================================ */
/* GLOBAL RESET FOR VISUALIST PAGES                            */
/* ============================================================ */
html, body {
  background-color: var(--vs-black) !important;
  color: var(--vs-white) !important;
  font-family: var(--vs-font-body) !important;
  font-weight: 300 !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  -webkit-font-smoothing: antialiased;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Kill WordPress admin bar spacing so it never creates a gap above the fixed header */
html.admin-bar {
  margin-top: 0 !important;
}
html.admin-bar body {
  margin-top: 0 !important;
}
#wpadminbar {
  display: none !important;
}

#wrapper {
  padding: 0 !important;
  background: var(--vs-black) !important;
}

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

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--vs-white);
  text-decoration: none;
  transition: var(--vs-transition);
}

/* ============================================================ */
/* PAGE PRELOADER — DARK VERSION                               */
/* ============================================================ */
.page-loader {
  background: var(--vs-black) !important;
}
.page-loader .right,
.page-loader .left,
.page-loader h1,
.page-loader h4 {
  color: var(--vs-white) !important;
  font-family: var(--vs-font-display) !important;
}

/* ============================================================ */
/* UNIVERSAL BACKGROUND IMAGE SUPPORT                          */
/* ============================================================ */
.has-bg { position: relative; overflow: hidden; }
.has-bg > .vs-container { position: relative; z-index: 2; }
.vs-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.72;
}
.vs-bg-yt-wrap {
  position: absolute;
  inset: -60px;
  z-index: 0;
  opacity: 0.72;
  pointer-events: none;
}
.vs-bg-yt {
  width: 100%;
  height: 100%;
  border: none;
}
.vs-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  opacity: 0.65;
  filter: grayscale(100%);
  z-index: 0;
}
.vs-bg-overlay--dark {
  position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(
    to right,
    #272727 0%, #272727 28%,
    rgba(8,8,8,0.88) 42%, rgba(8,8,8,0.5) 60%,
    rgba(8,8,8,0.12) 82%, rgba(8,8,8,0) 100%
  );
}
.vs-bg-overlay--white {
  position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(
    to right,
    #FAF9F6 0%, #FAF9F6 32%,
    rgba(255,255,255,0.9) 48%, rgba(255,255,255,0.35) 68%,
    rgba(255,255,255,0) 100%
  );
}

/* ============================================================ */
/* HEADER                                                       */
/* ============================================================ */
header.vs-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  height: auto;
  z-index: 9999;
  background: transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
header.vs-header.scrolled {
  background: rgba(255, 255, 255, 0.55);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(36px) saturate(180%);
  -webkit-backdrop-filter: blur(36px) saturate(180%);
}
/* Flip text to dark when header goes light */
header.vs-header.scrolled .logo-main { color: var(--vs-black); }
header.vs-header.scrolled .logo-sub  { color: rgba(0, 0, 0, 0.45); }
header.vs-header.scrolled .vs-header__nav ul li a { color: rgba(0, 0, 0, 0.6); }
header.vs-header.scrolled .vs-header__nav ul li a:hover,
header.vs-header.scrolled .vs-header__nav ul li.current-menu-item a { color: var(--vs-black); }
header.vs-header.scrolled .vs-header__nav ul li a::after { background: var(--vs-black); }
header.vs-header.scrolled .vs-header__nav .nav-cta a {
  background: var(--vs-black);
  color: var(--vs-white) !important;
}
header.vs-header.scrolled .vs-header__nav .nav-cta a:hover {
  background: var(--vs-red);
  color: var(--vs-white) !important;
}
header.vs-header.scrolled .vs-hamburger span { background: var(--vs-black); }

/* Logo swap: white by default, dark when scrolled */
.vs-logo--dark  { display: none; }
.vs-logo--light { display: inline-flex; }
header.vs-header.scrolled .vs-logo--light { display: none; }
header.vs-header.scrolled .vs-logo--dark  { display: inline-flex; }

.vs-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--vs-max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 84px;
}
.vs-header__logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
/* Logo image in header */
.vs-header__logo .vs-logo-img {
  height: 36px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
/* Text fallback */
.vs-header__logo .logo-main {
  font-family: var(--vs-font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.14em;
  color: var(--vs-white);
  text-transform: uppercase;
}
.vs-header__logo .logo-sub {
  font-family: var(--vs-font-body);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--vs-gray);
  text-transform: uppercase;
  margin-top: 2px;
}
/* Footer logo image */
.vs-footer__brand .vs-logo-img {
  height: 32px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.vs-footer__tagline {
  margin: 10px 0 0;
  font-family: var(--vs-font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.45);
}
.vs-footer__tagline em {
  font-style: italic;
  color: var(--vs-red);
  font-weight: 700;
}
.vs-footer__tagline-img {
  display: block;
  margin-top: 10px;
  height: 18px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  opacity: 0.75;
}
.vs-header__nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.vs-header__nav ul li a {
  font-family: var(--vs-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--vs-letter-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  position: relative;
  padding: 10px 16px;
  transition: color 0.3s ease;
}
.vs-header__nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 7px;
  left: 16px;
  right: 16px;
  width: 0;
  height: 1px;
  background: var(--vs-white);
  transition: width 0.3s ease;
}
.vs-header__nav ul li a:hover,
.vs-header__nav ul li.current-menu-item a {
  color: var(--vs-white);
}
.vs-header__nav ul li a:hover::after,
.vs-header__nav ul li.current-menu-item a::after {
  width: calc(100% - 32px);
}
/* CTA nav button */
.vs-header__nav .nav-cta a {
  background: var(--vs-white);
  color: var(--vs-black) !important;
  padding: 12px 28px;
  font-size: 12px;
  letter-spacing: 0.12em;
  border-radius: 10px;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.vs-header__nav .nav-cta a::after { display: none; }
.vs-header__nav .nav-cta a:hover {
  background: var(--vs-red);
  color: var(--vs-white) !important;
}

/* Hamburger */
.vs-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.vs-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--vs-white);
  transition: var(--vs-transition);
}
.vs-hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.vs-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.vs-hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.vs-mobile-nav {
  position: fixed !important;
  top: 64px !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: #272727 !important;
  z-index: 99999 !important;
  padding: 40px 32px 48px !important;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}
.vs-mobile-nav.open {
  display: flex !important;
}

/* Mobile nav links — divs to avoid parent theme nav/ul/li overrides */
.vs-mnav__links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.vs-mnav__link {
  display: block !important;
  padding: 20px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  font-family: var(--vs-font-display) !important;
  font-size: 30px !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  color: #FAF9F6 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}
.vs-mnav__link:hover,
.vs-mnav__link:active {
  color: var(--vs-red) !important;
}
.vs-mnav__cta {
  display: block !important;
  padding: 16px 24px !important;
  background: var(--vs-red) !important;
  color: #FAF9F6 !important;
  font-family: var(--vs-font-display) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  text-align: center !important;
  text-decoration: none !important;
}
.vs-mnav__foot {
  margin-top: 20px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ============================================================ */
/* GLOBAL COMPONENTS                                           */
/* ============================================================ */

/* Section wrapper */
.vs-section {
  padding: var(--vs-section-v) 0;
  position: relative;
}
.vs-section--dark    { background: var(--vs-black); }
.vs-section--surface { background: var(--vs-surface); }
.vs-section--dark-2  { background: var(--vs-dark); }

.vs-container {
  max-width: var(--vs-max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* Section label */
.vs-label {
  font-family: var(--vs-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vs-red);
  display: block;
  margin-bottom: 18px;
}

/* Headings */
.vs-h1 {
  font-family: var(--vs-font-display);
  font-weight: 800;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--vs-white);
  margin: 0 0 32px;
}
.vs-h2 {
  font-family: var(--vs-font-display);
  font-weight: 800;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--vs-white);
  margin: 0 0 24px;
}
.vs-h3 {
  font-family: var(--vs-font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--vs-white);
  margin: 0 0 16px;
}
.vs-h4 {
  font-family: var(--vs-font-display);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vs-white);
  margin: 0 0 10px;
}

.vs-lead {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 0 40px;
}
.vs-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

/* Divider */
.vs-divider {
  width: 40px;
  height: 2px;
  background: var(--vs-red);
  margin: 0 0 32px;
}

/* Buttons */
.vs-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--vs-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 36px;
  border-radius: 10px;
  transition: var(--vs-transition);
  cursor: pointer;
  border: none;
}
.vs-btn--primary {
  background: var(--vs-white);
  color: var(--vs-black);
}
.vs-btn--primary:hover {
  background: var(--vs-red);
  color: var(--vs-white);
}
.vs-btn--outline {
  background: transparent;
  color: var(--vs-white);
  border: 1px solid rgba(255,255,255,0.35);
}
.vs-btn--outline:hover {
  background: var(--vs-white);
  color: var(--vs-black);
  border-color: var(--vs-white);
}
.vs-btn--red {
  background: var(--vs-red);
  color: var(--vs-white);
}
.vs-btn--red:hover {
  background: var(--vs-red-dark);
  color: var(--vs-white);
}
.vs-btn svg,
.vs-btn .btn-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.vs-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ============================================================ */
/* HERO SECTION                                                */
/* ============================================================ */
.vs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--vs-black);
  overflow: hidden;
}
.vs-hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    to right,
    #272727 0%,
    #272727 28%,
    rgba(8,8,8,0.88) 42%,
    rgba(8,8,8,0.5) 60%,
    rgba(8,8,8,0.12) 82%,
    rgba(8,8,8,0) 100%
  );
  z-index: 1;
}
.vs-hero__bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  opacity: 0.68;
  filter: grayscale(100%) brightness(0.72);
  z-index: 0;
}
.vs-hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  max-width: var(--vs-max-width);
  margin: 0 auto;
  padding: 140px 40px 60px;
  width: 100%;
}
.vs-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}
.vs-hero__eyebrow-line {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}
.vs-hero__eyebrow-text {
  font-family: var(--vs-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.vs-hero__title {
  font-family: var(--vs-font-display);
  font-weight: 900;
  font-size: clamp(72px, 12vw, 140px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--vs-white);
  margin: 0 0 24px;
  max-width: 900px;
}
.vs-hero__title em {
  font-style: italic;
  color: var(--vs-red);
}
.vs-hero__title-img {
  margin: 0 0 24px;
}
.vs-hero__title-img img {
  display: block;
  width: 100%;
  height: auto;
}
.vs-hero__secondary {
  font-family: var(--vs-font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 26px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 16px;
}
.vs-hero__services {
  font-family: var(--vs-font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 28px;
}
.vs-hero__tagline {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--vs-max-width);
  margin: 0 auto;
  padding: 0 40px 52px;
  font-family: var(--vs-font-display);
  font-weight: 900;
  font-size: clamp(22px, 2.5vw, 32px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--vs-white);
}
.vs-hero__tagline em {
  font-style: italic;
  color: var(--vs-red);
  font-weight: 700;
}
.vs-hero__tagline--img { padding-bottom: 44px; }
.vs-hero__tagline-img {
  display: block;
  height: auto; /* overridden by inline style from Elementor slider */
  width: auto;
  max-width: 80vw;
}
.vs-hero__subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 0 50px;
}
.vs-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.vs-hero__scroll {
  position: absolute;
  bottom: 52px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.vs-hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--vs-red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================================ */
/* PROBLEM / INTRO SECTION                                     */
/* ============================================================ */
.vs-intro {
  background: #f5f5f5;
  padding: var(--vs-section-v) 0;
  border-top: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
}
/* When image is active: keep white background, text stays dark */
.vs-intro.has-bg {
  background: #FAF9F6;
  border-top: 1px solid #e8e8e8;
}
.vs-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.vs-intro__left { }
.vs-intro__right { }
.vs-pain-list {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}
.vs-pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--vs-border);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.vs-pain-list li:last-child { border-bottom: none; }
.vs-pain-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vs-red);
  margin-top: 8px;
}
.vs-intro__statement {
  font-family: var(--vs-font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.3;
  color: var(--vs-white);
  margin: 0 0 24px;
  text-transform: uppercase;
}

/* ============================================================ */
/* TRUSTED BY / CLIENTS STRIP                                  */
/* ============================================================ */
.vs-clients {
  background: #FAF9F6;
  padding: 72px 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.vs-clients__header {
  text-align: center;
  margin-bottom: 52px;
}
.vs-clients__label {
  font-family: var(--vs-font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.35em !important;
  text-transform: uppercase !important;
  color: rgba(0,0,0,0.4) !important;
  display: block;
}
.vs-clients__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.vs-clients__item {
  width: 20%;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  min-height: 120px;
  box-sizing: border-box;
}
.vs-clients__item img {
  width: auto;
  height: 36px;
  max-width: 140px;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease;
}
.vs-clients__item:hover img { opacity: 0.75; }
.vs-clients__item span {
  font-family: var(--vs-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(0,0,0,0.3);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .vs-clients__item { width: 33.333%; min-width: 0; }
}
@media (max-width: 640px) {
  .vs-clients__item { width: 50%; }
}

/* ============================================================ */
/* SERVICES / WHAT WE PRODUCE                                  */
/* ============================================================ */
.vs-services {
  background: var(--vs-black);
  padding: var(--vs-section-v) 0;
}
.vs-services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}
.vs-services__header-right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.vs-services .vs-body {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
}
.vs-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: transparent;
}
.vs-service-card {
  background: #111111;
  border-radius: 10px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 8px 40px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.vs-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--vs-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.vs-service-card:hover {
  background: #161616;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 4px 16px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}
.vs-service-card:hover::before {
  transform: scaleX(1);
}
.vs-service-card__num {
  font-family: var(--vs-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--vs-muted);
  margin-bottom: 24px;
  display: block;
}
.vs-service-card__title {
  font-family: var(--vs-font-display);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--vs-white);
  margin: 0 0 18px;
}
.vs-service-card__body {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin: 0 0 28px;
}
.vs-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vs-gray);
  transition: color 0.3s ease;
}
.vs-service-card:hover .vs-service-card__link {
  color: var(--vs-white);
}
.vs-service-card__link svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}
.vs-service-card:hover .vs-service-card__link svg {
  transform: translateX(4px);
}

/* ============================================================ */
/* VALUES / WHY VISUALIST                                      */
/* ============================================================ */
.vs-values {
  background: #f0f0f0;
  padding: var(--vs-section-v) 0;
  border-top: 1px solid #e0e0e0;
}
.vs-values__header {
  max-width: 560px;
  margin-bottom: 70px;
}
.vs-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: transparent;
}
.vs-value-item {
  background: #FAF9F6;
  border-radius: 10px;
  padding: 44px 36px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}
.vs-value-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--vs-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.vs-value-item:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.13), 0 4px 12px rgba(0,0,0,0.07);
  transform: translateY(-5px);
}
.vs-value-item:hover::before {
  transform: scaleX(1);
}
.vs-value-item__num {
  font-family: var(--vs-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--vs-muted);
  margin-bottom: 20px;
  display: block;
}
.vs-value-item__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  color: var(--vs-red);
}
.vs-value-item__title {
  font-family: var(--vs-font-display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--vs-white);
  margin: 0 0 14px;
  line-height: 1.1;
}
.vs-value-item__body {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================ */
/* PROCESS SECTION                                             */
/* ============================================================ */
.vs-process {
  background: var(--vs-black);
  padding: var(--vs-section-v) 0;
}
.vs-process__header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.vs-process__tagline {
  font-family: var(--vs-font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--vs-white);
  margin: 0;
}
.vs-process__tagline em {
  font-style: italic;
  color: var(--vs-red);
}
.vs-process .vs-body {
  color: rgba(255,255,255,0.88);
}
.vs-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: transparent;
}
.vs-process__step {
  background: #111111;
  border-radius: 10px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 8px 40px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.4);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.vs-process__step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--vs-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.vs-process__step:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 4px 16px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}
.vs-process__step:hover::before {
  transform: scaleX(1);
}
.vs-process__step-num {
  font-family: var(--vs-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--vs-muted);
  display: block;
  margin-bottom: 18px;
}
.vs-process__step-title {
  font-family: var(--vs-font-display);
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--vs-white);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.vs-process__step-body {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================ */
/* STATS / CREDENTIALS BAND                                   */
/* ============================================================ */
.vs-stats {
  background: var(--vs-black);
  padding: 70px 0;
}
.vs-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.vs-stat-item {
  background: var(--vs-black);
  padding: 36px 40px;
  text-align: center;
}
.vs-stat-item__num {
  font-family: var(--vs-font-display);
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  color: var(--vs-white);
  display: block;
  margin-bottom: 8px;
}
.vs-stat-item__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ============================================================ */
/* FINAL CTA SECTION                                          */
/* ============================================================ */
.vs-cta-section {
  background: var(--vs-black);
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--vs-border);
}
.vs-cta-section .vs-h2 {
  max-width: 640px;
  margin: 0 auto 20px;
}
.vs-cta-section .vs-lead {
  margin: 0 auto 50px;
  text-align: center;
}
.vs-cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================ */
/* WORK PAGE — HERO (full-bleed video background)             */
/* ============================================================ */
.vs-work-hero {
  position: relative;
  min-height: 100vh;
  background: var(--vs-black);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Full-bleed bg: video or image */
.vs-work-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  z-index: 0;
}

/* YouTube wrapper — must be 16:9 scaled to cover full area */
.vs-work-hero__yt-wrap {
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
}
.vs-work-hero__yt {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

/* Dark overall tint */
.vs-work-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* Strong gradient from left — makes text legible, fades out right */
.vs-work-hero__overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.96) 0%,
    rgba(8,8,8,0.75) 35%,
    rgba(8,8,8,0.25) 65%,
    transparent 100%
  );
  z-index: 2;
}

/* Content sits over overlays */
.vs-work-hero__body {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 88px;
  padding-bottom: 80px;
}
.vs-work-hero__content { max-width: 560px; }

.vs-work-hero__title {
  font-family: var(--vs-font-display);
  font-weight: 900;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--vs-white);
  margin: 16px 0 28px;
}
.vs-work-hero__sub {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 40px;
}

/* Showreel label — bottom right corner */
.vs-work-hero__video-label {
  position: absolute;
  bottom: 36px;
  right: 40px;
  z-index: 3;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-family: var(--vs-font-display);
  font-weight: 600;
}

/* ============================================================ */
/* SELECTED WORK SECTION                                      */
/* ============================================================ */
.vs-selwork {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #272727;
  height: 100vh;
  min-height: 640px;
}

/* ── LEFT: 3 stacked thumbnails ─────────────────────────── */
.vs-selwork__left {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.vs-selwork__thumb {
  position: relative;
  flex: 1;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  text-decoration: none;
  background: #0f0f0f;
  min-height: 0;
}
.vs-selwork__thumb + .vs-selwork__thumb {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.vs-selwork__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.72;
  transition: opacity 0.45s ease, transform 0.6s ease;
}
.vs-selwork__thumb-empty {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #141414 0%, #0a0a0a 100%);
}
/* Gradient overlay */
.vs-selwork__thumb-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 24px;
  transition: background 0.4s ease;
}
/* Number badge top-left */
.vs-selwork__thumb-num {
  font-family: var(--vs-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.3);
}
/* Footer row: play + label */
.vs-selwork__thumb-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
/* Play icon */
.vs-selwork__play {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s, border-color 0.3s;
}
.vs-selwork__play svg {
  width: 12px;
  height: 12px;
  margin-left: 2px;
  fill: #fff;
}
.vs-selwork__thumb-lbl {
  font-family: var(--vs-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.88);
  line-height: 1;
}
/* Hover */
.vs-selwork__thumb:hover img { opacity: 1; transform: scale(1.04); }
.vs-selwork__thumb:hover .vs-selwork__thumb-over {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.25) 60%, transparent 100%);
}
.vs-selwork__thumb:hover .vs-selwork__play {
  opacity: 1;
  transform: scale(1);
  background: var(--vs-red);
  border-color: var(--vs-red);
}

/* ── RIGHT: content panel ────────────────────────────────── */
.vs-selwork__right {
  display: flex;
  flex-direction: column;
  padding: 48px 56px;
  border-left: 1px solid rgba(255,255,255,0.06);
  height: 100%;
  overflow-y: auto;
}
.vs-selwork__meta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  text-align: right;
  margin-bottom: 28px;
}
.vs-selwork__body { flex: 1; }
.vs-selwork__h {
  font-family: var(--vs-font-display);
  font-weight: 900;
  font-size: clamp(56px, 6.5vw, 96px);
  line-height: 0.88;
  text-transform: uppercase;
  color: #FAF9F6;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.vs-selwork__sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 400px;
}

/* Numbered list */
.vs-selwork__list { border-top: 1px solid rgba(255,255,255,0.07); }
.vs-selwork__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.25s;
}
.vs-selwork__item:hover { background: rgba(255,255,255,0.02); }
.vs-selwork__n {
  font-family: var(--vs-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.22);
  min-width: 22px;
  padding-top: 4px;
  flex-shrink: 0;
}
.vs-selwork__item-title {
  display: block;
  font-family: var(--vs-font-display);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #FAF9F6;
  margin: 0 0 4px;
}
.vs-selwork__item-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin: 0;
}

/* Bottom tagline */
.vs-selwork__tagline {
  margin-top: 28px;
  text-align: right;
  font-family: var(--vs-font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FAF9F6;
}
.vs-selwork__tagline em {
  font-style: italic;
  color: var(--vs-red);
  font-weight: 700;
}
.vs-selwork__thumb--video { cursor: pointer; }

/* ── Video Lightbox Modal ────────────────────────────────── */
.vs-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  align-items: center;
  justify-content: center;
}
.vs-modal.open { display: flex; }
.vs-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  cursor: pointer;
}
.vs-modal__box {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 1100px;
  border-radius: 10px;
  overflow: hidden;
}
.vs-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #FAF9F6;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 0;
}
.vs-modal__close:hover { opacity: 1; }
.vs-modal__ratio {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}
.vs-modal__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .vs-selwork { grid-template-columns: 1fr; min-height: auto; }
  .vs-selwork__left { min-height: 70vw; }
  .vs-selwork__right { padding: 40px 28px; border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }
  .vs-selwork__play { opacity: 1; transform: none; }
}
@media (max-width: 640px) {
  .vs-selwork__right { padding: 32px 20px; }
  .vs-selwork__h { font-size: clamp(48px, 12vw, 72px); }
  .vs-selwork__item-title { font-size: 15px; }
}

/* ============================================================ */
/* FEATURED CAMPAIGN SECTIONS                                 */
/* ============================================================ */

.vs-featcamp {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  background: #1a1a1a;
}
.vs-featcamp__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.vs-featcamp__thumb--empty {
  background: #1a1a1a;
}
.vs-featcamp:hover .vs-featcamp__thumb {
  transform: scale(1.04);
}
.vs-featcamp__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}
.vs-featcamp:hover .vs-featcamp__video {
  opacity: 1;
}
.vs-featcamp__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(39,39,39,0.95) 0%,
    rgba(39,39,39,0.55) 35%,
    rgba(39,39,39,0.15) 65%,
    transparent 100%
  );
  z-index: 2;
  transition: background 0.5s ease;
}
.vs-featcamp:hover .vs-featcamp__overlay {
  background: linear-gradient(
    to top,
    rgba(39,39,39,0.88) 0%,
    rgba(39,39,39,0.3) 45%,
    transparent 100%
  );
}
.vs-featcamp__play-hint {
  position: absolute;
  top: 32px;
  right: 40px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(250,249,246,0.45);
  font-family: var(--vs-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.vs-featcamp__play-hint svg {
  width: 18px;
  height: 18px;
}
.vs-featcamp:hover .vs-featcamp__play-hint {
  color: var(--vs-red);
}
.vs-featcamp__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 48px 56px;
}
.vs-featcamp__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
}
.vs-featcamp__num {
  font-family: var(--vs-font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--vs-red);
  text-transform: uppercase;
}
.vs-featcamp__client {
  font-family: var(--vs-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.5);
}
.vs-featcamp__title {
  font-family: var(--vs-font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.93;
  color: var(--vs-white);
  margin: 0 0 18px;
  max-width: 720px;
}
.vs-featcamp__desc {
  font-family: var(--vs-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250,249,246,0.7);
  max-width: 480px;
  margin: 0 0 28px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.08s, transform 0.4s ease 0.08s;
}
.vs-featcamp:hover .vs-featcamp__desc {
  opacity: 1;
  transform: translateY(0);
}
.vs-featcamp__cta {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.14s, transform 0.4s ease 0.14s, background 0.25s, color 0.25s, border-color 0.25s;
}
.vs-featcamp:hover .vs-featcamp__cta {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 900px) {
  .vs-featcamp__content { padding: 36px 32px; }
}
@media (max-width: 640px) {
  .vs-featcamp { height: 80vh; min-height: 460px; }
  .vs-featcamp__content { padding: 28px 20px; }
  .vs-featcamp__desc,
  .vs-featcamp__cta { opacity: 1; transform: none; transition: none; }
}

/* ============================================================ */
/* WORK PAGE — SERVICE BLOCKS                                 */
/* ============================================================ */

/* ── Service Block — Split Layout ───────────────────────── */
/* Remove Elementor wrapper padding/margin around service blocks */
.elementor-widget-vs_service_block,
.elementor-widget-vs_service_block .elementor-widget-container {
  padding: 0 !important;
  margin: 0 !important;
}
.elementor-widget-wrap:has(.elementor-widget-vs_service_block),
.elementor-column:has(.elementor-widget-vs_service_block),
.elementor-section:has(.elementor-widget-vs_service_block),
.e-con:has(.elementor-widget-vs_service_block),
.e-con-inner:has(.elementor-widget-vs_service_block) {
  padding: 0 !important;
  margin: 0 !important;
  gap: 0 !important;
}

.vs-sblock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  border-bottom: 1px solid var(--vs-border);
}
.vs-sblock--media-right { direction: rtl; }
.vs-sblock--media-right > * { direction: ltr; }

/* Dark / Light content panel */
.vs-sblock--dark  { background: var(--vs-black); }
.vs-sblock--light { background: var(--vs-white); }

/* MEDIA PANEL */
.vs-sblock__media {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #111;
  min-height: 420px;
}
.vs-sblock__video,
.vs-sblock__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vs-sblock__yt-wrap {
  position: absolute;
  inset: -60px;
  pointer-events: none;
}
.vs-sblock__yt {
  width: 100%;
  height: 100%;
  border: none;
}
.vs-sblock__media-empty {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}
/* Number badge over media */
.vs-sblock__badge {
  position: absolute;
  top: 32px;
  left: 32px;
  font-family: var(--vs-font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(250,249,246,0.9);
  background: var(--vs-red);
  padding: 6px 12px;
  z-index: 2;
}

/* CONTENT PANEL */
.vs-sblock__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
}
.vs-sblock__title {
  font-family: var(--vs-font-display);
  font-weight: 900;
  font-size: clamp(40px, 4.5vw, 68px);
  line-height: 0.93;
  text-transform: uppercase;
  color: var(--vs-white);
  margin: 0 0 28px;
}
.vs-sblock--light .vs-sblock__title { color: var(--vs-black); }
.vs-sblock__title span { display: block; }
.vs-sblock__tagline {
  font-family: var(--vs-font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 24px);
  text-transform: uppercase;
  color: var(--vs-red);
  line-height: 1.3;
  margin: 0 0 16px;
}
.vs-sblock__desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(250,249,246,0.65);
  line-height: 1.8;
  margin: 0 0 36px;
}
.vs-sblock--light .vs-sblock__desc { color: rgba(39,39,39,0.65); }
.vs-sblock__lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.vs-sblock__cta { align-self: flex-start; }

/* Detail lists (shared) */
.vs-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vs-detail-list__title {
  font-family: var(--vs-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vs-gray);
  margin: 0 0 14px;
  display: block;
}
.vs-detail-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--vs-border);
  font-size: 15px;
  font-weight: 300;
  color: rgba(250,249,246,0.72);
  display: flex;
  align-items: center;
  gap: 12px;
}
.vs-sblock--light .vs-detail-list li { color: rgba(39,39,39,0.72); border-color: rgba(0,0,0,0.1); }
.vs-detail-list li:last-child { border-bottom: none; }
.vs-detail-list li::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--vs-red);
}

/* Responsive */
@media (max-width: 900px) {
  .vs-sblock { grid-template-columns: 1fr; min-height: auto; direction: ltr; }
  .vs-sblock__media { min-height: 56vw; }
  .vs-sblock__content { padding: 36px 28px; }
  .vs-sblock__badge { top: 20px; left: 20px; }
  .vs-sblock__title { margin-bottom: 18px; }
  .vs-sblock__desc { margin-bottom: 24px; }
  .vs-sblock__lists { margin-bottom: 28px; }
}
@media (max-width: 640px) {
  .vs-sblock__media { min-height: 65vw; }
  .vs-sblock__content { padding: 28px 20px; }
  .vs-sblock__lists { grid-template-columns: 1fr; gap: 20px; }
  .vs-sblock__cta { width: 100%; justify-content: center; }
}

/* ============================================================ */
/* CONTACT PAGE                                               */
/* ============================================================ */

/* CF7 — dark background default */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--vs-border); color: var(--vs-white);
  font-family: var(--vs-font-body); font-size: 14px; font-weight: 300;
  padding: 10px 0; outline: none; transition: border-color 0.3s ease; appearance: none;
}
/* Select dropdown — force dark bg so options are readable */
.wpcf7-form select {
  background-color: #111111 !important;
  color: #FAF9F6 !important;
  cursor: pointer;
}
.wpcf7-form select option {
  background-color: #111111;
  color: #FAF9F6;
  font-weight: 300;
}
.wpcf7-form select option:hover,
.wpcf7-form select option:checked {
  background-color: var(--vs-red);
  color: #FAF9F6;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus { border-bottom-color: var(--vs-red); }
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder { color: var(--vs-muted); }
.wpcf7-form textarea { resize: none; min-height: 90px; }
.wpcf7-form label {
  display: block; font-size: 9px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--vs-muted); margin-bottom: 10px;
}
.wpcf7-form input[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--vs-white); color: var(--vs-black);
  font-family: var(--vs-font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 15px 40px; border-radius: 10px; border: none;
  cursor: pointer; transition: var(--vs-transition); margin-top: 8px;
}
.wpcf7-form input[type="submit"]:hover { background: var(--vs-red); color: var(--vs-white); }
.wpcf7-spinner { display: none !important; }
.wpcf7-not-valid-tip { font-size: 11px; color: var(--vs-red); margin-top: 4px; display: block; }
.wpcf7-response-output {
  border: 1px solid var(--vs-border) !important; padding: 14px 20px !important;
  font-size: 13px !important; color: rgba(255,255,255,0.6) !important;
  background: transparent !important; margin-top: 20px !important; border-radius: 10px !important;
}

/* ── Contact Page — Split dark layout ───────── */
.vs-cpage {
  background: #272727;
  min-height: 100vh;
  padding-top: 88px;
  display: flex;
  flex-direction: column;
}

/* ── Top indicator bar ───────────────────────── */
.vs-cpage__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  height: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-family: var(--vs-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

/* ── Two panels ──────────────────────────────── */
.vs-cpage__panels {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 132px);
}

/* LEFT panel */
.vs-cpage__left {
  padding: 64px 60px;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vs-cpage__cta-title {
  font-family: var(--vs-font-display);
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #FAF9F6;
  margin: 0 0 32px;
}
.vs-cpage__cta-body {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
  max-width: 360px;
  margin: 0;
}
.vs-cpage__left-foot { }
.vs-cpage__rule {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.vs-cpage__brand-info strong {
  display: block;
  font-family: var(--vs-font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FAF9F6;
  margin-bottom: 8px;
}
.vs-cpage__brand-info span {
  display: block;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}

/* RIGHT panel */
.vs-cpage__right {
  padding: 64px 60px;
  display: flex;
  flex-direction: column;
}
.vs-cpage__title {
  font-family: var(--vs-font-display);
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #FAF9F6;
  margin: 0 0 40px;
}

/* Contact info rows */
.vs-cpage__contact-rows {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.vs-cpage__contact-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.vs-cpage__contact-key {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  width: 72px;
  flex-shrink: 0;
}
.vs-cpage__contact-row a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s ease;
}
.vs-cpage__contact-row a:hover { color: #FAF9F6; }

/* CF7 form — dark minimal */
.vs-cpage__form-wrap { flex: 1; }
.vs-cpage__form-wrap .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
}
.vs-cpage__form-wrap .wpcf7-form > p {
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vs-cpage__form-wrap .wpcf7-form > p:has(textarea),
.vs-cpage__form-wrap .wpcf7-form > p:has(input[type="submit"]) { grid-column: 1 / -1; }
.vs-cpage__form-wrap .wpcf7-form label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  display: block;
}
.vs-cpage__form-wrap .wpcf7-form input[type="text"],
.vs-cpage__form-wrap .wpcf7-form input[type="email"],
.vs-cpage__form-wrap .wpcf7-form input[type="tel"],
.vs-cpage__form-wrap .wpcf7-form input[type="url"],
.vs-cpage__form-wrap .wpcf7-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  padding: 10px 0;
  font-size: 14px;
  font-weight: 300;
  color: #FAF9F6;
  font-family: var(--vs-font-body);
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: 10px;
  -webkit-appearance: none;
}
.vs-cpage__form-wrap .wpcf7-form input::placeholder,
.vs-cpage__form-wrap .wpcf7-form textarea::placeholder { color: rgba(255,255,255,0.2); }
.vs-cpage__form-wrap .wpcf7-form input:focus,
.vs-cpage__form-wrap .wpcf7-form textarea:focus { border-bottom-color: var(--vs-red); }
.vs-cpage__form-wrap .wpcf7-form textarea { height: 90px; resize: vertical; }
.vs-cpage__form-wrap .wpcf7-form input[type="submit"] {
  width: 100%;
  background: var(--vs-red);
  border: none;
  padding: 16px 32px;
  font-family: var(--vs-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FAF9F6;
  cursor: pointer;
  transition: background 0.25s ease;
  border-radius: 10px;
}
.vs-cpage__form-wrap .wpcf7-form input[type="submit"]:hover { background: #a00; }

/* Bottom tagline */
.vs-cpage__right-foot {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: flex-end;
}
.vs-cpage__tagline-deco {
  font-family: var(--vs-font-display);
  font-weight: 900;
  font-size: clamp(18px, 2vw, 26px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #FAF9F6;
}
.vs-cpage__tagline-deco em {
  font-style: italic;
  color: var(--vs-red);
}

/* ============================================================ */
/* FOOTER                                                      */
/* ============================================================ */
footer.vs-footer {
  background: var(--vs-black) !important;
  border-top: 1px solid var(--vs-border);
  padding: 60px 0 !important;
}
.vs-footer__inner {
  max-width: var(--vs-max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.vs-footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.vs-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.vs-footer__social-link svg {
  width: 16px;
  height: 16px;
}
.vs-footer__social-link:hover {
  color: var(--vs-white);
  border-color: var(--vs-red);
  background: rgba(196,18,18,0.12);
}
.vs-footer__brand .logo-main {
  font-family: var(--vs-font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.14em;
  color: var(--vs-white);
  text-transform: uppercase;
  display: block;
}
.vs-footer__brand .logo-sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--vs-muted);
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}
.vs-footer__copy {
  font-size: 12px;
  font-weight: 300;
  color: var(--vs-muted);
  flex: 1;
  text-align: center;
  margin: 0;
}
.vs-footer__copy a {
  color: var(--vs-gray);
}
.vs-footer__copy a:hover { color: var(--vs-white); }
.vs-footer__ssm {
  font-size: 11px;
  font-weight: 300;
  color: var(--vs-muted);
  letter-spacing: 0.04em;
  margin: 4px 0 0;
}

/* ============================================================ */
/* PAGE HERO (non-home) — shared                              */
/* ============================================================ */
.vs-page-hero {
  padding: 160px 0 80px;
  background: var(--vs-black);
  border-bottom: 1px solid var(--vs-border);
}

/* ============================================================ */
/* ANIMATIONS                                                  */
/* ============================================================ */
.vs-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.vs-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.vs-fade-up:nth-child(2) { transition-delay: 0.1s; }
.vs-fade-up:nth-child(3) { transition-delay: 0.2s; }
.vs-fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================ */
/* RESPONSIVE                                                  */
/* ============================================================ */

/* ── 1100px: tablet landscape ─────────────────────────────── */
@media (max-width: 1100px) {
  :root { --vs-section-v: 80px; }
  .vs-services__grid { grid-template-columns: 1fr 1fr; }
  .vs-values__grid   { grid-template-columns: 1fr 1fr; }
  .vs-stats__grid    { grid-template-columns: 1fr 1fr; }
}

/* ── 900px: tablet portrait ───────────────────────────────── */
@media (max-width: 900px) {
  /* Header */
  .vs-header__nav  { display: none !important; }
  .vs-hamburger    { display: flex; }
  .vs-header__inner { height: 64px; }

  /* Intro */
  .vs-intro__grid { grid-template-columns: 1fr; gap: 40px; }

  /* Services */
  .vs-services__header { grid-template-columns: 1fr; }
  .vs-services__header-right p { text-align: left !important; max-width: 100% !important; }

  /* Process */
  .vs-process__header { grid-template-columns: 1fr; gap: 30px; }
  .vs-process__steps  { grid-template-columns: 1fr 1fr; }

  /* Work hero */
  .vs-work-hero__content { max-width: 100%; }

  /* Service block — handled inside .vs-sblock responsive rules */

  /* Selected work — stack vertically, reset fixed height */
  .vs-selwork { height: auto; }
  .vs-selwork__left { height: 65vw; min-height: 320px; }

  /* Featured campaign play hint */
  .vs-featcamp__play-hint { right: 20px; }

  /* CTA */
  .vs-cta-section { padding: 80px 0; }
  .vs-cta-section__actions { flex-direction: column; align-items: center; gap: 12px; }
  .vs-cta-section__actions .vs-btn { width: 100%; max-width: 340px; justify-content: center; }

  /* Contact */
  .vs-cpage__bar    { padding: 0 28px; }
  .vs-cpage__panels { grid-template-columns: 1fr; }
  .vs-cpage__left   { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 48px 28px; }
  .vs-cpage__right  { padding: 48px 28px; }

  /* Footer */
  .vs-footer__inner { flex-direction: column; text-align: center; gap: 20px; }
  .vs-footer__copy  { text-align: center; }
  .vs-footer__social { justify-content: center; }
  .vs-footer__tagline { text-align: center; }
  .vs-footer__tagline-img { margin: 10px auto 0; }
}

/* ── 640px: mobile ────────────────────────────────────────── */
@media (max-width: 640px) {
  :root { --vs-section-v: 56px; }

  /* Global */
  .vs-container     { padding: 0 20px; }
  .vs-h1            { font-size: clamp(36px, 9vw, 56px); }
  .vs-h2            { font-size: clamp(28px, 7vw, 42px); }

  /* Header */
  .vs-header__inner { padding: 0 20px; height: 56px; }
  .vs-header__logo .vs-logo-img { height: 26px; }
  .vs-mobile-nav { top: 56px !important; }
  .vs-mobile-nav ul li a { font-size: 26px; padding: 16px 0; }

  /* Hero */
  .vs-hero          { min-height: auto; }
  .vs-hero__bg      { background: rgba(39,39,39,0.72); }
  .vs-hero__bg-img  {
    background-position: center top;
    opacity: 0.65;
    filter: grayscale(20%) brightness(0.85);
  }
  .vs-hero__content { padding: 72px 20px 48px; }
  .vs-hero__title-img img { max-width: 100% !important; }
  .vs-hero__subtitle { font-size: 14px; line-height: 1.7; }
  .vs-hero__actions  { flex-direction: column; gap: 10px; }
  .vs-hero__actions .vs-btn { width: 100%; justify-content: center; }
  .vs-hero__tagline  { padding: 0 20px 28px; font-size: clamp(16px, 4.5vw, 24px); }
  .vs-hero__scroll   { display: none; }

  /* Background images — reposition for portrait mobile */
  .vs-bg-img { background-position: center top; }
  .vs-bg-video { object-position: center top; }

  /* Remove two-tone gradient overlays — use single uniform colour */
  .vs-bg-overlay--dark  { background: rgba(39,39,39,0.72); }
  .vs-bg-overlay--white { background: rgba(250,249,246,0.85); }

  /* Clients */
  .vs-clients { padding: 48px 0; }
  .vs-clients__header { margin-bottom: 32px; }
  .vs-clients__item   { padding: 20px 16px; min-height: 80px; }
  .vs-clients__item img { height: 26px; }

  /* Services */
  .vs-services__grid { grid-template-columns: 1fr; }

  /* Values */
  .vs-values__grid { grid-template-columns: 1fr; }

  /* Stats */
  .vs-stats { padding: 48px 0; }
  .vs-stats__grid { grid-template-columns: 1fr 1fr; }
  .vs-stat-item   { padding: 24px 16px; }
  .vs-stat-item__num { font-size: clamp(28px, 8vw, 44px); }

  /* Process */
  .vs-process__steps { grid-template-columns: 1fr; }

  /* Work hero */
  .vs-work-hero__overlay-gradient { background: rgba(39,39,39,0.68); }
  .vs-work-hero__overlay { background: none; }
  .vs-work-hero__bg { object-position: center top; }
  .vs-work-hero__body { padding-top: 64px; padding-bottom: 48px; }
  .vs-work-hero { min-height: auto; }

  /* Service block — handled inside .vs-sblock responsive rules */

  /* CTA */
  .vs-cta-section { padding: 64px 0; }

  /* Footer */
  .vs-footer__inner { padding: 0 20px; }
  .vs-footer__brand .vs-logo-img { margin: 0 auto; }

  /* Contact */
  .vs-cpage { padding-top: 72px; }
  .vs-cpage__bar    { padding: 0 20px; }
  .vs-cpage__left, .vs-cpage__right { padding: 40px 20px; }
  .vs-cpage__form-wrap .wpcf7-form { grid-template-columns: 1fr; }
}

/* ============================================================ */
/* LIGHT SECTION TEXT OVERRIDES                                */
/* ============================================================ */

/* ---- Intro section — light (no image) ---- */
.vs-intro:not(.has-bg) .vs-h2,
.vs-intro:not(.has-bg) .vs-intro__statement {
  color: var(--vs-black);
}
.vs-intro:not(.has-bg) .vs-pain-list li {
  color: rgba(0,0,0,0.6);
  border-bottom-color: #ddd;
}
.vs-intro:not(.has-bg) .vs-body {
  color: rgba(0,0,0,0.6);
}
.vs-intro:not(.has-bg) .vs-btn--outline {
  color: var(--vs-black);
  border-color: rgba(0,0,0,0.25);
}
.vs-intro:not(.has-bg) .vs-btn--outline:hover {
  background: var(--vs-black);
  color: var(--vs-white);
  border-color: var(--vs-black);
}
/* ---- Intro section — white with image (text stays dark) ---- */
.vs-intro.has-bg .vs-h2,
.vs-intro.has-bg .vs-intro__statement { color: var(--vs-black); }
.vs-intro.has-bg .vs-pain-list li { color: rgba(0,0,0,0.6); border-bottom-color: #ddd; }
.vs-intro.has-bg .vs-body { color: rgba(0,0,0,0.6); }
.vs-intro.has-bg .vs-label { color: rgba(0,0,0,0.4); }
.vs-intro.has-bg .vs-btn--outline { color: var(--vs-black); border-color: rgba(0,0,0,0.25); }
.vs-intro.has-bg .vs-btn--outline:hover { background: var(--vs-black); color: var(--vs-white); border-color: var(--vs-black); }


/* ---- Values section ---- */
.vs-values .vs-h2 {
  color: var(--vs-black);
}
.vs-values .vs-lead {
  color: rgba(0,0,0,0.6);
}
.vs-value-item__num {
  color: #bbb;
}
.vs-value-item__title {
  color: var(--vs-black);
}
.vs-value-item__body {
  color: rgba(0,0,0,0.62);
}

/* ---- CTA section (dark background) ---- */
.vs-cta-section .vs-h2 {
  color: var(--vs-white);
}
.vs-cta-section .vs-lead {
  color: rgba(255,255,255,0.6);
}
.vs-cta-section .vs-label {
  color: rgba(255,255,255,0.45);
}
.vs-cta-section .vs-btn--outline {
  color: var(--vs-white);
  border-color: rgba(255,255,255,0.3);
}
.vs-cta-section .vs-btn--outline:hover {
  background: var(--vs-white);
  color: var(--vs-black);
  border-color: var(--vs-white);
}

/* ---- Work page: light-bg service blocks (even nth-child OR explicit class) ---- */
.vs-service-block:nth-child(even) .vs-service-block__title,
.vs-service-block--light .vs-service-block__title {
  color: var(--vs-black);
}
.vs-service-block:nth-child(even) .vs-service-block__tagline,
.vs-service-block--light .vs-service-block__tagline {
  color: var(--vs-black);
}
.vs-service-block:nth-child(even) .vs-service-block__desc,
.vs-service-block--light .vs-service-block__desc {
  color: rgba(0,0,0,0.55);
}
.vs-service-block:nth-child(even) .vs-service-block__num,
.vs-service-block--light .vs-service-block__num {
  color: #bbb;
}
.vs-service-block:nth-child(even) .vs-service-block__header,
.vs-service-block--light .vs-service-block__header {
  border-bottom-color: #ddd;
}
.vs-service-block:nth-child(even) .vs-detail-list li,
.vs-service-block--light .vs-detail-list li {
  color: rgba(0,0,0,0.72);
  border-bottom-color: #ddd;
}
.vs-service-block:nth-child(even) .vs-detail-list__title,
.vs-service-block--light .vs-detail-list__title {
  color: #888;
}
.vs-service-block:nth-child(even) .vs-btn--outline,
.vs-service-block--light .vs-btn--outline {
  color: var(--vs-black);
  border-color: rgba(0,0,0,0.25);
}
.vs-service-block:nth-child(even) .vs-btn--outline:hover,
.vs-service-block--light .vs-btn--outline:hover {
  background: var(--vs-black);
  color: var(--vs-white);
  border-color: var(--vs-black);
}
.vs-service-block--light {
  border-bottom-color: #e0e0e0;
}

