/* ==========================================================
   Component: TopNav
   Figma nodes: 3:283 (logo) + 3:285/286/287/288 (hamburger)
   Position: absolute, overlaid on hero
   ========================================================== */

.cs-top-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px 20px 0 37px;
  z-index: 2;
  pointer-events: none; /* let hero handle scroll */
}

.cs-top-nav__logo {
  width: 104px;
  height: 38px;
  object-fit: contain;
  pointer-events: auto;
}

/* Hamburger — 3 white lines (40×2px each, gap 11px) */
.cs-top-nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 0;
  margin-right: -20px;
  background: transparent;
  border: none;
  cursor: pointer;
  pointer-events: auto;
}

.cs-top-nav__hamburger-line {
  display: block;
  width: 40px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 1px;
}
