/* Coriven Global Nav — ONE file, ALL pages. DO NOT override in page styles. */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  height: 120px;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 160px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #4a5568;
  transition: color 0.2s;
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 6px;
}
.nav-links a:hover {
  color: #1a1a2e;
  background: rgba(0,0,0,0.03);
}
.nav-links a.nav-highlight {
  color: #e8272c;
  font-weight: 600;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: #e8272c;
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: #c41e22;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #4a5568;
  border-radius: 1px;
}
@media (max-width: 960px) {
  .nav .container { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { padding: 8px 16px; font-size: 13px; }
}
@media (max-width: 480px) {
  .nav { height: 80px; }
  .nav .container { height: 80px; padding: 0 16px; }
  .nav-logo img { height: 100px; }
  .nav-cta { padding: 8px 14px; font-size: 12px; }
}
