/*
Theme Name: Go LIVE
Theme URI: https://golive.us
Author: Bindra Productions
Description: Premium single-page theme for Go LIVE by Bindra Productions. Live streaming and event video production for Orlando, Central Florida, and the nation.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: Proprietary
Text Domain: bindra
*/

/* ---------- Reset & tokens ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0b;
  --black-2: #101012;
  --black-3: #17171a;
  --white: #f5f4f0;
  --grey: #9b9a94;
  --grey-2: #55544f;
  --red: #d8121a;
  --red-2: #ff4a50;
  --max: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --font-display: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

section { padding: clamp(72px, 10vw, 140px) 0; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; }

h1 { font-size: clamp(2.6rem, 6.5vw, 5.2rem); text-transform: uppercase; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); text-transform: uppercase; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red-2);
  margin-bottom: 22px;
}

.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--grey); max-width: 640px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 40px;
  border: 1px solid var(--white);
  transition: all .25s ease;
  cursor: pointer;
}
.btn:hover { background: var(--white); color: var(--black); }
.btn--red { background: var(--red); border-color: var(--red); color: #fff; }
.btn--red:hover { background: var(--white); border-color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .3s ease, padding .3s ease;
}
.site-header.scrolled { background: rgba(10,10,11,.92); backdrop-filter: blur(12px); padding: 12px 0; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: clamp(32px, 5vw, 72px); }
.site-logo { flex-shrink: 0; }
.site-logo a { display: block; }
.site-logo img { height: 42px !important; width: auto !important; max-width: none; }
.site-logo span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav a {
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color .2s;
}
.site-nav a:hover { color: var(--white); }
.site-nav .nav-cta {
  color: #fff;
  background: var(--red);
  padding: 12px 26px;
}
.site-nav .nav-cta:hover { background: var(--white); color: var(--black); }
.nav-phone { color: var(--white) !important; }

.nav-toggle { display: none; background: none; border: 0; color: var(--white); font-size: 1.6rem; cursor: pointer; }

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--black-2);
    padding: 28px var(--pad) 36px;
    gap: 22px;
  }
  .site-nav.open { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 0 clamp(56px, 8vw, 110px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--black-2);
}
.hero-bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw;
  height: 56.25vw;       /* 16:9 */
  min-height: 100vh;
  min-width: 177.78vh;   /* 16:9 */
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,11,.35) 0%, rgba(10,10,11,.15) 40%, rgba(10,10,11,.88) 100%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red-2);
  margin-bottom: 18px;
}
.hero h1 { max-width: 1000px; }
.hero p { margin: 26px 0 38px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- Stats ---------- */
.stats { padding: 0; border-top: 1px solid rgba(245,244,240,.08); border-bottom: 1px solid rgba(245,244,240,.08); background: var(--black-2); }
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.stat {
  padding: 40px 12px;
  text-align: center;
  border-left: 1px solid rgba(245,244,240,.08);
}
.stat:first-child { border-left: 0; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
}
.stat span {
  white-space: nowrap;
  font-size: clamp(0.62rem, 0.9vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}
@media (max-width: 900px) {
  .stats .wrap { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(4) { border-left: 0; }
  .stat { border-top: 1px solid rgba(245,244,240,.08); }
  .stat:nth-child(-n+3) { border-top: 0; }
}
@media (max-width: 520px) {
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { border-left: 0; }
  .stat:nth-child(even) { border-left: 1px solid rgba(245,244,240,.08); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .stat:nth-child(3) { border-top: 1px solid rgba(245,244,240,.08); }
}

/* ---------- Brand video ---------- */
.brand-video { background: var(--black); }
.brand-video .grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
@media (max-width: 900px) { .brand-video .grid { grid-template-columns: 1fr; } }

.video-facade {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--black-3) center/cover no-repeat;
  cursor: pointer;
  overflow: hidden;
}
.video-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 92px; height: 92px;
  border-radius: 50%;
  border: 1px solid rgba(245,244,240,.5);
  background: rgba(10,10,11,.45);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}
.play-btn::after {
  content: "";
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent var(--white);
  margin-left: 6px;
}
.video-facade:hover .play-btn { background: var(--red); border-color: var(--red); transform: translate(-50%, -50%) scale(1.06); }
.video-facade:hover .play-btn::after { border-left-color: #fff; }

/* ---------- Clients / logo wall ---------- */
.clients { background: var(--black); padding-bottom: clamp(48px, 6vw, 90px); }
.logo-wall { margin-top: clamp(36px, 5vw, 60px); display: grid; gap: clamp(20px, 3vw, 40px); }
.logo-wall img { width: 100%; }

/* ---------- Services ---------- */
.services { background: var(--black-2); }
.services-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245,244,240,.08);
  border: 1px solid rgba(245,244,240,.08);
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }
.service {
  background: var(--black-2);
  padding: clamp(28px, 3.4vw, 44px);
  transition: background .25s ease;
}
.service:hover { background: var(--black-3); }
.service img {
  width: calc(100% + 2 * clamp(28px, 3.4vw, 44px));
  margin: calc(-1 * clamp(28px, 3.4vw, 44px)) calc(-1 * clamp(28px, 3.4vw, 44px)) 26px;
  max-width: none;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(.92);
  transition: filter .25s ease;
}
.service:hover img { filter: saturate(1.05); }
.service .num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red-2);
}
.service h3 { margin: 16px 0 12px; text-transform: uppercase; letter-spacing: 0.02em; }
.service p { font-size: 0.95rem; color: var(--grey); }

/* ---------- Scale ---------- */
.scale { position: relative; }
.scale .grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(36px, 6vw, 90px); }
@media (max-width: 900px) { .scale .grid { grid-template-columns: 1fr; } }
.scale-list { margin-top: 36px; }
.scale-list li {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(245,244,240,.1);
}
.scale-list li:last-child { border-bottom: 1px solid rgba(245,244,240,.1); }
.scale-list b { font-family: var(--font-display); font-size: 1.02rem; display: block; margin-bottom: 4px; }
.scale-list p { font-size: 0.92rem; color: var(--grey); }
.scale-list .tick { color: var(--red-2); font-family: var(--font-display); font-weight: 800; }
.scale-aside {
  background: var(--black-3);
  border: 1px solid rgba(245,244,240,.08);
  padding: clamp(30px, 3.6vw, 52px);
  align-self: start;
  position: sticky;
  top: 110px;
}
.scale-aside > img {
  width: calc(100% + 2 * clamp(30px, 3.6vw, 52px));
  margin: calc(-1 * clamp(30px, 3.6vw, 52px)) calc(-1 * clamp(30px, 3.6vw, 52px)) 26px;
  max-width: none;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.scale-aside h3 { text-transform: uppercase; margin-bottom: 14px; }
.scale-aside p { color: var(--grey); font-size: 0.95rem; margin-bottom: 22px; }
.scale-aside .btn { font-size: 0.8rem; padding: 15px 30px; }

/* ---------- Agencies ---------- */
.agencies { background: var(--red); color: #fff; }
.agencies .eyebrow { color: rgba(255,255,255,.8); }
.agencies .lead { color: rgba(255,255,255,.88); max-width: 760px; }
.agencies h2 { max-width: 860px; }
.agencies .btn { border-color: #fff; color: #fff; margin-top: 36px; }
.agencies .btn:hover { background: var(--black); border-color: var(--black); color: #fff; }

/* ---------- Testimonials ---------- */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 36px); margin-top: clamp(40px, 5vw, 64px); }
@media (max-width: 900px) { .quotes-grid { grid-template-columns: 1fr; } }
.quote {
  border: 1px solid rgba(245,244,240,.1);
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quote blockquote { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; line-height: 1.4; }
.quote cite { font-style: normal; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red-2); }
.quote .video-facade {
  width: calc(100% + 2 * clamp(26px, 3vw, 40px));
  margin: calc(-1 * clamp(26px, 3vw, 40px)) calc(-1 * clamp(26px, 3vw, 40px)) 6px;
}
.play-btn--sm { width: 64px; height: 64px; }
.play-btn--sm::after { border-width: 9px 0 9px 15px; margin-left: 4px; }

/* ---------- Team ---------- */
.team { background: var(--black); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  margin-top: clamp(40px, 5vw, 64px);
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; } }
.member img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(18%);
  transition: filter .3s ease;
}
.member:hover img { filter: grayscale(0); }
.member h3 { margin-top: 18px; }
.member p { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red-2); margin-top: 4px; }

/* ---------- Why ---------- */
.why { background: var(--black-2); }
.why .grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(245,244,240,.08); border: 1px solid rgba(245,244,240,.08); margin-top: clamp(40px, 5vw, 64px); }
@media (max-width: 720px) { .why .grid { grid-template-columns: 1fr; } }
.why-card { background: var(--black-2); padding: clamp(28px, 3.4vw, 48px); }
.why-card h3 { text-transform: uppercase; margin-bottom: 12px; }
.why-card p { font-size: 0.95rem; color: var(--grey); }

/* ---------- FAQ ---------- */
.faq h2 { margin-bottom: clamp(36px, 5vw, 56px); }
.faq details { border-top: 1px solid rgba(245,244,240,.1); }
.faq details:last-of-type { border-bottom: 1px solid rgba(245,244,240,.1); }
.faq summary {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 600;
  padding: 26px 44px 26px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  color: var(--red-2);
  font-size: 1.6rem;
  font-weight: 400;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { color: var(--grey); padding: 0 0 28px; max-width: 820px; }

/* ---------- Contact ---------- */
.contact { background: var(--black-2); }
.contact .grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 90px); }
@media (max-width: 900px) { .contact .grid { grid-template-columns: 1fr; } }
.contact-info li { padding: 14px 0; border-top: 1px solid rgba(245,244,240,.1); font-size: 1rem; }
.contact-info li:first-child { border-top: 0; padding-top: 0; }
.contact-info b { display: block; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); margin-bottom: 4px; }
.contact-info a:hover { color: var(--red-2); }
.contact-form-slot { background: var(--black-3); border: 1px solid rgba(245,244,240,.08); padding: clamp(28px, 3.4vw, 48px); }

/* WPForms dark-theme overrides */
.contact-form-slot .wpforms-container input[type=text],
.contact-form-slot .wpforms-container input[type=email],
.contact-form-slot .wpforms-container input[type=tel],
.contact-form-slot .wpforms-container select,
.contact-form-slot .wpforms-container textarea {
  background: var(--black) !important;
  border: 1px solid rgba(245,244,240,.18) !important;
  color: var(--white) !important;
  border-radius: 0 !important;
  padding: 14px !important;
}
.contact-form-slot .wpforms-container .wpforms-field-label { color: var(--white) !important; font-weight: 600 !important; }
.contact-form-slot .wpforms-container button[type=submit] {
  background: var(--red) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 16px 38px !important;
}

/* ---------- Footer ---------- */
.site-footer { padding: clamp(48px, 6vw, 80px) 0 36px; border-top: 1px solid rgba(245,244,240,.08); }
.site-footer .top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; margin-bottom: 44px; }
.footer-brand { max-width: 340px; }
.footer-brand .site-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; color: var(--grey); }
.footer-col b { display: block; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey); margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-col a:hover { color: var(--red-2); }
.site-footer .bottom {
  border-top: 1px solid rgba(245,244,240,.08);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--grey-2);
}

/* ---------- Reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.visible { opacity: 1; transform: none; }
}

/* ---------- Utility ---------- */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
}

/* ---------- Logo wordmark ---------- */
.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-wordmark b { color: var(--red-2); }

/* ---------- Van photo grid ---------- */
.van-shots { padding-top: 0; }
.van-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.5vw, 20px); }
@media (max-width: 900px) { .van-grid { grid-template-columns: repeat(2, 1fr); } }
.van-grid img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

/* ---------- Equipment ---------- */
.equipment { background: var(--black-2); }
.equip-search {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: clamp(28px, 4vw, 44px) 0 clamp(22px, 3vw, 34px);
}
.equip-search input {
  flex: 1;
  max-width: 560px;
  background: var(--black);
  border: 1px solid rgba(245,244,240,.18);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 15px 18px;
}
.equip-search input:focus { outline: 2px solid var(--red); outline-offset: -1px; }
#equip-count { font-size: .85rem; color: var(--grey); white-space: nowrap; }

.equip-content h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin: clamp(36px, 5vw, 56px) 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--red);
}
.equip-content h2:first-child { margin-top: 0; }

.equip-sec {
  border: 1px solid rgba(245,244,240,.1);
  background: var(--black-2);
  margin-bottom: 10px;
}
.equip-sec > summary {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 18px 48px 18px 22px;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.equip-sec > summary::-webkit-details-marker { display: none; }
.equip-sec > summary::after {
  content: "+";
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  color: var(--red-2);
  font-size: 1.4rem;
  font-weight: 400;
}
.equip-sec[open] > summary::after { content: "\2212"; }
.equip-sec .count {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--grey);
  margin-left: 10px;
}
.equip-sec ul {
  columns: 3;
  column-gap: 32px;
  padding: 4px 22px 22px;
}
@media (max-width: 980px) { .equip-sec ul { columns: 2; } }
@media (max-width: 620px) { .equip-sec ul { columns: 1; } }
.equip-sec li {
  font-size: .92rem;
  color: var(--white);
  padding: 6px 0 6px 16px;
  position: relative;
  break-inside: avoid;
}
.equip-sec li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 6px; height: 6px;
  background: var(--red);
}
.equip-sec li small {
  display: block;
  color: var(--grey);
  font-size: .8rem;
  line-height: 1.4;
}
.equip-sec li.hit { background: rgba(216,18,26,.14); }
.equip-hidden { display: none !important; }

/* Vehicle section reuses .scale styles */
.vehicle .grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(36px, 6vw, 90px); }
@media (max-width: 900px) { .vehicle .grid { grid-template-columns: 1fr; } }

/* WPForms checkbox/radio/multiple-choice option text + sublabels */
.contact-form-slot .wpforms-container input[type=checkbox] + label,
.contact-form-slot .wpforms-container input[type=radio] + label,
.contact-form-slot .wpforms-container li label,
.contact-form-slot .wpforms-container .wpforms-field-label-inline {
  color: var(--white) !important;
}
.contact-form-slot .wpforms-container .wpforms-field-sublabel,
.contact-form-slot .wpforms-container .wpforms-field-description,
.contact-form-slot .wpforms-container .wpforms-field-limit-text {
  color: var(--grey) !important;
}
.contact-form-slot .wpforms-container input[type=checkbox],
.contact-form-slot .wpforms-container input[type=radio] {
  accent-color: var(--red);
}
