/* ─────────────────────────────────────────────
   SHARED NAV — juvenalmaze.com
   Used by: index.html, strategy.html, talent/index.html, casting/apply.html
   All pages reference .site-nav / .site-nav-* classes
   ───────────────────────────────────────────── */

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-h);
  padding: 0 2rem;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #000;
  border-bottom: 1px solid var(--surface-3);
}

.site-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-nav-logo img {
  height: 32px;
  width: auto;
  filter: invert(1);
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.site-nav-links a {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim-3);
  text-decoration: none;
  transition: color 0.18s;
}

.site-nav-links a:hover { color: var(--offwhite); }

/* Active state — current page link */
.site-nav-links a.active { color: var(--offwhite); }

.site-nav-links a.site-cta {
  color: var(--red);
  border: 1px solid rgba(236,63,65,0.4);
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
}

.site-nav-links a.site-cta:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* ── HAMBURGER ── */
.site-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.site-burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--offwhite);
  transition: transform 0.22s, opacity 0.22s;
}

.site-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-burger.open span:nth-child(2) { opacity: 0; }
.site-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.site-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #000;
  border-bottom: 1px solid var(--surface-3);
  z-index: 99;
  flex-direction: column;
  padding: 0 2rem 1.5rem;
}

.site-mobile-menu.open { display: flex; }

.site-mobile-menu a {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim-3);
  text-decoration: none;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--surface-3);
  transition: color 0.18s;
}

.site-mobile-menu a:last-child { border-bottom: none; }
.site-mobile-menu a:hover { color: var(--offwhite); }
.site-mobile-menu a.active { color: var(--offwhite); }
.site-mobile-menu a.site-cta { color: var(--red); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-nav { padding: 0 1.25rem; }
  .site-nav-links { display: none; }
  .site-burger { display: flex; }
}

@media (max-width: 480px) {
  .site-nav-logo img { height: 30px; }
}
