/*
Theme Name: VPBZ Custom
Theme URI: https://www.vpbz.com/
Author: Video Productions by Zeus
Author URI: https://www.vpbz.com/
Description: Custom WordPress theme for Video Productions by Zeus (VPBZ) — an AI-powered marketing agency site with Home, Services, Gallery, About, Blog, and Contact templates.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: vpbz
*/

/* ==========================================================================
   VIDEO PRODUCTIONS BY ZEUS (VPBZ) — GLOBAL STYLESHEET
   Design system: colors, type, spacing, components, animations, responsive
   ========================================================================== */

/* -------------------- Fonts -------------------- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* -------------------- Design Tokens -------------------- */
:root{
  --navy:            #0B1E3D;
  --blue-900:        #10275C;
  --blue:            #1E4FD8;
  --blue-600:        #2B5CF0;
  --blue-light:      #4C7DFF;
  --sky:             #EAF1FF;
  --sky-soft:        #F4F8FF;
  --silver:          #B9C3CE;
  --silver-soft:      #DDE3EA;
  --gray-50:         #F7F9FB;
  --gray-100:        #F1F3F6;
  --gray-200:        #E4E8ED;
  --gray-500:        #6B7684;
  --gray-700:        #414B58;
  --white:           #FFFFFF;
  --accent:          #FF6B45;
  --accent-dark:     #E85530;
  --success:         #17A673;

  --font-head: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 6rem;
  --sp-8: 8rem;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  --shadow-sm: 0 2px 8px rgba(11,30,61,0.06);
  --shadow-md: 0 8px 30px rgba(11,30,61,0.10);
  --shadow-lg: 0 20px 60px rgba(11,30,61,0.16);
  --container: 1200px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }
h1,h2,h3,h4,h5{
  font-family: var(--font-head);
  color: var(--navy);
  margin: 0 0 var(--sp-2);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1{ font-size: clamp(2.4rem, 5vw, 3.75rem); font-weight: 800; }
h2{ font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
h3{ font-size: clamp(1.3rem, 2vw, 1.6rem); }
p{ margin:0 0 var(--sp-2); }
.container{ max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-4); }
section{ position: relative; }

.text-center{ text-align:center; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-head); font-weight:700; font-size:.78rem;
  letter-spacing:.14em; text-transform:uppercase; color: var(--blue);
  background: var(--sky); padding: 6px 16px; border-radius: var(--radius-full);
  margin-bottom: var(--sp-3);
}
.eyebrow::before{ content:''; width:6px; height:6px; border-radius:50%; background: var(--accent); }
.lede{ font-size: 1.15rem; color: var(--gray-500); max-width: 640px; }
.section-head{ max-width: 720px; margin: 0 auto var(--sp-6); text-align:center; }
.section-head.left{ margin: 0 0 var(--sp-6); text-align:left; }
.pad{ padding: var(--sp-8) 0; }
.pad-sm{ padding: var(--sp-6) 0; }
.bg-gray{ background: var(--gray-50); }
.bg-sky{ background: linear-gradient(180deg, var(--sky-soft), var(--white)); }
.bg-navy{ background: var(--navy); color: rgba(255,255,255,0.85); }
.bg-navy h1, .bg-navy h2, .bg-navy h3{ color: var(--white); }
.grad-blue{ background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue) 55%, var(--blue-light) 100%); }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family: var(--font-head); font-weight:700; font-size:.98rem;
  padding: 15px 30px; border-radius: var(--radius-full); border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary{ background: var(--accent); color: var(--white); box-shadow: 0 10px 24px rgba(255,107,69,0.32); }
.btn-primary:hover{ background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(255,107,69,0.4); }
.btn-secondary{ background: transparent; border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-secondary:hover{ background: rgba(255,255,255,0.12); transform: translateY(-3px); border-color:#fff; }
.btn-outline-blue{ background: var(--white); border-color: var(--gray-200); color: var(--navy); }
.btn-outline-blue:hover{ border-color: var(--blue); color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn-block{ width:100%; }
.btn-sm{ padding: 10px 22px; font-size:.85rem; }

.site-header{
  position: sticky; top:0; z-index:1000;
  background: rgba(255,255,255,0.9); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-wrap{ display:flex; align-items:center; justify-content:space-between; padding: 16px var(--sp-4); max-width: var(--container); margin:0 auto; }
.brand{ display:flex; align-items:center; gap:10px; font-family: var(--font-head); font-weight:800; color: var(--navy); font-size:1.15rem; }
.brand img{ height:38px; width:auto; }
.site-header .brand img{ height:52px; }
.nav-links{ display:flex; align-items:center; gap:var(--sp-5); }
.nav-links a{
  font-family: var(--font-head); font-weight:600; font-size:.95rem; color: var(--gray-700);
  position:relative; padding: 6px 0; transition: color .2s ease;
}
.nav-links a::after{ content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px; background: var(--accent); transition: width .25s ease; }
.nav-links a:hover, .nav-links a.active, .nav-links .current-menu-item a{ color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after, .nav-links .current-menu-item a::after{ width:100%; }
.nav-cta{ display:flex; align-items:center; gap: var(--sp-3); }
.nav-toggle{ display:none; background:none; border:none; padding:8px; }
.nav-toggle span{ display:block; width:26px; height:2px; background: var(--navy); margin:5px 0; border-radius:2px; transition:.3s; }

@media (max-width: 960px){
  .nav-toggle{ display:block; }
  .nav-links{
    position:fixed; inset: 74px 0 0 0; background: var(--white); flex-direction:column; align-items:flex-start;
    padding: var(--sp-4); gap: var(--sp-3); transform: translateX(100%); transition: transform .35s ease;
    overflow-y:auto; border-top:1px solid var(--gray-200);
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-cta .btn-outline-blue{ display:none; }
}

.hero{ padding: var(--sp-7) 0 var(--sp-7); overflow:hidden; position:relative; }
.hero .container{ display:grid; grid-template-columns: 1.05fr .95fr; gap: var(--sp-6); align-items:center; }
.hero-copy .btn-row{ display:flex; gap: var(--sp-3); flex-wrap:wrap; margin-top: var(--sp-4); }
.hero-stats{ display:flex; gap: var(--sp-6); margin-top: var(--sp-6); flex-wrap:wrap; }
.hero-stat b{ display:block; font-family: var(--font-head); font-size:2rem; color:#fff; }
.hero-stat span{ font-size:.85rem; color: rgba(255,255,255,0.7); }
.hero-media{ position:relative; }
.hero-media img{ width:100%; border-radius: var(--radius-lg); }
.hero-badge{
  position:absolute; bottom:-22px; left:-22px; background:#fff; color:var(--navy);
  padding:14px 20px; border-radius:var(--radius-md); box-shadow: var(--shadow-lg);
  display:flex; align-items:center; gap:12px; font-family:var(--font-head); font-weight:700; font-size:.9rem;
}
@media (max-width: 900px){
  .hero .container{ grid-template-columns: 1fr; }
  .hero-media{ order:-1; }
  .hero-badge{ left:12px; bottom:-16px; }
}

.grid{ display:grid; gap: var(--sp-4); }
.grid-2{ grid-template-columns: repeat(2,1fr); }
.grid-3{ grid-template-columns: repeat(3,1fr); }
.grid-4{ grid-template-columns: repeat(4,1fr); }
@media (max-width: 960px){ .grid-3, .grid-4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; } }

.card{
  background: var(--white); border:1px solid var(--gray-200); border-radius: var(--radius-md);
  padding: var(--sp-4); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .icon-badge{ margin-bottom: var(--sp-3); }
.icon-badge{
  width:56px; height:56px; border-radius: var(--radius-sm); background: var(--sky);
  display:flex; align-items:center; justify-content:center;
}
.icon-badge img{ width:28px; height:28px; }
.card h3{ margin-bottom:8px; }
.card p{ color: var(--gray-500); font-size:.96rem; margin-bottom: var(--sp-2); }
.card-link{ font-family: var(--font-head); font-weight:700; font-size:.88rem; color: var(--blue); display:inline-flex; align-items:center; gap:6px; }
.card-link svg{ transition: transform .2s ease; }
.card:hover .card-link svg{ transform: translateX(4px); }

.service-row{ display:grid; grid-template-columns: .9fr 1.1fr; gap: var(--sp-6); align-items:center; padding: var(--sp-7) 0; border-bottom:1px solid var(--gray-200); }
.service-row:last-child{ border-bottom:none; }
.service-row.reverse{ direction: rtl; }
.service-row.reverse > *{ direction: ltr; }
.service-media{ border-radius: var(--radius-lg); overflow:hidden; background: var(--sky); }
.service-tags{ display:flex; gap:8px; flex-wrap:wrap; margin: var(--sp-3) 0; }
.service-tags span{ background: var(--gray-100); color: var(--gray-700); font-size:.78rem; font-weight:600; padding:6px 14px; border-radius: var(--radius-full); }
.service-list{ margin-top: var(--sp-3); display:grid; gap:10px; }
.service-list li{ display:flex; gap:10px; align-items:flex-start; font-size:.95rem; color: var(--gray-700); }
.service-list li svg{ flex-shrink:0; margin-top:3px; }
@media (max-width: 860px){
  .service-row, .service-row.reverse{ grid-template-columns:1fr; direction: ltr; }
  .service-row .service-media{ order:-1; }
}

.stats-band{ display:grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-4); }
.stat{ text-align:center; }
.stat b{ font-family: var(--font-head); font-size: clamp(2.2rem,4vw,3rem); color: var(--navy); display:block; }
.stat span{ color: var(--gray-500); font-size:.9rem; font-weight:600; }
@media (max-width:720px){ .stats-band{ grid-template-columns: repeat(2,1fr); gap: var(--sp-5); } }

.quote-card{ background: var(--white); border-radius: var(--radius-md); padding: var(--sp-4); box-shadow: var(--shadow-sm); border:1px solid var(--gray-200); }
.quote-card .stars{ color:#F5A623; letter-spacing:2px; margin-bottom:10px; }
.quote-person{ display:flex; align-items:center; gap:12px; margin-top: var(--sp-3); }
.quote-person img{ width:44px; height:44px; border-radius:50%; }
.quote-person b{ display:block; font-size:.92rem; color: var(--navy); }
.quote-person span{ font-size:.8rem; color: var(--gray-500); }

.cta-band{ border-radius: var(--radius-lg); padding: var(--sp-7) var(--sp-6); text-align:center; position:relative; overflow:hidden; }
.cta-band h2{ color:#fff; }
.cta-band p{ color: rgba(255,255,255,0.78); max-width:560px; margin:0 auto var(--sp-4); }
.cta-band .btn-row{ display:flex; justify-content:center; gap: var(--sp-3); flex-wrap:wrap; }
.cta-shape{ position:absolute; inset:0; opacity:.5; pointer-events:none; }

.site-footer{ background: var(--navy); color: rgba(255,255,255,0.65); padding-top: var(--sp-7); }
.footer-grid{ display:grid; grid-template-columns: 1.3fr repeat(3,1fr); gap: var(--sp-5); padding-bottom: var(--sp-6); border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-grid h5{ color:#fff; font-family: var(--font-head); font-size:.95rem; margin-bottom: var(--sp-2); }
.footer-grid a{ display:block; padding:6px 0; font-size:.92rem; transition: color .2s; }
.footer-grid a:hover{ color:#fff; }
.footer-brand p{ font-size:.9rem; max-width:280px; }
.footer-social{ display:flex; gap:10px; margin-top: var(--sp-3); }
.footer-social a{ width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; }
.footer-social a:hover{ background: var(--accent); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding: var(--sp-3) 0 var(--sp-5); font-size:.82rem; flex-wrap:wrap; gap:10px; }
.footer-bottom a{ margin-left: var(--sp-3); }
@media (max-width:860px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width:600px){ .footer-grid{ grid-template-columns: 1fr; } .footer-grid > div{ text-align:left; } }

.reveal{ opacity:0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform: translateY(0); }
.reveal-delay-1{ transition-delay:.1s; }
.reveal-delay-2{ transition-delay:.2s; }
.reveal-delay-3{ transition-delay:.3s; }
@keyframes floaty{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }
.float{ animation: floaty 5s ease-in-out infinite; }
@keyframes pulse{ 0%{ box-shadow:0 0 0 0 rgba(255,107,69,.45);} 70%{ box-shadow:0 0 0 14px rgba(255,107,69,0);} 100%{ box-shadow:0 0 0 0 rgba(255,107,69,0);} }
.pulse{ animation: pulse 2.4s infinite; }

.page-hero{ padding: var(--sp-6) 0 var(--sp-5); }
.page-hero .container{ text-align:center; max-width: 760px; }
.breadcrumb{ font-size:.85rem; color: rgba(255,255,255,0.65); margin-bottom: var(--sp-2); }
.breadcrumb a:hover{ color:#fff; }

.filter-bar{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom: var(--sp-6); }
.filter-btn{ background: var(--gray-100); border:2px solid transparent; border-radius: var(--radius-full); padding:10px 22px; font-family: var(--font-head); font-weight:700; font-size:.85rem; color: var(--gray-700); transition:.25s; }
.filter-btn.active, .filter-btn:hover{ background: var(--sky); color: var(--blue); }
.gallery-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-4); }
.gallery-item{ position:relative; border-radius: var(--radius-md); overflow:hidden; aspect-ratio: 4/3; cursor:pointer; background:var(--gray-100); }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-overlay{
  position:absolute; inset:0; background: linear-gradient(0deg, rgba(11,30,61,0.88), rgba(11,30,61,0.05) 60%);
  display:flex; flex-direction:column; justify-content:flex-end; padding: var(--sp-3);
  opacity:0; transition: opacity .35s ease;
}
.gallery-item:hover .gallery-overlay{ opacity:1; }
.gallery-overlay span{ color: var(--accent); font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; }
.gallery-overlay h4{ color:#fff; font-family:var(--font-head); font-size:1.05rem; margin:4px 0 0; }
.gallery-item[hidden]{ display:none; }
@media (max-width:960px){ .gallery-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:620px){ .gallery-grid{ grid-template-columns: 1fr; } }

.blog-layout{ display:grid; grid-template-columns: 2fr 1fr; gap: var(--sp-6); align-items:start; }
.post-card{ display:grid; grid-template-columns: 240px 1fr; gap: var(--sp-4); border-bottom:1px solid var(--gray-200); padding-bottom: var(--sp-5); margin-bottom: var(--sp-5); }
.post-card img{ border-radius: var(--radius-md); aspect-ratio: 4/3; object-fit:cover; }
.post-meta{ display:flex; gap:14px; font-size:.8rem; color: var(--gray-500); margin-bottom:8px; }
.post-meta .tag{ color: var(--blue); font-weight:700; }
.sidebar-block{ background: var(--gray-50); border-radius: var(--radius-md); padding: var(--sp-4); margin-bottom: var(--sp-4); }
.sidebar-block h5{ font-family: var(--font-head); color: var(--navy); margin-bottom: var(--sp-2); }
.search-box{ display:flex; border:1px solid var(--gray-200); border-radius: var(--radius-full); overflow:hidden; background:#fff; }
.search-box input{ flex:1; border:none; padding:12px 16px; font-family:inherit; outline:none; }
.search-box button{ background:var(--blue); border:none; color:#fff; padding:0 18px; }
.cat-list a{ display:flex; justify-content:space-between; padding:8px 0; font-size:.92rem; border-bottom: 1px dashed var(--gray-200); }
.cat-list a:hover{ color: var(--blue); }
.related-post{ display:flex; gap:12px; padding:10px 0; border-bottom:1px dashed var(--gray-200); }
.related-post img{ width:64px; height:64px; border-radius:10px; object-fit:cover; }
.related-post h6{ font-size:.86rem; margin:0; font-family: var(--font-head); color: var(--navy); }
@media (max-width:900px){ .blog-layout{ grid-template-columns:1fr; } .post-card{ grid-template-columns:1fr; } }

.article-body h2{ margin-top: var(--sp-5); }
.article-body p, .article-body li{ font-size:1.05rem; color: var(--gray-700); }
.article-body ul{ margin: var(--sp-2) 0 var(--sp-3); display:grid; gap:8px; }
.article-body ul li{ padding-left:22px; position:relative; }
.article-body ul li::before{ content:''; position:absolute; left:0; top:10px; width:8px; height:8px; border-radius:50%; background: var(--accent); }
.article-body blockquote{ border-left:4px solid var(--blue); padding: var(--sp-2) var(--sp-3); background: var(--sky-soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style:italic; color:var(--navy); margin: var(--sp-4) 0; }

.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
.form-field{ display:flex; flex-direction:column; gap:6px; margin-bottom: var(--sp-3); }
.form-field.full{ grid-column: 1 / -1; }
.form-field label{ font-size:.85rem; font-weight:700; color: var(--navy); font-family: var(--font-head); }
.form-field input, .form-field select, .form-field textarea{
  border:1.5px solid var(--gray-200); border-radius: var(--radius-sm); padding:13px 16px; font-family:inherit; font-size:.96rem;
  background:#fff; transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{ outline:none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(30,79,216,0.12); }
.form-field.error input, .form-field.error select, .form-field.error textarea{ border-color:#E0435C; }
.field-error{ font-size:.78rem; color:#E0435C; display:none; }
.form-field.error .field-error{ display:block; }
.form-note{ font-size:.82rem; color: var(--gray-500); }
.form-success{ display:none; background:#EAFBF4; border:1px solid var(--success); color:#0C6B4C; padding: var(--sp-3); border-radius: var(--radius-sm); margin-bottom: var(--sp-3); font-weight:600; }
.form-success.show{ display:block; }

.contact-wrap{ display:grid; grid-template-columns: 1.1fr .9fr; gap: var(--sp-6); align-items:start; }
.info-card{ display:flex; gap:16px; align-items:flex-start; padding: var(--sp-3) 0; border-bottom:1px solid var(--gray-200); }
.info-card:last-child{ border-bottom:none; }
.map-placeholder{ border-radius: var(--radius-md); overflow:hidden; border:1px solid var(--gray-200); }
.faq-item{ border-bottom:1px solid var(--gray-200); padding: var(--sp-3) 0; }
.faq-q{ display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-family: var(--font-head); font-weight:700; color: var(--navy); }
.faq-q svg{ transition: transform .3s ease; flex-shrink:0; }
.faq-item.open .faq-q svg{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .35s ease; color: var(--gray-500); font-size:.95rem; }
.faq-item.open .faq-a{ max-height:240px; padding-top:10px; }
@media (max-width:900px){ .contact-wrap{ grid-template-columns:1fr; } }

.value-card{ text-align:center; padding: var(--sp-4); }
.timeline{ display:grid; gap: var(--sp-4); }
.timeline-item{ display:grid; grid-template-columns: 90px 1fr; gap: var(--sp-3); }
.timeline-item b{ color: var(--blue); font-family: var(--font-head); }

.back-to-top{ position:fixed; right:24px; bottom:24px; width:48px; height:48px; border-radius:50%; background: var(--navy); color:#fff; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:.3s; z-index:900; box-shadow: var(--shadow-md); }
.back-to-top.show{ opacity:1; pointer-events:auto; }
::selection{ background: var(--blue); color:#fff; }

/* WordPress core alignment helpers */
.alignwide{ max-width:1400px; margin-left:auto; margin-right:auto; }
.alignfull{ max-width:100%; }
.screen-reader-text{ position:absolute !important; clip:rect(1px,1px,1px,1px); width:1px; height:1px; overflow:hidden; }


/* VPBZ cleanup: desktop header/navigation repair */
@media (min-width: 769px) {
  .site-header {
    padding: 0;
  }

  .site-header .nav-wrap {
    min-height: 76px;
    padding-top: 12px;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .site-header .nav-links ul,
  .site-header .nav-links .menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .site-header .nav-links li {
    margin: 0;
  }

  .site-header .nav-links a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }

  .site-header .nav-cta {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
}


/* Codex repair: move under-construction notice down into the hero instead of covering page titles */
body::before {
  position: absolute !important;
  top: 620px !important;
  bottom: auto !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 50 !important;
}

body.admin-bar::before {
  top: 652px !important;
}

@media (max-width: 700px) {
  body::before {
    top: 500px !important;
  }

  body.admin-bar::before {
    top: 546px !important;
  }
}


/* ==========================================================================
   GALLERY LIGHTBOX — full-screen image viewer
   ========================================================================== */
.vpbz-lightbox{
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(11,30,61,0.94);
  padding: 24px;
}
.vpbz-lightbox.open{ display: flex; }
.vpbz-lb-figure{
  margin: 0;
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vpbz-lb-img{
  max-width: 100%;
  max-height: 76vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  background: var(--navy);
}
.vpbz-lb-caption{
  text-align: center;
  margin-top: 16px;
  color: #fff;
  font-family: var(--font-body);
}
.vpbz-lb-cat{
  display: block;
  color: var(--accent);
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.vpbz-lb-title{
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin: 4px 0 0;
}
.vpbz-lb-close, .vpbz-lb-prev, .vpbz-lb-next{
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
}
.vpbz-lb-close:hover, .vpbz-lb-prev:hover, .vpbz-lb-next:hover{ background: rgba(255,255,255,0.22); }
.vpbz-lb-close{ top: 20px; right: 20px; }
.vpbz-lb-prev{ left: 20px; top: 50%; transform: translateY(-50%); }
.vpbz-lb-next{ right: 20px; top: 50%; transform: translateY(-50%); }
.vpbz-lb-counter{
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: .85rem;
}
.gallery-item:focus-visible{ outline: 3px solid var(--blue-light); outline-offset: 2px; }
@media (max-width: 640px){
  .vpbz-lb-close, .vpbz-lb-prev, .vpbz-lb-next{ width: 40px; height: 40px; font-size: 1.2rem; }
  .vpbz-lb-prev{ left: 8px; }
  .vpbz-lb-next{ right: 8px; }
  .vpbz-lb-close{ top: 12px; right: 12px; }
  .vpbz-lb-img{ max-height: 68vh; }
}

/* ==========================================================================
   AI VIRTUAL INFLUENCERS — portrait card grid
   Scales cleanly from a couple of cards to ~60 with no layout changes.
   ========================================================================== */
.influencer-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-4);
}
.influencer-card{
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.influencer-card .influencer-photo{
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.influencer-card .influencer-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.influencer-body{
  padding: var(--sp-3) var(--sp-3) var(--sp-4);
}
.influencer-name{
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 4px;
}
.influencer-tagline{
  color: var(--gray-500);
  font-size: .9rem;
  margin: 0;
}

@media (min-width: 901px) {
  #ai-advertising .service-media {
    transform: translateY(-14px);
  }
}
