/* Shared v2 navigation, carried onto the legacy (Webflow-era) pages so the
   header matches the redesigned homepage. Deliberately self-contained and
   scoped under .v2-nav — this file must NEVER declare unscoped selectors
   like body, *, .container, or heading tags, since those would clobber the
   existing Webflow styles the rest of these pages still depend on. Values
   copied from v2.css; keep both in sync if the nav design changes there. */

.v2-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 254, 254, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(213, 227, 234, 0.6);
  font-family: 'Hanken Grotesk', -apple-system, 'Segoe UI', sans-serif;
}

.v2-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.v2-nav__logo img { height: 34.5px; width: auto; display: block; }

.v2-nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.v2-nav__links a {
  font-size: 15.5px;
  font-weight: 500;
  color: #2e4257;
  text-decoration: none;
}

.v2-nav__links a:hover { color: #1d84a8; }

.v2-nav__burger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.v2-nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #2e4257;
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 900px) {
  .v2-nav__links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fdfefe;
    border-bottom: 1px solid #d5e3ea;
    display: none;
    padding: 8px 0 16px;
  }
  .v2-nav__links.open { display: flex; }
  .v2-nav__links a { padding: 12px 28px; width: 100%; }
  .v2-nav__burger { display: block; }
  .v2-nav.menu-open .v2-nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .v2-nav.menu-open .v2-nav__burger span:nth-child(2) { opacity: 0; }
  .v2-nav.menu-open .v2-nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
