.h1{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.brand{
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}  

/* Мобильное меню — оптимизация */
.mobile {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px;
  z-index: 100;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}
.mobile.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile a {
  font-size: 22px;
  text-align: center;
}
.mobile .cta {
  font-size: 18px;
  padding: 12px 20px;
}
body.lock {
  overflow: hidden;
}
