/* Fortuna Security shared chrome — nav tuned to logo blues */
.careers-ribbon {
  position: relative;
  z-index: 60;
  background: linear-gradient(90deg, #0c2040 0%, #102a4d 50%, #0c2040 100%);
  border-bottom: 1px solid rgba(207, 181, 127, 0.22);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.careers-ribbon a {
  color: #e8d5a8;
  text-decoration: none;
  transition: color 0.2s;
}
.careers-ribbon a:hover { color: #fff; }
.careers-ribbon .careers-hide { display: none; }

.nav-bar {
  position: relative;
  z-index: 50;
  background: linear-gradient(90deg, #0c2040 0%, #102a4d 50%, #0c2040 100%);
  border-bottom: 1px solid rgba(207, 181, 127, 0.12);
  padding: 1rem 1.5rem;
}
.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 2.5rem; }
.nav-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d9c48e;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(200, 220, 235, 0.75);
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a { text-decoration: none; color: inherit; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #e8d5a8; }
.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #0a1c36;
  background: rgba(207, 181, 127, 0.92);
  border: 1px solid rgba(207, 181, 127, 0.5);
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-cta:hover { background: #e8d5a8; color: #0a1c36; }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(220, 235, 245, 0.65);
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0.5rem 0.75rem;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(207, 181, 127, 0.08);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: #0a1c36;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: rgba(200, 220, 235, 0.7);
  padding: 0.3rem 0;
}
.mobile-menu a:hover, .mobile-menu a.active { color: #e8d5a8; }
.mobile-menu .mob-cta {
  text-align: center;
  background: rgba(207, 181, 127, 0.92);
  color: #0a1c36;
  padding: 0.6rem 1rem;
  border-radius: 9999px;
  margin-top: 0.25rem;
}
.mobile-menu .mob-cta:hover { background: #e8d5a8; }
