/* ============================================
   CYBERNETIC SOUND STUDIO — Premium CSS
   ============================================ */

/* --- RESET & CUSTOM PROPERTIES --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:     #080808;
  --dark:      #0e0e0e;
  --dark-2:    #141414;
  --dark-3:    #1c1c1c;
  --orange:    #FF4500;
  --orange-dim:#cc3700;
  --orange-glow: rgba(255, 69, 0, 0.15);
  --white:     #ffffff;
  --off-white: #e8e8e8;
  --muted:     #888888;
  --border:    rgba(255,255,255,0.08);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--orange); color: var(--black); }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange-dim); border-radius: 2px; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }

.section-title {
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 0.95;
}
.section-title em { font-style: normal; color: var(--orange); }

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  display: block;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.mono-text { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.05em; color: var(--muted); }
.accent-text { color: var(--orange); }
.body-text { font-size: 1.05rem; line-height: 1.8; color: #aaaaaa; margin-bottom: 1.5rem; font-weight: 400; }

/* --- LAYOUT --- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; position: relative; }
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.center { text-align: center; }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 69, 0, 0.4);
}
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--off-white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* ============================================
   NAVIGATION
   ============================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  transition: all 0.4s var(--ease-out);
}
#nav.scrolled {
  padding: 1rem 2.5rem;
  background: rgba(5, 5, 7, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--orange); }
.nav-logo svg { flex-shrink: 0; transition: transform 0.4s var(--ease-out); }
.nav-logo:hover svg { transform: rotate(180deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: transparent !important;
  color: var(--orange) !important;
  border: 1px solid var(--orange) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 2px !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  transition: all 0.3s var(--ease-out) !important;
}
.nav-cta:hover { background: var(--orange) !important; color: var(--black) !important; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--off-white); transition: all 0.3s; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { text-align: center; }
.mobile-menu li { overflow: hidden; }
.mobile-menu a {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--orange); }

/* ============================================
   HERO
   ============================================ */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.88) 0%,
    rgba(8,8,8,0.7) 50%,
    rgba(8,8,8,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem;
  max-width: 900px;
  margin-left: 5vw;
}

.hero-eyebrow-group {
  margin-bottom: 1.8rem;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.3rem;
  opacity: 0;
}

.hero-location {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 12rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  margin-bottom: 1.5rem;
}
.hero-title span { display: block; overflow: hidden; }
.hero-title span > * { display: block; }

.hero-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  opacity: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* WAVEFORM BARS */
.hero-waveform {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 40vw;
  height: 120px;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0.4;
}
.waveform-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  width: 100%;
  height: 100%;
}
.waveform-bars span {
  flex: 1;
  background: var(--orange);
  border-radius: 1px 1px 0 0;
  animation: waveAnim 1.5s ease-in-out infinite;
  transform-origin: bottom;
}
.waveform-bars span:nth-child(odd)  { animation-delay: calc(var(--i, 0) * 0.05s); }
.waveform-bars span:nth-child(1)  { height: 30%; animation-delay: 0.0s; }
.waveform-bars span:nth-child(2)  { height: 60%; animation-delay: 0.1s; }
.waveform-bars span:nth-child(3)  { height: 45%; animation-delay: 0.2s; }
.waveform-bars span:nth-child(4)  { height: 80%; animation-delay: 0.15s; }
.waveform-bars span:nth-child(5)  { height: 35%; animation-delay: 0.3s; }
.waveform-bars span:nth-child(6)  { height: 65%; animation-delay: 0.05s; }
.waveform-bars span:nth-child(7)  { height: 90%; animation-delay: 0.25s; }
.waveform-bars span:nth-child(8)  { height: 50%; animation-delay: 0.35s; }
.waveform-bars span:nth-child(9)  { height: 70%; animation-delay: 0.1s; }
.waveform-bars span:nth-child(10) { height: 40%; animation-delay: 0.4s; }
.waveform-bars span:nth-child(11) { height: 85%; animation-delay: 0.0s; }
.waveform-bars span:nth-child(12) { height: 55%; animation-delay: 0.2s; }
.waveform-bars span:nth-child(13) { height: 30%; animation-delay: 0.3s; }
.waveform-bars span:nth-child(14) { height: 72%; animation-delay: 0.15s; }
.waveform-bars span:nth-child(15) { height: 48%; animation-delay: 0.05s; }
.waveform-bars span:nth-child(16) { height: 95%; animation-delay: 0.25s; }
.waveform-bars span:nth-child(17) { height: 38%; animation-delay: 0.35s; }
.waveform-bars span:nth-child(18) { height: 62%; animation-delay: 0.1s; }
.waveform-bars span:nth-child(19) { height: 78%; animation-delay: 0.2s; }
.waveform-bars span:nth-child(20) { height: 42%; animation-delay: 0.4s; }
.waveform-bars span:nth-child(21) { height: 58%; animation-delay: 0.0s; }
.waveform-bars span:nth-child(22) { height: 88%; animation-delay: 0.3s; }
.waveform-bars span:nth-child(23) { height: 32%; animation-delay: 0.15s; }
.waveform-bars span:nth-child(24) { height: 75%; animation-delay: 0.05s; }
.waveform-bars span:nth-child(25) { height: 52%; animation-delay: 0.25s; }
.waveform-bars span:nth-child(26) { height: 67%; animation-delay: 0.35s; }
.waveform-bars span:nth-child(27) { height: 43%; animation-delay: 0.1s; }
.waveform-bars span:nth-child(28) { height: 82%; animation-delay: 0.2s; }
.waveform-bars span:nth-child(29) { height: 36%; animation-delay: 0.4s; }
.waveform-bars span:nth-child(30) { height: 70%; animation-delay: 0.0s; }
.waveform-bars span:nth-child(31) { height: 55%; animation-delay: 0.3s; }
.waveform-bars span:nth-child(32) { height: 92%; animation-delay: 0.15s; }
.waveform-bars span:nth-child(33) { height: 40%; animation-delay: 0.05s; }
.waveform-bars span:nth-child(34) { height: 63%; animation-delay: 0.25s; }
.waveform-bars span:nth-child(35) { height: 77%; animation-delay: 0.35s; }
.waveform-bars span:nth-child(36) { height: 28%; animation-delay: 0.1s; }
.waveform-bars span:nth-child(37) { height: 85%; animation-delay: 0.2s; }
.waveform-bars span:nth-child(38) { height: 47%; animation-delay: 0.4s; }
.waveform-bars span:nth-child(39) { height: 71%; animation-delay: 0.0s; }
.waveform-bars span:nth-child(40) { height: 34%; animation-delay: 0.3s; }

@keyframes waveAnim {
  0%, 100% { transform: scaleY(0.6); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* REVEAL ANIMATIONS (initial state) */
.reveal-up { opacity: 0; transform: translateY(40px); }

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  overflow: hidden;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: marquee 30s linear infinite;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #666;
}
.marquee-track .dot { color: var(--orange); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   STUDIO SECTION
   ============================================ */
.studio-section { background: var(--dark); overflow: hidden; }

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* stats removed */

.studio-gallery { display: flex; flex-direction: column; gap: 0.6rem; }

.photo-scroll-hint {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  padding-bottom: 0.25rem;
}

/* Auto-scroll marquee reel */
.photo-reel-wrap {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
/* fade edges */
.photo-reel-wrap::before,
.photo-reel-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.photo-reel-wrap::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
.photo-reel-wrap::after  { right: 0; background: linear-gradient(to left, var(--dark), transparent); }

/* @keyframes photoScroll removed — animation is now GSAP-driven (Safari-safe) */

.photo-reel {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  will-change: transform;
}

.photo-reel img {
  flex-shrink: 0;
  width: 340px;
  height: 380px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, filter 0.3s;
  filter: brightness(0.88);
  display: block;
}
.photo-reel-wrap:hover .photo-reel img:hover {
  border-color: var(--orange);
  filter: brightness(1.05);
}

/* studio-video-accent removed */

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section { background: var(--black); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: visible;
  margin-bottom: 3rem;
}
/* Round the four corner cards to match the grid's border-radius */
.service-card:first-child         { border-top-left-radius: 3px; }
.service-card:nth-child(3)        { border-top-right-radius: 3px; }
.service-card:nth-last-child(3)   { border-bottom-left-radius: 3px; }
.service-card:last-child          { border-bottom-right-radius: 3px; }

.service-card {
  background: var(--dark);
  padding: 2rem;
  position: relative;
  transition: background 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  cursor: default;
  /* overflow removed — was clipping icon animations and entry transitions */
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover { background: var(--dark-3); transform: translateY(-2px); }
.service-card:hover::before { transform: scaleX(1); }

.service-number {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--orange);
  opacity: 0.5;
  margin-bottom: 1.25rem;
}
.service-icon {
  margin-bottom: 1rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,69,0,0.08);
  border: 1px solid rgba(255,69,0,0.15);
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
}
.service-icon svg {
  transition: transform 0.4s var(--ease-out), filter 0.4s;
}
.service-card:hover .service-icon {
  background: rgba(255,69,0,0.16);
  border-color: rgba(255,69,0,0.4);
  transform: translateY(-2px);
}
.service-card:hover .service-icon svg {
  transform: scale(1.15) rotate(-4deg);
  filter: drop-shadow(0 0 6px rgba(255,69,0,0.5));
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-price { margin-top: auto; }
.price-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--orange);
}
.price-unit {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  margin-left: 0.25rem;
}

.services-cta {
  padding: 2rem 0 0;
}
.services-cta .mono-text {
  margin-bottom: 1.25rem;
  display: block;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.team-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.team-video-bg video { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.team-video-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(14,14,14,0.82) 0%, rgba(14,14,14,0.65) 100%); }

.team-section .container { position: relative; z-index: 1; }

.team-grid { display: flex; flex-direction: column; gap: 4rem; }

.team-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
  padding: 3rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.3s;
}
.team-card:hover { border-color: rgba(255, 69, 0,0.2); }
.team-card.reverse { direction: rtl; }
.team-card.reverse > * { direction: ltr; }

.team-photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(20%);
  transition: filter 0.4s, transform 0.6s var(--ease-out);
}
.team-card:hover .team-photo-wrap img { filter: grayscale(0%); transform: scale(1.03); }
.team-photo-border {
  position: absolute;
  inset: 0;
  border: 2px solid var(--orange);
  opacity: 0;
  transform: translate(8px, 8px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
  pointer-events: none;
  border-radius: 2px;
}
.team-card:hover .team-photo-border { opacity: 0.4; transform: translate(4px, 4px); }

.team-role { color: var(--orange); margin-bottom: 0.5rem; font-size: 0.65rem; letter-spacing: 0.2em; }
.team-name {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 69, 0,0.08);
  border: 1px solid rgba(255, 69, 0,0.2);
  color: var(--orange);
  font-size: 0.7rem;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.team-tags span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.team-card:hover .team-tags span { border-color: rgba(255, 69, 0,0.15); }

/* ============================================
   GEAR SECTION
   ============================================ */
.gear-section { background: var(--black); padding-bottom: 0; overflow: hidden; }

.gear-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0;
}

.gear-category {
  background: var(--dark);
  padding: 1.75rem;
  transition: background 0.3s;
}
.gear-category:hover { background: var(--dark-3); }

.gear-cat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.gear-cat-header h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.gear-list li {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: color 0.2s;
}
.gear-list li:last-child { border-bottom: none; }
.gear-category:hover .gear-list li { color: #a0a0b8; }

/* gear-video-accent removed */

/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients-section { background: var(--dark); padding-bottom: 3rem; }

.major-clients {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2rem;
  /* always visible, no animation dependency */
  opacity: 1 !important;
  transform: none !important;
}
.major-client {
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  transition: background 0.3s;
  opacity: 1 !important;
  transform: none !important;
}
.major-client:hover { background: var(--dark-3); }
.major-client span {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  opacity: 0.55;
  transition: opacity 0.3s, color 0.3s;
}
.major-client:hover span { opacity: 1; color: var(--orange); }

.client-label {
  text-align: center;
  display: block;
  margin: 1.5rem 0 1rem;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.65rem;
}

.artist-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.artist-grid span {
  font-size: 0.82rem;
  color: #999;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  transition: all 0.2s;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 1 !important;
}
.artist-grid span:hover { color: var(--white); border-color: rgba(255, 69, 0, 0.4); background: var(--orange-glow); }

/* ============================================
   LISTEN / SOUNDCLOUD SECTION
   ============================================ */
.listen-section { background: var(--black); padding-bottom: 3rem; }

.soundcloud-wrap {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.soundcloud-wrap iframe { display: block; }

.soundcloud-cta { padding-top: 0.75rem; }

/* ============================================
   NONPROFIT
   ============================================ */
.nonprofit-section {
  background: var(--black);
  padding: 3rem 0 4rem;
}
.nonprofit-card {
  display: flex;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}
.nonprofit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--orange), transparent);
}
.nonprofit-icon { flex-shrink: 0; }
.nonprofit-text h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.nonprofit-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 640px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { background: var(--dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-details { margin: 2rem 0; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.contact-item a { transition: color 0.2s; }
.contact-item a:hover { color: var(--orange); }

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.social-links a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--muted);
  transition: all 0.3s var(--ease-out);
}
.social-links a:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-glow); transform: translateY(-3px); }

/* Form */
.contact-form {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.875rem 1rem;
  color: var(--white);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(136,136,160,0.5); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 69, 0,0.08);
}
.form-group select option { background: var(--dark-3); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; max-width: 280px; }

.footer-links h5 {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.9rem; color: rgba(136,136,160,0.8); transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-in { transform: translateY(30px); }
.fade-in-left { transform: translateX(-40px); }
.fade-in-right { transform: translateX(40px); }

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Service cards animated by GSAP ScrollTrigger — no CSS fade-in needed */

.gear-category.fade-in[data-index="1"] { transition-delay: 0.05s; }
.gear-category.fade-in[data-index="2"] { transition-delay: 0.1s; }
.gear-category.fade-in[data-index="3"] { transition-delay: 0.15s; }
.gear-category.fade-in[data-index="4"] { transition-delay: 0.2s; }
.gear-category.fade-in[data-index="5"] { transition-delay: 0.25s; }
.gear-category.fade-in[data-index="6"] { transition-delay: 0.3s; }
.gear-category.fade-in[data-index="7"] { transition-delay: 0.35s; }

/* ============================================
   CURSOR GLOW EFFECT
   ============================================ */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 69, 0,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s linear;
}

/* ============================================
   NOISE TEXTURE OVERLAY
   ============================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.018;
  pointer-events: none;
  z-index: 9998;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gear-categories { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .studio-grid { grid-template-columns: 1fr; gap: 3rem; }
  .team-card { grid-template-columns: 200px 1fr; gap: 2rem; padding: 2rem; }
  .team-card.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .major-clients { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  #nav { padding: 1.25rem 1.5rem; }

  .hero-content { margin-left: 0; padding: 0 1.5rem; }
  .hero-waveform { display: none; }

  .studio-stats { gap: 1.5rem; }
  .photo-reel img { width: 260px; height: 300px; }

  .services-grid { grid-template-columns: 1fr; }
  .gear-categories { grid-template-columns: 1fr; }

  .team-card { grid-template-columns: 1fr; }
  .team-photo-wrap { aspect-ratio: 1/1; max-width: 260px; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .nonprofit-card { flex-direction: column; gap: 1.5rem; }

  .section { padding: 5rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .studio-stats { flex-direction: column; gap: 1.25rem; }
  .major-clients { grid-template-columns: repeat(2, 1fr); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .waveform-bars span { animation: none; height: 50% !important; }
  .marquee-track { animation: none; }
}

/* ============================================
   VISUAL RICHNESS ADDITIONS
   ============================================ */

/* Hero orange glow radial behind headline */
.hero-glow {
  position: absolute;
  left: -5vw;
  top: 30%;
  width: 60vw;
  height: 60vh;
  background: radial-gradient(ellipse, rgba(255,69,0,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
}

/* Services section dot-grid background */
.services-section {
  background: var(--black);
  background-image: radial-gradient(rgba(255,69,0,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Service card — richer hover glow */
.service-card:hover {
  background: var(--dark-3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,69,0,0.12);
}

/* Gear section — subtle gradient background */
.gear-section {
  background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
}

/* Gear category — orange left glow on hover */
.gear-category:hover {
  background: var(--dark-3);
  box-shadow: inset 3px 0 0 var(--orange);
}

/* Video Divider Section */
.video-divider {
  position: relative;
  height: 320px;
  overflow: hidden;
  flex-shrink: 0;
}
.video-divider video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: brightness(0.7) contrast(1.1);
}
.video-divider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--black) 0%,
    transparent 20%,
    transparent 80%,
    var(--black) 100%
  );
}
.video-divider-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
}
.video-divider-label .big-label {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  color: rgba(255,255,255,0.08);
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}
.video-divider-label .small-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--orange);
  text-transform: uppercase;
}

/* Clients section — richer dark treatment */
.clients-section {
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}

/* Artist grid — subtle orange hover */
.artist-grid { gap: 0.4rem; }

/* Contact section — add subtle gradient */
.contact-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
}

/* Nonprofit — subtle orange top border glow */
.nonprofit-section {
  position: relative;
}
.nonprofit-section::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--orange), transparent);
}

/* Orange line pulse animation on eyebrows */
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--orange);
  vertical-align: middle;
  margin-right: 0.6rem;
  opacity: 0.7;
}

/* Pulsing orange dot on scroll indicator */
.scroll-line {
  background: linear-gradient(to bottom, var(--orange), transparent);
}

/* Section eyebrow size bump */
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
}
