:root {
  --header-h: 100px;
}

/* ===== Шапка ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  color: #111;
  border-bottom: 1px solid #e9e9e9;
}

.site-header .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 0;
  padding-right: 24px;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 40px;
}

/* Лого */
.brand {
  display: flex;
  align-items: center;
  height: var(--header-h);
}

.brand img {
  height: 100%;
  max-height: var(--header-h);
  object-fit: contain;
}

/* Навигация для десктопа */
.main-nav {
  display: flex;
  gap: 24px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  position: static;
}

.main-nav a {
  display: block;
  padding: 8px 14px;
  border-radius: 10px;
  transition: all 0.25s ease;
  font-size: 17px; /* или 18px, если хочешь ещё крупнее */
  font-weight: 700; /* делает текст жирным */
  letter-spacing: 0.3px; /* немного воздуха между буквами */
  text-decoration: none;
  position: relative;
  color: inherit;
  cursor: pointer;
}

.main-nav a:hover {
  border: 2px solid #FFD700; /* золотая рамка */
  color: #000; /* цвет текста при наведении */
  background: #fff; /* чтобы было как у кнопки */
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #d4af37;
  transition: width .3s;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Блок справа */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

/* Соц-иконки */
.social-inline a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1.5px solid #cfd4dc;
  color: #1f2937;
  background: #fff;
  transition: all .2s;
}

.social-inline a:hover {
  border-color: #d4af37;
  color: #d4af37;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

/* Кнопка */
.btn-primary {
  background: #FFD700;
  color: #000;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 0 rgba(0,0,0,.12);
  transition: background .2s, transform .05s;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary:hover {
  background: #e0bc00;
}

.btn-primary:active {
  transform: translateY(1px);
}

/* Телефон */
.phone-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  white-space: nowrap;
  cursor: pointer;
}

.phone-pill i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #0bb34b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.phone-pill span {
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Бургер */
.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 1100;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  width: 30px;
  height: 30px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 2px;
}

/* Тень при скролле */
.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
}

/* ===== Мобильный адаптив ===== */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px 0;
    border-top: 1px solid #e9e9e9;
    max-height: none;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav.active {
    display: flex;
  }

  .burger {
    display: flex;
  }

  .phone-pill,
  .btn-primary {
    display: none !important;
  }
}
