.site-topbar {
  background: #e8690a;
  height: 4px;
  width: 100%;
}

.site-nav {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 50;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 62px;
}
@media (min-width: 1024px) { .site-nav-inner { padding: 0 40px; } }

.site-nav-logo { flex-shrink: 0; line-height: 0; }
.site-nav-logo img { height: 38px; width: auto; display: block; }

.site-nav-links {
  display: none;
  align-items: stretch;
  height: 62px;
}
@media (min-width: 1024px) { .site-nav-links { display: flex; } }

.site-nav-link {
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #3a3a3a;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  margin-bottom: -1px;
}
.site-nav-link:hover {
  color: #e8690a;
  border-bottom-color: #e8690a;
}

.site-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-nav-phone {
  display: none;
  flex-direction: column;
  line-height: 1.2;
  border-right: 1px solid #e8e8e8;
  padding-right: 14px;
  margin-right: 4px;
}
@media (min-width: 1160px) { .site-nav-phone { display: flex; } }
.site-nav-phone-label { font-size: 8px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #aaa; }
.site-nav-phone-num { font-size: 15px; font-weight: 900; color: #1a1a1a; letter-spacing: -0.01em; }

.site-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px; min-height: 44px;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.site-btn-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.site-btn-icon svg { width: 14px; height: 14px; }
.site-btn-copy { display: flex; flex-direction: column; gap: 1px; align-items: flex-start; }
.site-btn-label { font-size: 11px; font-weight: 800; letter-spacing: 0.04em; line-height: 1; }
.site-btn-sub { font-size: 8.5px; font-weight: 600; line-height: 1; white-space: nowrap; }

.site-btn-sms {
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.11);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: none;
}
@media (min-width: 768px) { .site-btn-sms { display: inline-flex; } }
.site-btn-sms .site-btn-icon { background: rgba(232,105,10,0.1); color: #e8690a; }
.site-btn-sms .site-btn-label { color: #111; }
.site-btn-sms .site-btn-sub { color: rgba(0,0,0,0.4); }
.site-btn-sms:hover { border-color: #e8690a; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,105,10,0.12); }

.site-btn-call {
  background: #e8690a;
  box-shadow: 0 4px 0 #b84f06, 0 8px 20px rgba(232,105,10,0.32);
  display: none;
}
@media (min-width: 768px) { .site-btn-call { display: inline-flex; } }
.site-btn-call .site-btn-icon { background: rgba(255,255,255,0.2); color: #fff; }
.site-btn-call .site-btn-label { color: #fff; }
.site-btn-call .site-btn-sub { color: rgba(255,255,255,0.7); }
.site-btn-call:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #b84f06, 0 12px 28px rgba(232,105,10,0.42); }
.site-btn-call:active { transform: translateY(3px); box-shadow: 0 1px 0 #b84f06; }

.site-ham {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.site-ham span { display: block; width: 22px; height: 2px; background: #3a3a3a; transition: transform 0.22s ease, opacity 0.22s ease; }
.site-ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-ham.open span:nth-child(2) { opacity: 0; }
.site-ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .site-ham { display: none; } }

.site-mob-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.38); z-index: 997; }
.site-mob-overlay.open { display: block; }

.site-mob-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 260px;
  background: #fff;
  z-index: 998;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.26s ease;
  border-left: 4px solid #e8690a;
}
.site-mob-drawer.open { transform: translateX(0); }

.site-mob-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 14px;
  border-bottom: 1px solid #f0f0f0;
}
.site-mob-head img { height: 32px; width: auto; }
.site-mob-x { background: none; border: none; font-size: 24px; line-height: 1; color: #bbb; cursor: pointer; padding: 2px 4px; }
.site-mob-x:hover { color: #333; }

.site-mob-links { flex: 1; overflow-y: auto; }
.site-mob-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #3a3a3a;
  border-bottom: 1px solid #f2f2f2;
}
.site-mob-link::before { content: ''; display: block; width: 3px; height: 3px; border-radius: 50%; background: #e8690a; flex-shrink: 0; }
.site-mob-link:hover { color: #e8690a; background: #fff8f4; }

.site-mob-footer { padding: 14px 18px 28px; display: flex; flex-direction: column; gap: 8px; }
.site-mob-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px; min-height: 44px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: background 0.15s;
}
.site-mob-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.site-mob-btn-call { background: #e8690a; color: #fff; }
.site-mob-btn-call:hover { background: #c95808; }
.site-mob-btn-sms { background: #f5f5f5; color: #3a3a3a; }
.site-mob-btn-sms:hover { background: #eaeaea; }
