/*
Theme Name: Vizi Video
Theme URI: https://www.vizivideo.com/
Author: Vizi Video
Author URI: https://www.vizivideo.com/
Description: Cinematic dark theme for Vizi Video — Chicago video production company. Elementor-ready: all pages are fully editable with the Elementor page builder, and brand colors, contact info, and footer content are editable in the WordPress Customizer (Appearance → Customize).
Version: 1.0.3
Requires at least: 5.9
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vizivideo
Tags: dark, one-column, custom-colors, custom-logo, custom-menu, editor-style
*/
/* ============ VIZI VIDEO — Cinematic Design System ============ */
:root {
  --ink: #0b0b0e;
  --ink-2: #121218;
  --ink-3: #1a1a22;
  --line: #26262f;
  --paper: #f4f1ea;
  --muted: #9b9aa4;
  --gold: #e8b84b;
  --gold-deep: #c9992e;
  --red: #d9482b;
  --max: 1200px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: #f5cd6f; }

/* Typography */
h1, h2, h3, .display {
  font-family: 'Archivo Black', 'Arial Black', 'Helvetica Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-weight: 400;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.15rem; letter-spacing: 0.04em; margin-bottom: .6rem; }
p { margin-bottom: 1rem; }
.kicker {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.lead { font-size: 1.18rem; color: #cfccc3; max-width: 46em; }
.muted { color: var(--muted); }

/* Layout */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }
section.tight { padding: 56px 0; }
.grid { display: grid; gap: 28px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,11,14,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.3rem; text-transform: uppercase; color: var(--paper);
  letter-spacing: .02em;
}
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 26px; align-items: center; list-style: none; }
.nav-links a {
  color: #d8d5cd; font-size: .92rem; font-weight: 600; letter-spacing: .02em;
}
.nav-links a:hover, .nav-links a.on { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--ink) !important;
  padding: 10px 20px; font-weight: 800; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .06em;
}
.nav-cta:hover { background: #f5cd6f; }
.menu-btn { display: none; background: none; border: 0; color: var(--paper); font-size: 1.6rem; cursor: pointer; }
@media (max-width: 980px) {
  .menu-btn { display: block; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--ink-2); flex-direction: column; padding: 24px;
    border-bottom: 1px solid var(--line); gap: 18px;
  }
  .nav-links.open { display: flex; }
}

/* Hero */
.hero {
  position: relative;
  padding: 120px 0 100px;
  background:
    radial-gradient(1200px 500px at 75% -10%, rgba(232,184,75,.14), transparent 60%),
    radial-gradient(800px 400px at 10% 110%, rgba(217,72,43,.10), transparent 60%),
    var(--ink);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::before, .hero::after {
  content: ""; position: absolute; left: 0; right: 0; height: 42px; background: #000;
}
.hero::before { top: 0; } .hero::after { bottom: 0; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero .lead { margin: 1.4rem 0 2.2rem; }
.hero-meta { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 3rem; }
.hero-meta div strong {
  display: block; font-family: 'Archivo Black', sans-serif;
  font-size: 1.7rem; color: var(--gold);
}
.hero-meta div span { font-size: .85rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }

/* Buttons */
.btn {
  display: inline-block; padding: 16px 34px;
  background: var(--gold); color: var(--ink);
  font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .95rem;
  border: 2px solid var(--gold); cursor: pointer;
}
.btn:hover { background: #f5cd6f; border-color: #f5cd6f; color: var(--ink); }
.btn.ghost { background: transparent; color: var(--paper); border-color: #4a4a55; margin-left: 14px; }
.btn.ghost:hover { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn.sm { padding: 11px 22px; font-size: .82rem; }

/* Cards */
.card {
  background: var(--ink-2); border: 1px solid var(--line);
  padding: 34px 30px; position: relative;
}
.card:hover { border-color: #3a3a46; }
.card .num {
  font-family: 'Archivo Black', sans-serif; color: var(--gold);
  font-size: .95rem; margin-bottom: 14px; display: block;
}
.card p { color: var(--muted); font-size: .97rem; margin-bottom: 1.2rem; }
.card a.more { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }

/* Portfolio */
.reel {
  position: relative; aspect-ratio: 16/9; background: var(--ink-3);
  border: 1px solid var(--line); overflow: hidden; display: block;
}
.reel .frame {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(180deg, rgba(11,11,14,0) 30%, rgba(11,11,14,.92) 100%);
}
.reel .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem; background: rgba(11,11,14,.55);
  transition: transform .2s;
}
.reel:hover .play { transform: translate(-50%,-50%) scale(1.1); background: var(--gold); color: var(--ink); }
.reel h3 { margin: 0; font-size: 1rem; color: var(--paper); }
.reel span { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.reel .poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .75; }

/* Bands / sections */
.band { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band.gold { background: var(--gold); color: var(--ink); }
.band.gold h2, .band.gold .display { color: var(--ink); }
.band.gold p { color: #3d3110; }
.band.gold .btn { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.band.gold .btn:hover { background: #26262f; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Logo strip */
.clients { display: flex; flex-wrap: wrap; gap: 18px 46px; align-items: center; justify-content: center; }
.clients span {
  font-family: 'Archivo Black', sans-serif; text-transform: uppercase;
  color: #55545e; font-size: 1.05rem; letter-spacing: .04em;
}

/* Steps */
.step { border-left: 2px solid var(--line); padding-left: 26px; position: relative; }
.step::before {
  content: ""; position: absolute; left: -7px; top: 4px;
  width: 12px; height: 12px; background: var(--gold);
}
.step h3 { font-size: 1rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* Testimonials */
.quote {
  background: var(--ink-2); border: 1px solid var(--line); padding: 32px;
  font-size: 1.05rem;
}
.quote p { color: #d8d5cd; font-style: italic; }
.quote footer { color: var(--gold); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; font-style: normal; }

/* FAQ */
.faq details {
  border: 1px solid var(--line); background: var(--ink-2); margin-bottom: 12px;
}
.faq summary {
  cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 1.02rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::after { content: "+"; color: var(--gold); font-size: 1.4rem; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details div { padding: 0 24px 20px; color: var(--muted); }

/* Forms */
form.lead-form { display: grid; gap: 16px; max-width: 560px; }
form.lead-form.wide { max-width: none; }
.lead-form label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; padding: 15px 16px; background: var(--ink-3);
  border: 1px solid var(--line); color: var(--paper); font-size: 1rem;
  font-family: inherit;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; border-color: var(--gold);
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .two-col { grid-template-columns: 1fr; } }

/* Pricing */
.tier { display: flex; flex-direction: column; }
.tier .price { font-family: 'Archivo Black', sans-serif; font-size: 2.1rem; color: var(--paper); margin: 10px 0 2px; }
.tier .per { color: var(--muted); font-size: .85rem; margin-bottom: 18px; }
.tier ul { list-style: none; margin: 0 0 26px; flex: 1; }
.tier ul li { padding: 9px 0; border-bottom: 1px solid var(--line); color: #cfccc3; font-size: .95rem; }
.tier ul li::before { content: "→ "; color: var(--gold); }
.tier.featured { border-color: var(--gold); }
.tier.featured::before {
  content: "Most booked"; position: absolute; top: -13px; left: 28px;
  background: var(--gold); color: var(--ink); font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em; padding: 4px 12px;
}

/* Article */
article.post { max-width: 760px; margin: 0 auto; }
article.post h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin-bottom: 1rem; }
article.post h2 { font-size: 1.5rem; margin-top: 2.6rem; }
article.post h3 { margin-top: 1.8rem; text-transform: none; font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.15rem; }
article.post p, article.post li { color: #cfccc3; }
article.post ul, article.post ol { margin: 0 0 1.2rem 1.4rem; }
article.post .meta { color: var(--muted); font-size: .88rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 2.4rem; }
article.post blockquote {
  border-left: 3px solid var(--gold); padding: 8px 0 8px 22px; margin: 1.6rem 0;
  color: #d8d5cd; font-style: italic;
}
.post-card h3 { text-transform: none; font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.12rem; line-height: 1.4; }
.post-card .tag { color: var(--gold); font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; }

/* Table */
table.spec { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: .95rem; }
table.spec th, table.spec td { text-align: left; padding: 13px 16px; border: 1px solid var(--line); }
table.spec th { background: var(--ink-3); text-transform: uppercase; font-size: .78rem; letter-spacing: .1em; color: var(--gold); }
table.spec td { color: #cfccc3; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
  padding: 4vw;
}
.lightbox.open { display: flex; }
.lb-frame { width: min(1100px, 100%); aspect-ratio: 16/9; background: #000; }
.lb-frame iframe { width: 100%; height: 100%; border: 0; }
.lb-close {
  position: absolute; top: 20px; right: 28px; background: none; border: 0;
  color: var(--paper); font-size: 2.4rem; cursor: pointer; line-height: 1;
}
.lb-close:hover { color: var(--gold); }

/* Hero with photo */
.hero.has-photo { position: relative; }
.hero.has-photo .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .28; filter: saturate(.85);
}
.hero.has-photo .wrap { position: relative; z-index: 2; }
.portrait { border: 1px solid var(--line); }
.portrait img { width: 100%; height: auto; }

/* Footer */
footer.site {
  background: #000; border-top: 1px solid var(--line);
  padding: 64px 0 32px; font-size: .92rem;
}
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
footer.site h4 {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .16em;
  color: var(--paper); margin-bottom: 16px;
}
footer.site ul { list-style: none; }
footer.site ul li { margin-bottom: 9px; }
footer.site ul a { color: var(--muted); }
footer.site ul a:hover { color: var(--gold); }
.foot-bottom {
  border-top: 1px solid var(--line); padding-top: 26px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: #55545e; font-size: .82rem;
}
.breadcrumbs { font-size: .82rem; color: var(--muted); padding: 18px 0 0; text-transform: uppercase; letter-spacing: .08em; }
.breadcrumbs a { color: var(--muted); } .breadcrumbs a:hover { color: var(--gold); }

/* ============ WordPress core compatibility ============ */
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute; word-wrap: normal !important;
}
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin: 0 auto 1em; }
.wp-caption { max-width: 100%; }
.wp-caption-text { color: var(--muted); font-size: .85rem; padding: 8px 0; }
figure { margin: 0 0 1rem; }

/* Custom logo image */
.logo img.custom-logo { max-height: 44px; width: auto; }

/* Nav menu (wp_nav_menu output) */
.nav-links li { margin: 0; }
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a { color: var(--gold); }

/* ============ Elementor compatibility ============ */
/* Make Elementor's container behave like the original .wrap */
.elementor-section > .elementor-container {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  padding-left: 24px;
  padding-right: 24px;
}
.elementor-inner-section > .elementor-container { padding-left: 0; padding-right: 0; }
.elementor-widget-heading .elementor-heading-title {
  color: inherit;
}
h6.elementor-heading-title { font-family: inherit; text-transform: none; }
/* Kicker used as a heading widget */
.elementor-widget-heading .kicker,
.elementor-heading-title.kicker,
.elementor-widget-heading.kicker .elementor-heading-title {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0;
  line-height: 1.4;
}
.elementor-widget-heading.kicker { margin-bottom: 4px; }
/* Cards, tiers, steps placed inside Elementor columns should stretch */
.elementor-widget-text-editor .card,
.elementor-widget-text-editor .quote,
.elementor-widget-text-editor .step { height: 100%; }
.elementor-column .elementor-widget-wrap { align-content: flex-start; }
/* Elementor accordion styled like the original FAQ */
.elementor-accordion .elementor-accordion-item {
  background: var(--ink-2);
  border: 1px solid var(--line) !important;
  margin-bottom: 12px;
}
.elementor-accordion .elementor-tab-title {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--paper);
}
.elementor-accordion .elementor-tab-title a { color: var(--paper); }
.elementor-accordion .elementor-tab-title .elementor-accordion-icon { color: var(--gold); }
.elementor-accordion .elementor-tab-title.elementor-active { border-bottom: 0; }
.elementor-accordion .elementor-tab-content {
  padding: 0 24px 20px;
  color: var(--muted);
  border-top: 0 !important;
}
/* Gold band: keep Elementor headings/buttons readable */
.band.gold, .band.gold .elementor-heading-title { color: var(--ink); }
/* Hero section built in Elementor keeps its film-strip bars and glow */
.elementor-section.hero { overflow: hidden; }

/* ============ Contact form plugin compatibility ============ */
.lead-form input, .lead-form select, .lead-form textarea,
.wpcf7 input:not([type="submit"]), .wpcf7 select, .wpcf7 textarea,
.wpforms-container input:not([type="submit"]), .wpforms-container select, .wpforms-container textarea {
  width: 100%; padding: 15px 16px; background: var(--ink-3);
  border: 1px solid var(--line); color: var(--paper); font-size: 1rem;
  font-family: inherit;
}
.wpcf7 input[type="submit"], .wpforms-container button[type="submit"] {
  display: inline-block; padding: 16px 34px;
  background: var(--gold); color: var(--ink);
  font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .95rem;
  border: 2px solid var(--gold); cursor: pointer;
}

/* ============ Elementor Kit override (v1.0.1) ============
   Pre-existing Elementor sites carry an old "kit" (Site Settings) that sets
   its own body background, heading colors and global fonts with selectors
   like `.elementor-kit-67 h2`. These rules re-assert the theme's design
   with higher specificity, so the theme + Customizer stay the source of truth. */
body[class*="elementor-kit-"] {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
body[class*="elementor-kit-"] h1,
body[class*="elementor-kit-"] h2,
body[class*="elementor-kit-"] h3 {
  font-family: 'Archivo Black', 'Arial Black', 'Helvetica Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.05;
  font-weight: 400;
  color: inherit;
}
body[class*="elementor-kit-"] h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
body[class*="elementor-kit-"] h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 1rem; }
body[class*="elementor-kit-"] h3 { font-size: 1.15rem; letter-spacing: .04em; margin-bottom: .6rem; }
body[class*="elementor-kit-"] a { color: var(--gold); }
body[class*="elementor-kit-"] a:hover { color: #f5cd6f; }
body[class*="elementor-kit-"] a.btn { color: var(--ink); }
body[class*="elementor-kit-"] a.btn:hover { color: var(--ink); }
body[class*="elementor-kit-"] a.btn.ghost { color: var(--paper); }
body[class*="elementor-kit-"] a.btn.ghost:hover { color: var(--gold); }
body[class*="elementor-kit-"] a.nav-cta { color: var(--ink); }
body[class*="elementor-kit-"] .nav-links a { color: #d8d5cd; }
body[class*="elementor-kit-"] .nav-links a:hover,
body[class*="elementor-kit-"] .nav-links .current-menu-item > a { color: var(--gold); }
body[class*="elementor-kit-"] footer.site ul a { color: var(--muted); }
body[class*="elementor-kit-"] footer.site ul a:hover { color: var(--gold); }
body[class*="elementor-kit-"] .breadcrumbs a { color: var(--muted); }
body[class*="elementor-kit-"] .band.gold a.btn { color: var(--gold); }
/* Heading & text widgets: inherit the theme typography even if old
   post CSS still references Elementor global fonts/colors */
.elementor-widget-heading h1.elementor-heading-title,
.elementor-widget-heading h2.elementor-heading-title,
.elementor-widget-heading h3.elementor-heading-title {
  font-family: 'Archivo Black', 'Arial Black', 'Helvetica Neue', sans-serif;
  color: inherit;
}
.elementor-widget-heading h4.elementor-heading-title,
.elementor-widget-heading h5.elementor-heading-title {
  color: inherit;
}
body[class*="elementor-kit-"] .elementor-widget-text-editor {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
/* Keep the boxed content width on the theme's design width */
body[class*="elementor-kit-"] .elementor-section.elementor-section-boxed > .elementor-container {
  max-width: var(--max);
}
