/* Utively — Site-wide sticky header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}

.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo — single cohesive wordmark */
.site-logo {
  text-decoration: none;
  color: #111827;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.05em;
  flex-shrink: 0;
}

.site-logo-u {
  color: #1d4ed8;
}

/* Right nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav-link {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.site-nav-link:hover {
  color: #111827;
  border-color: #d1d5db;
  background: #f3f4f6;
}

.site-nav-link.primary {
  background: #1d4ed8;
  color: #ffffff;
  border-color: #1d4ed8;
}

.site-nav-link.primary:hover {
  background: #1e40af;
  border-color: #1e40af;
}

/* Global footer breathing room — applies to all pages via this shared file */
footer.footer {
  margin-top: 32px !important;
  padding-bottom: 20px;
}

@media (max-width: 480px) {
  .site-header-inner {
    padding: 0 16px;
  }
  .site-nav-link {
    padding: 5px 10px;
    font-size: 0.82rem;
  }
}
