/* ── NAV ── */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 30, 22, 0.65);
}

.logo {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  margin-left: 1.8rem;
  transition: color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

nav a:hover {
  color: #fff;
}

.nav-cta {
  background: #fff !important;
  color: var(--orange) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem !important;
  transition: opacity 0.2s, transform 0.2s !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}