header#masthead {
    margin: 20px 20px 0;
    background-color: transparent;
    transition: background-color 0.3s ease;
    z-index: 10;
    position: relative;
  }
  
  header#masthead .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }
  header#masthead.sticky {
    background-color: #000000;
    z-index: 999;
    top: 20px;
    position: sticky;
}
#primary-menu .menu-item a,
.sticky .menu-item a {
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  color: var(--White);
}
.city,
.main-navigation ul {
  display: flex;
  gap: 24px;
  align-items: center;
}
.city a {
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  color: var(--White);
}
.help {
  display: flex;
  align-items: center;
  gap: 12px;
}

.help-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: var(--White);
  margin: 0 0 12px;
}
.help-content a {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  color: var(--White);
}

/* Social icons — glass effect (over the hero image the Frost is real) */
.social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social a {
  position: relative;
  overflow: hidden;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  box-shadow:
    inset 1px 1px 2px rgba(255, 255, 255, 0.5),
    inset -1px -2px 6px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}
.social a::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.08) 35%, transparent 60%);
}
.social a svg {
  position: relative;
  z-index: 1;
}
.social a:hover { transform: translateY(-2px); }

/* =========================================================
   Burger toggle + responsive header
   ========================================================= */
.menu-toggle {
  display: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-toggle .burger path { fill: var(--Accent); }

@media (max-width: 1024px) {
  header#masthead .help,
  header#masthead .city,
  header#masthead .social,
  #site-navigation #primary-menu { display: none; }

  .menu-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(239, 186, 64, 0.5);
    background: rgba(239, 186, 64, 0.08);
  }
  header#masthead { margin: 12px 12px 0; }
  header#masthead .container { height: 64px; }
}

/* =========================================================
   Mobile menu popup (#mob-menu) — full-screen dark panel
   ========================================================= */
#mob-menu.popup-top {
  background: #0c0a07;
  width: 100%;
  max-width: 100%;
  top: 0;
  left: 0;
  transform: none;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 20px clamp(16px, 6vw, 28px) 40px;
  box-shadow: none;
  overflow-y: auto;
}
#mob-menu .mob-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
#mob-menu .mob-menu-logo img,
#mob-menu .mob-menu-logo .custom-logo-link { max-width: 160px; height: auto; display: block; }
#mob-menu .close-popup { cursor: pointer; line-height: 0; }
#mob-menu .close-popup svg path { fill: var(--White); }

#mob-menu .mob-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
#mob-menu .help { gap: 12px; }
#mob-menu .city { flex-direction: column; align-items: flex-start; gap: 16px; }
#mob-menu .city a { font-size: 22px; }
#mob-menu .city a:first-child { color: var(--Accent); }

#mob-menu .mob-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#mob-menu .mob-menu-list a { font-size: 22px; font-weight: 400; color: var(--White); text-decoration: none; }
#mob-menu .mob-menu-list a:hover { color: var(--Accent); }

#mob-menu .social { display: flex; gap: 10px; flex-wrap: wrap; }

