/* ── LUMINARY AV — v2 with animations ── */

:root {
  --blue:    #0071e3;
  --blue2:   #2997ff;
  --dark:    #1d1d1f;
  --mid:     #424245;
  --muted:   #6e6e73;
  --ash:     #d2d2d7;
  --light:   #f5f5f7;
  --white:   #ffffff;
  --font:    'Inter', -apple-system, "Helvetica Neue", sans-serif;
  --ease:    cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --max-w:   1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── SCROLL REVEAL ── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  animation: revealUp 0.9s var(--ease-out) var(--d, 0s) forwards;
}
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

.js-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  transition-delay: var(--rd, 0s);
}
.js-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── CONTAINER ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 640px; }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background 0.3s, border-color 0.3s;
}
#nav.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
  height: 52px; display: flex; align-items: center; gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 600; letter-spacing: -0.02em; color: var(--dark);
  flex-shrink: 0;
}
.logo svg { color: var(--blue); }
.nav-links {
  display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center;
}
.nav-links a {
  font-size: 13px; color: var(--dark); padding: 6px 12px; border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: rgba(0,0,0,0.05); }
.nav-btn {
  font-size: 13px; font-weight: 500; background: var(--blue); color: white;
  padding: 8px 18px; border-radius: 980px;
  transition: opacity 0.2s; flex-shrink: 0;
}
.nav-btn:hover { opacity: 0.85; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; margin-left: auto; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--dark); border-radius: 2px; transition: 0.3s; }
#nav.menu-open .burger span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
#nav.menu-open .burger span:nth-child(2) { opacity: 0; }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(20px);
  padding: 8px 16px 16px; border-bottom: 1px solid rgba(0,0,0,0.08);
}
.mobile-menu a { font-size: 17px; padding: 14px 4px; border-bottom: 1px solid rgba(0,0,0,0.06); color: var(--dark); }
.mobile-menu a:last-child { border: none; }
.mobile-cta { margin-top: 8px; background: var(--blue) !important; color: white !important; text-align: center; border-radius: 12px !important; border: none !important; }
#nav.menu-open .mobile-menu { display: flex; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background: #000;
  padding: 80px 28px 120px;
}
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow {
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(56px, 9vw, 120px); font-weight: 700;
  line-height: 1.02; letter-spacing: -0.04em; color: white;
  margin-bottom: 32px; display: flex; flex-direction: column; gap: 4px;
}
.hero-accent { color: var(--blue2); }
.hero-sub {
  font-size: clamp(17px, 2vw, 21px); font-weight: 300; color: rgba(255,255,255,0.65);
  line-height: 1.52; max-width: 560px; margin: 0 auto 44px; letter-spacing: -0.01em;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35);
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue); color: white; font-size: 16px; font-weight: 500;
  padding: 14px 28px; border-radius: 980px; border: none; cursor: pointer;
  transition: transform 0.2s var(--ease), opacity 0.2s;
  text-decoration: none; font-family: var(--font);
}
.btn-primary:hover { opacity: 0.88; transform: scale(1.02); }
.btn-primary.btn-lg { font-size: 18px; padding: 18px 36px; }
.btn-primary.btn-full { width: 100%; justify-content: center; }
.btn-secondary {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.12); color: white; font-size: 16px; font-weight: 400;
  padding: 14px 28px; border-radius: 980px; border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s, transform 0.2s var(--ease); text-decoration: none;
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); transform: scale(1.02); }

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--dark); padding: 18px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex; align-items: center; gap: 32px; white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 400; }
.marquee-track .dot { color: var(--blue); font-size: 16px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── STATS ── */
.stats-section { padding: 96px 0; background: var(--white); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  border: 1px solid rgba(0,0,0,0.08); border-radius: 20px; overflow: hidden;
}
.stat-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 52px 24px; text-align: center; background: var(--white);
  border-right: 1px solid rgba(0,0,0,0.06);
  transition: background 0.2s;
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: var(--light); }
.stat-num {
  font-size: 64px; font-weight: 700; letter-spacing: -0.04em; color: var(--dark);
  line-height: 1;
}
.stat-plus { font-size: 32px; font-weight: 300; color: var(--blue); margin: 4px 0; }
.stat-label { font-size: 14px; color: var(--muted); margin-top: 8px; font-weight: 400; }

/* ── STATEMENT ── */
.statement-section { padding: 120px 0; background: var(--light); overflow: hidden; }
.statement-text {
  font-size: clamp(28px, 4.5vw, 56px); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1.15; color: var(--dark);
  text-align: center;
}
.statement-muted { color: var(--muted); }

/* ── SECTION ── */
.section { padding: 112px 0; }
.section-header { text-align: center; margin-bottom: 72px; }
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.eyebrow-dim { color: rgba(255,255,255,0.4); }
.section-title {
  font-size: clamp(36px, 5vw, 56px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.08; color: var(--dark);
  margin-bottom: 20px;
}
.title-light { color: var(--white); }
.section-sub {
  font-size: 19px; font-weight: 300; color: var(--muted);
  line-height: 1.52; letter-spacing: -0.01em; max-width: 520px; margin: 0 auto;
}

/* ── EQUIPMENT CARDS ── */
.eq-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.eq-card {
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08); background: var(--white);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.eq-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.12);
}
.eq-visual {
  height: 220px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.eq-audio    { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.eq-lighting { background: linear-gradient(135deg, #1a1a0a 0%, #2d2d00 50%, #4a3800 100%); }
.eq-video    { background: linear-gradient(135deg, #0a1628 0%, #0d2137 50%, #0a3d5c 100%); }
.eq-staging  { background: linear-gradient(135deg, #1a0a0a 0%, #2d0d0d 50%, #4a1c1c 100%); }
.eq-icon {
  width: 72px; height: 72px; color: rgba(255,255,255,0.8);
  transition: transform 0.4s var(--ease);
}
.eq-icon svg { width: 100%; height: 100%; }
.eq-card:hover .eq-icon { transform: scale(1.12); }
.eq-body { padding: 28px 24px 32px; }
.eq-body h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 10px; }
.eq-body p { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 20px; }
.eq-link {
  font-size: 14px; color: var(--blue); font-weight: 500; display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.2s;
}
.eq-link:hover { gap: 8px; }
.eq-link span { display: inline-block; transition: transform 0.2s; }
.eq-link:hover span { transform: translateX(3px); }

/* ── DARK SERVICES ── */
.dark-section { background: var(--dark); padding: 112px 0; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; }
.step {
  padding: 40px 36px; border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.step:last-child { border-right: none; }
.step:hover { background: rgba(255,255,255,0.03); }
.step-num {
  font-size: 13px; font-weight: 600; color: var(--blue);
  letter-spacing: 0.08em; margin-bottom: 20px;
}
.step-content h3 { font-size: 20px; font-weight: 600; color: white; margin-bottom: 12px; letter-spacing: -0.02em; }
.step-content p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── BENTO GRID ── */
.events-bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
  margin-top: 64px;
}
.bento-card {
  border-radius: 20px; overflow: hidden; position: relative;
  transition: transform 0.35s var(--ease);
}
.bento-card:hover { transform: scale(0.985); }
.bento-large { grid-row: span 2; }
.bento-wide  { grid-column: span 2; }
.bento-bg {
  position: absolute; inset: 0;
  transition: transform 0.6s var(--ease);
}
.bento-card:hover .bento-bg { transform: scale(1.05); }
.bento-concert  { background: linear-gradient(160deg, #0a0a0a 0%, #1a0030 60%, #2d0050 100%); }
.bento-corporate{ background: linear-gradient(160deg, #001830 0%, #002850 60%, #003870 100%); }
.bento-wedding  { background: linear-gradient(160deg, #1a0a0a 0%, #300020 60%, #500030 100%); }
.bento-theater  { background: linear-gradient(160deg, #001a0a 0%, #002a10 60%, #003a18 100%); }
.bento-live     { background: linear-gradient(160deg, #0a0a1a 0%, #101030 60%, #181840 100%); }
.bento-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}
.bento-tag {
  display: inline-block; font-size: 13px; font-weight: 600; color: white;
  background: rgba(255,255,255,0.15); padding: 5px 12px; border-radius: 20px;
  backdrop-filter: blur(8px); margin-bottom: 10px;
}
.bento-content p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* ── CTA BAND ── */
.cta-band {
  padding: 140px 0; text-align: center; background: #000; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,113,227,0.3) 0%, transparent 70%);
  pointer-events: none;
  animation: ctaGlow 4s ease-in-out infinite alternate;
}
@keyframes ctaGlow {
  from { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
  to   { opacity: 1;   transform: translate(-50%,-50%) scale(1.15); }
}
.cta-title {
  font-size: clamp(36px, 6vw, 68px); font-weight: 700; color: white;
  letter-spacing: -0.04em; line-height: 1.06; margin-bottom: 20px; position: relative;
}
.cta-sub {
  font-size: 20px; font-weight: 300; color: rgba(255,255,255,0.6);
  margin-bottom: 44px; letter-spacing: -0.01em; position: relative;
}

/* ── CONTACT FORM ── */
.contact-form { margin-top: 52px; display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  font-family: var(--font); font-size: 16px; color: var(--dark);
  background: var(--light); border: 1.5px solid transparent;
  border-radius: 12px; padding: 13px 16px; outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; letter-spacing: -0.01em;
}
.field input:focus, .field select:focus, .field textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,113,227,0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-ok {
  display: none; text-align: center; font-size: 15px; color: #27ae60;
  padding: 14px; background: rgba(39,174,96,0.08); border-radius: 10px;
}

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 80px 0 0; color: rgba(255,255,255,0.6); }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 80px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 600; color: white; margin-bottom: 14px;
}
.footer-brand p { font-size: 14px; line-height: 1.6; }
.footer-naics { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 8px; }
.footer-nav { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 12px; font-weight: 600; color: white; margin-bottom: 4px; }
.footer-col a { font-size: 13px; transition: color 0.15s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  padding: 20px 0; display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.3);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.3); transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .eq-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .step:nth-child(3), .step:last-child { border-bottom: none; }
  .events-bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bento-large { grid-row: span 1; height: 300px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-btn { display: none; }
  .burger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-bottom: 1px solid rgba(0,0,0,0.06); }
  .stat-card:nth-child(2) { border-right: none; }
  .eq-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border: none; border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
  .events-bento { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-nav { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { border-right: none !important; }
}
