.site-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 12, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

body {
  padding-top: 86px;
}

.site-container {
  width: min(100% - 28px, 1180px);
  margin: 0 auto;
}

.site-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  min-height: 0;
  position: relative;
}

.site-brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  color: #f2f2f2;
  text-decoration: none;
  transition: 0.2s ease;
  padding: 0;
  margin: 0;
}

.site-brand:hover {
  opacity: 0.92;
}

.site-brand-logo {
  width: 222px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  background: transparent;
  flex-shrink: 0;
}

.site-brand-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  line-height: 1;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  position: relative;
  top: 30px;
}

/* ── Kontakt gumb — apsolutno uz desni rub topbara ── */
.site-contact-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.site-contact-btn:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
}

.site-contact-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  body {
    padding-top: 68px;
  }

  .site-brand {
    gap: 8px;
  }

  .site-brand-logo {
    width: 168px;
  }

  .site-brand-text {
    font-size: 0.56rem;
    top: 22px;
  }

  .site-contact-btn {
    right: 10px;
  }
}

@media (max-width: 479px) {
  .site-contact-label {
    display: none;
  }

  .site-contact-btn {
    padding: 6px 8px;
  }
}
